Lines Matching defs:task
33 #include <linux/sched/task.h>
139 struct task_struct *task;
835 struct task_struct *task;
845 task = kthread_create(ina2xx_capture_thread, (void *)indio_dev,
848 if (IS_ERR(task))
849 return PTR_ERR(task);
851 get_task_struct(task);
852 wake_up_process(task);
853 chip->task = task;
862 if (chip->task) {
863 kthread_stop(chip->task);
864 put_task_struct(chip->task);
865 chip->task = NULL;