mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
rcutorture: Fix error return code in rcu_perf_init()
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>
This commit is contained in:
parent
65cbea5bbd
commit
05dbbfe753
1 changed files with 3 additions and 1 deletions
|
@ -638,8 +638,10 @@ rcu_perf_init(void)
|
||||||
writer_durations[i] =
|
writer_durations[i] =
|
||||||
kcalloc(MAX_MEAS, sizeof(*writer_durations[i]),
|
kcalloc(MAX_MEAS, sizeof(*writer_durations[i]),
|
||||||
GFP_KERNEL);
|
GFP_KERNEL);
|
||||||
if (!writer_durations[i])
|
if (!writer_durations[i]) {
|
||||||
|
firsterr = -ENOMEM;
|
||||||
goto unwind;
|
goto unwind;
|
||||||
|
}
|
||||||
firsterr = torture_create_kthread(rcu_perf_writer, (void *)i,
|
firsterr = torture_create_kthread(rcu_perf_writer, (void *)i,
|
||||||
writer_tasks[i]);
|
writer_tasks[i]);
|
||||||
if (firsterr)
|
if (firsterr)
|
||||||
|
|
Loading…
Add table
Reference in a new issue