Skip to content
Permalink
Browse files
RDMA/siw: Make use of the helper function kthread_run_on_cpu()
Replace kthread_create/kthread_bind/wake_up_process()
with kthread_run_on_cpu() to simplify the code.

Signed-off-by: Cai Huoqing <caihuoqing@baidu.com>
  • Loading branch information
Cai Huoqing authored and intel-lab-lkp committed Oct 22, 2021
1 parent 6956d00 commit a4b7e969d5a4960e35916c7f05463e1f32c23598
Showing 1 changed file with 3 additions and 4 deletions.
@@ -98,15 +98,14 @@ static int siw_create_tx_threads(void)
continue;

siw_tx_thread[cpu] =
kthread_create(siw_run_sq, (unsigned long *)(long)cpu,
"siw_tx/%d", cpu);
kthread_run_on_cpu(siw_run_sq,
(unsigned long *)(long)cpu,
cpu, "siw_tx/%u");
if (IS_ERR(siw_tx_thread[cpu])) {
siw_tx_thread[cpu] = NULL;
continue;
}
kthread_bind(siw_tx_thread[cpu], cpu);

wake_up_process(siw_tx_thread[cpu]);
assigned++;
}
return assigned;

0 comments on commit a4b7e96

Please sign in to comment.