diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/eventpoll.h | 1 | ||||
-rw-r--r-- | include/linux/fs.h | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/include/linux/eventpoll.h b/include/linux/eventpoll.h index f1e1d3c47125..f6856a5a1d4b 100644 --- a/include/linux/eventpoll.h +++ b/include/linux/eventpoll.h | |||
@@ -61,7 +61,6 @@ struct file; | |||
61 | static inline void eventpoll_init_file(struct file *file) | 61 | static inline void eventpoll_init_file(struct file *file) |
62 | { | 62 | { |
63 | INIT_LIST_HEAD(&file->f_ep_links); | 63 | INIT_LIST_HEAD(&file->f_ep_links); |
64 | spin_lock_init(&file->f_ep_lock); | ||
65 | } | 64 | } |
66 | 65 | ||
67 | 66 | ||
diff --git a/include/linux/fs.h b/include/linux/fs.h index 5bc81c4a98c1..1cd44f727dac 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
@@ -849,6 +849,7 @@ struct file { | |||
849 | #define f_dentry f_path.dentry | 849 | #define f_dentry f_path.dentry |
850 | #define f_vfsmnt f_path.mnt | 850 | #define f_vfsmnt f_path.mnt |
851 | const struct file_operations *f_op; | 851 | const struct file_operations *f_op; |
852 | spinlock_t f_lock; /* f_ep_links, f_flags */ | ||
852 | atomic_long_t f_count; | 853 | atomic_long_t f_count; |
853 | unsigned int f_flags; | 854 | unsigned int f_flags; |
854 | fmode_t f_mode; | 855 | fmode_t f_mode; |
@@ -867,7 +868,6 @@ struct file { | |||
867 | #ifdef CONFIG_EPOLL | 868 | #ifdef CONFIG_EPOLL |
868 | /* Used by fs/eventpoll.c to link all the hooks to this file */ | 869 | /* Used by fs/eventpoll.c to link all the hooks to this file */ |
869 | struct list_head f_ep_links; | 870 | struct list_head f_ep_links; |
870 | spinlock_t f_ep_lock; | ||
871 | #endif /* #ifdef CONFIG_EPOLL */ | 871 | #endif /* #ifdef CONFIG_EPOLL */ |
872 | struct address_space *f_mapping; | 872 | struct address_space *f_mapping; |
873 | #ifdef CONFIG_DEBUG_WRITECOUNT | 873 | #ifdef CONFIG_DEBUG_WRITECOUNT |