mirror of
https://github.com/torvalds/linux.git
synced 2024-11-14 08:02:07 +00:00
NTB: Fix incorrect return check in ntb_perf
kthread_create_no_node() returns error pointers, never NULL. Fix check so it handles error correctly. Reported-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Dave Jiang <dave.jiang@intel.com> Signed-off-by: Jon Mason <jdmason@kudzu.us>
This commit is contained in:
parent
2572c7fb4e
commit
ddc8f6feec
@ -615,9 +615,7 @@ static ssize_t debugfs_run_write(struct file *filp, const char __user *ubuf,
|
||||
kthread_create_on_node(ntb_perf_thread,
|
||||
(void *)pctx,
|
||||
node, "ntb_perf %d", i);
|
||||
if (pctx->thread)
|
||||
wake_up_process(pctx->thread);
|
||||
else {
|
||||
if (IS_ERR(pctx->thread)) {
|
||||
perf->run = false;
|
||||
for (i = 0; i < MAX_THREADS; i++) {
|
||||
if (pctx->thread) {
|
||||
@ -625,7 +623,8 @@ static ssize_t debugfs_run_write(struct file *filp, const char __user *ubuf,
|
||||
pctx->thread = NULL;
|
||||
}
|
||||
}
|
||||
}
|
||||
} else
|
||||
wake_up_process(pctx->thread);
|
||||
|
||||
if (perf->run == false)
|
||||
return -ENXIO;
|
||||
|
Loading…
Reference in New Issue
Block a user