Lines Matching refs:thread
29 static struct task_struct *thread; variable
87 if (!thread) in devtmpfs_create_node()
113 wake_up_process(thread); in devtmpfs_create_node()
126 if (!thread) in devtmpfs_delete_node()
143 wake_up_process(thread); in devtmpfs_delete_node()
163 d_inode(dentry)->i_private = &thread; in dev_mkdir()
223 d_inode(dentry)->i_private = &thread; in handle_create()
239 if (d_inode(dentry)->i_private == &thread) in dev_rmdir()
280 if (inode->i_private != &thread) in dev_mynode()
354 if (!thread) in devtmpfs_mount()
427 thread = kthread_run(devtmpfsd, &err, "kdevtmpfs"); in devtmpfs_init()
428 if (!IS_ERR(thread)) { in devtmpfs_init()
431 err = PTR_ERR(thread); in devtmpfs_init()
432 thread = NULL; in devtmpfs_init()