diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2014-10-26 19:19:16 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2014-11-03 15:20:29 -0500 |
commit | 946e51f2bf37f1656916eb75bd0742ba33983c28 (patch) | |
tree | e3d2672edeec1117ceda1e8e195eaa8d1c0f5135 /fs/notify | |
parent | a7400222e3eb7d5ce3820d2234905bbeafabd171 (diff) |
move d_rcu from overlapping d_child to overlapping d_alias
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/notify')
-rw-r--r-- | fs/notify/fsnotify.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/notify/fsnotify.c b/fs/notify/fsnotify.c index 9d3e9c50066a..700129940c6e 100644 --- a/fs/notify/fsnotify.c +++ b/fs/notify/fsnotify.c | |||
@@ -63,14 +63,14 @@ void __fsnotify_update_child_dentry_flags(struct inode *inode) | |||
63 | spin_lock(&inode->i_lock); | 63 | spin_lock(&inode->i_lock); |
64 | /* run all of the dentries associated with this inode. Since this is a | 64 | /* run all of the dentries associated with this inode. Since this is a |
65 | * directory, there damn well better only be one item on this list */ | 65 | * directory, there damn well better only be one item on this list */ |
66 | hlist_for_each_entry(alias, &inode->i_dentry, d_alias) { | 66 | hlist_for_each_entry(alias, &inode->i_dentry, d_u.d_alias) { |
67 | struct dentry *child; | 67 | struct dentry *child; |
68 | 68 | ||
69 | /* run all of the children of the original inode and fix their | 69 | /* run all of the children of the original inode and fix their |
70 | * d_flags to indicate parental interest (their parent is the | 70 | * d_flags to indicate parental interest (their parent is the |
71 | * original inode) */ | 71 | * original inode) */ |
72 | spin_lock(&alias->d_lock); | 72 | spin_lock(&alias->d_lock); |
73 | list_for_each_entry(child, &alias->d_subdirs, d_u.d_child) { | 73 | list_for_each_entry(child, &alias->d_subdirs, d_child) { |
74 | if (!child->d_inode) | 74 | if (!child->d_inode) |
75 | continue; | 75 | continue; |
76 | 76 | ||