Lines Matching refs:kthread
187 struct task_struct *kthread; member
215 struct task_struct *kthread; member
1555 wake_up_process(tlat->kthread); in timerlat_irq()
1616 tlat->kthread = current; in timerlat_main()
1662 struct task_struct *kthread; in stop_kthread() local
1664 kthread = per_cpu(per_cpu_osnoise_var, cpu).kthread; in stop_kthread()
1665 if (kthread) in stop_kthread()
1666 kthread_stop(kthread); in stop_kthread()
1667 per_cpu(per_cpu_osnoise_var, cpu).kthread = NULL; in stop_kthread()
1693 struct task_struct *kthread; in start_kthread() local
1704 kthread = kthread_create_on_cpu(main, NULL, cpu, comm); in start_kthread()
1706 if (IS_ERR(kthread)) { in start_kthread()
1712 per_cpu(per_cpu_osnoise_var, cpu).kthread = kthread; in start_kthread()
1713 wake_up_process(kthread); in start_kthread()
1737 per_cpu(per_cpu_osnoise_var, cpu).kthread = NULL; in start_per_cpu_kthreads()