diff options
Diffstat (limited to 'include/linux/kernfs.h')
-rw-r--r-- | include/linux/kernfs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/kernfs.h b/include/linux/kernfs.h index 5be9f0228a3b..295a3bf642ba 100644 --- a/include/linux/kernfs.h +++ b/include/linux/kernfs.h | |||
@@ -15,7 +15,7 @@ | |||
15 | #include <linux/lockdep.h> | 15 | #include <linux/lockdep.h> |
16 | #include <linux/rbtree.h> | 16 | #include <linux/rbtree.h> |
17 | #include <linux/atomic.h> | 17 | #include <linux/atomic.h> |
18 | #include <linux/completion.h> | 18 | #include <linux/wait.h> |
19 | 19 | ||
20 | struct file; | 20 | struct file; |
21 | struct dentry; | 21 | struct dentry; |
@@ -92,7 +92,6 @@ struct kernfs_node { | |||
92 | struct rb_node rb; | 92 | struct rb_node rb; |
93 | 93 | ||
94 | union { | 94 | union { |
95 | struct completion *completion; | ||
96 | struct kernfs_node *removed_list; | 95 | struct kernfs_node *removed_list; |
97 | } u; | 96 | } u; |
98 | 97 | ||
@@ -133,6 +132,7 @@ struct kernfs_root { | |||
133 | /* private fields, do not use outside kernfs proper */ | 132 | /* private fields, do not use outside kernfs proper */ |
134 | struct ida ino_ida; | 133 | struct ida ino_ida; |
135 | struct kernfs_dir_ops *dir_ops; | 134 | struct kernfs_dir_ops *dir_ops; |
135 | wait_queue_head_t deactivate_waitq; | ||
136 | }; | 136 | }; |
137 | 137 | ||
138 | struct kernfs_open_file { | 138 | struct kernfs_open_file { |