Lines Matching refs:kthread
47 * we call i2400mu_rx_kick(); that wakes up the RX kthread, which
433 struct task_struct *kthread;
435 kthread = kthread_run(i2400mu_rxd, i2400mu, "%s-rx",
437 /* the kthread function sets i2400mu->rx_thread */
438 if (IS_ERR(kthread)) {
439 result = PTR_ERR(kthread);
451 struct task_struct *kthread;
454 kthread = i2400mu->rx_kthread;
457 if (kthread)
458 kthread_stop(kthread);
460 d_printf(1, dev, "RX: kthread had already exited\n");