Commit d0d0606e authored by Paul E. McKenney's avatar Paul E. McKenney

rcutorture: Check for rcu_torture_fqs creation errors

The return value from torture_create_kthread() is currently ignored
when creating the rcu_torture_fqs kthread.  This commit therefore
captures the return value so that it can be tested for errors.
Signed-off-by: default avatarPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Reviewed-by: default avatarJosh Triplett <josh@joshtriplett.org>
parent 9eb97fe7
...@@ -1577,7 +1577,8 @@ rcu_torture_init(void) ...@@ -1577,7 +1577,8 @@ rcu_torture_init(void)
fqs_duration = 0; fqs_duration = 0;
if (fqs_duration) { if (fqs_duration) {
/* Create the fqs thread */ /* Create the fqs thread */
torture_create_kthread(rcu_torture_fqs, NULL, fqs_task); firsterr = torture_create_kthread(rcu_torture_fqs, NULL,
fqs_task);
if (firsterr) if (firsterr)
goto unwind; goto unwind;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment