summaryrefslogtreecommitdiff
path: root/include/linux/fs.h
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2020-09-27 11:18:30 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2020-10-25 20:02:06 -0400
commit44cdc1d952e3f7aa9944c1bbf38fc23f49885017 (patch)
tree14fc8634a7bff90180b324e83be37c8cadb71e97 /include/linux/fs.h
parentd1ec50adb560983635bd31263012e688cc167f31 (diff)
convert ->f_ep_links/->fllink to hlist
we don't care about the order of elements there Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include/linux/fs.h')
-rw-r--r--include/linux/fs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h
index 0bd126418bb6..b484ba0e474a 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -946,7 +946,7 @@ struct file {
#ifdef CONFIG_EPOLL
/* Used by fs/eventpoll.c to link all the hooks to this file */
- struct list_head f_ep_links;
+ struct hlist_head f_ep_links;
struct list_head f_tfile_llink;
#endif /* #ifdef CONFIG_EPOLL */
struct address_space *f_mapping;