Lines Matching refs:thread
40 static struct task_struct *thread; variable
121 wake_up_process(thread); in devtmpfs_submit_req()
134 if (!thread) in devtmpfs_create_node()
161 if (!thread) in devtmpfs_delete_node()
186 d_inode(dentry)->i_private = &thread; in dev_mkdir()
247 d_inode(dentry)->i_private = &thread; in handle_create()
262 if (d_inode(dentry)->i_private == &thread) in dev_rmdir()
302 if (inode->i_private != &thread) in dev_mynode()
372 if (!thread) in devtmpfs_mount()
502 thread = kthread_run(devtmpfsd, &err, "kdevtmpfs"); in devtmpfs_init()
503 if (!IS_ERR(thread)) { in devtmpfs_init()
506 err = PTR_ERR(thread); in devtmpfs_init()
507 thread = NULL; in devtmpfs_init()
513 thread = NULL; in devtmpfs_init()