Lines Matching refs:thread
439 adap->thread->comm);
454 adap->thread->comm);
460 struct task_struct *thread;
462 /* start fetching thread */
463 thread = kthread_run(pt3_fetch_thread, adap, "pt3-ad%i-dmx%i",
465 if (IS_ERR(thread)) {
466 int ret = PTR_ERR(thread);
468 adap->thread = NULL;
474 adap->thread = thread;
489 /* kill the fetching thread */
490 ret = kthread_stop(adap->thread);
491 adap->thread = NULL;
518 if (adap->num_feeds > 0 || !adap->thread)
604 if (adap->thread)