Skip to content

Commit

Permalink
rcutorture: Fix error return code in rcu_perf_init()
Browse files Browse the repository at this point in the history
Fix to return a negative error code -ENOMEM from kcalloc() error
handling case instead of 0, as done elsewhere in this function.

Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
  • Loading branch information
Wei Yongjun authored and Paul E. McKenney committed Jun 14, 2016
1 parent 65cbea5 commit 05dbbfe
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion kernel/rcu/rcuperf.c
Original file line number Diff line number Diff line change
Expand Up @@ -638,8 +638,10 @@ rcu_perf_init(void)
writer_durations[i] =
kcalloc(MAX_MEAS, sizeof(*writer_durations[i]),
GFP_KERNEL);
if (!writer_durations[i])
if (!writer_durations[i]) {
firsterr = -ENOMEM;
goto unwind;
}
firsterr = torture_create_kthread(rcu_perf_writer, (void *)i,
writer_tasks[i]);
if (firsterr)
Expand Down

0 comments on commit 05dbbfe

Please sign in to comment.