From f06fd98759451876f51607f60abd74c89b141610 Mon Sep 17 00:00:00 2001 From: Jan Kara Date: Wed, 15 Mar 2017 09:33:58 +0100 Subject: fsnotify: Move locking into fsnotify_find_mark() Move locking of a mark list into fsnotify_find_mark(). This reduces code churn in the following patch changing lock protecting the list. Reviewed-by: Miklos Szeredi Reviewed-by: Amir Goldstein Signed-off-by: Jan Kara --- fs/notify/inode_mark.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'fs/notify/inode_mark.c') diff --git a/fs/notify/inode_mark.c b/fs/notify/inode_mark.c index 9b2f4e6eb8eb..f05fc49b8242 100644 --- a/fs/notify/inode_mark.c +++ b/fs/notify/inode_mark.c @@ -71,13 +71,7 @@ void fsnotify_clear_inode_marks_by_group(struct fsnotify_group *group) struct fsnotify_mark *fsnotify_find_inode_mark(struct fsnotify_group *group, struct inode *inode) { - struct fsnotify_mark *mark; - - spin_lock(&inode->i_lock); - mark = fsnotify_find_mark(inode->i_fsnotify_marks, group); - spin_unlock(&inode->i_lock); - - return mark; + return fsnotify_find_mark(inode->i_fsnotify_marks, group); } /** -- cgit v1.2.3