aboutsummaryrefslogtreecommitdiff
path: root/fs/notify
diff options
context:
space:
mode:
authorGravatar Jan Kara <jack@suse.cz> 2017-03-30 09:14:47 +0200
committerGravatar Jan Kara <jack@suse.cz> 2017-04-10 17:37:35 +0200
commit73cd3c33ab793325ebaae27fa58b4f713c16f12c (patch)
tree2ad8d08412d2627d7ff970d81ecc3c9f0ecfe241 /fs/notify
parentfsnotify: Remove indirection from fsnotify_detach_mark() (diff)
downloadlinux-73cd3c33ab793325ebaae27fa58b4f713c16f12c.tar.gz
linux-73cd3c33ab793325ebaae27fa58b4f713c16f12c.tar.bz2
linux-73cd3c33ab793325ebaae27fa58b4f713c16f12c.zip
fsnotify: Avoid double locking in fsnotify_detach_from_object()
We lock object list lock in fsnotify_detach_from_object() twice - once to detach mark and second time to recalculate mask. That is unnecessary and later it will become problematic as we will free the connector as soon as there is no mark in it. So move recalculation of fsnotify mask into the same critical section that is detaching mark. This also removes recalculation of child dentry flags from fsnotify_detach_from_object(). That is however fine. Those marks will get recalculated once some event happens on a child. Reviewed-by: Miklos Szeredi <mszeredi@redhat.com> Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/notify')
-rw-r--r--fs/notify/mark.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/notify/mark.c b/fs/notify/mark.c
index 08ab7b252322..416ba91750a9 100644
--- a/fs/notify/mark.c
+++ b/fs/notify/mark.c
@@ -158,9 +158,9 @@ static struct inode *fsnotify_detach_from_object(struct fsnotify_mark *mark)
if (conn->flags & FSNOTIFY_OBJ_TYPE_INODE)
inode = conn->inode;
}
+ __fsnotify_recalc_mask(conn);
mark->connector = NULL;
spin_unlock(lock);
- fsnotify_recalc_mask(conn);
return inode;
}