Home
last modified time | relevance | path

Searched refs:client_thread (Results 1 – 1 of 1) sorted by relevance

/linux-4.4.14/drivers/misc/mic/cosm_client/
Dcosm_scif_client.c30 static struct task_struct *client_thread; variable
210 client_thread = kthread_run(cosm_scif_client, NULL, "cosm_client"); in cosm_scif_probe()
211 if (IS_ERR(client_thread)) { in cosm_scif_probe()
212 rc = PTR_ERR(client_thread); in cosm_scif_probe()
236 if (!IS_ERR_OR_NULL(client_thread)) { in cosm_scif_remove()
237 rc = send_sig(SIGKILL, client_thread, 0); in cosm_scif_remove()
243 kthread_stop(client_thread); in cosm_scif_remove()