diff options
author | Geliang Tang <geliangtang@163.com> | 2016-01-14 15:16:56 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-01-14 16:00:49 -0800 |
commit | 1deaf9d19776916cd1c83191503bf327319a301a (patch) | |
tree | 86118aa7b0d9e46cb7d09c591f1654cb00d086bd /fs/notify/inode_mark.c | |
parent | 72214a24a7677d4c7501eecc9517ed681b5f2db2 (diff) | |
download | blackbird-obmc-linux-1deaf9d19776916cd1c83191503bf327319a301a.tar.gz blackbird-obmc-linux-1deaf9d19776916cd1c83191503bf327319a301a.zip |
fs/notify/inode_mark.c: use list_next_entry in fsnotify_unmount_inodes
To make the intention clearer, use list_next_entry instead of
list_entry.
Signed-off-by: Geliang Tang <geliangtang@163.com>
Reviewed-by: Jan Kara <jack@suse.cz>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/notify/inode_mark.c')
-rw-r--r-- | fs/notify/inode_mark.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/notify/inode_mark.c b/fs/notify/inode_mark.c index e785fd954c30..741077deef3b 100644 --- a/fs/notify/inode_mark.c +++ b/fs/notify/inode_mark.c @@ -199,8 +199,7 @@ void fsnotify_unmount_inodes(struct super_block *sb) break; } spin_unlock(&next_i->i_lock); - next_i = list_entry(next_i->i_sb_list.next, - struct inode, i_sb_list); + next_i = list_next_entry(next_i, i_sb_list); } /* |