Lines Matching refs:thread
32 static struct task_struct *thread; variable
109 wake_up_process(thread); in devtmpfs_submit_req()
122 if (!thread) in devtmpfs_create_node()
149 if (!thread) in devtmpfs_delete_node()
175 d_inode(dentry)->i_private = &thread; in dev_mkdir()
235 d_inode(dentry)->i_private = &thread; in handle_create()
251 if (d_inode(dentry)->i_private == &thread) in dev_rmdir()
292 if (inode->i_private != &thread) in dev_mynode()
367 if (!thread) in devtmpfs_mount()
467 thread = kthread_run(devtmpfsd, &err, "kdevtmpfs"); in devtmpfs_init()
468 if (!IS_ERR(thread)) { in devtmpfs_init()
471 err = PTR_ERR(thread); in devtmpfs_init()
472 thread = NULL; in devtmpfs_init()