aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 1e824e64441d..8f3b0e7a543d 100644
--- a/fs/notify/mark.c
+++ b/fs/notify/mark.c
@@ -133,8 +133,8 @@ void fsnotify_destroy_mark(struct fsnotify_mark *mark)
133 spin_lock(&group->mark_lock); 133 spin_lock(&group->mark_lock);
134 134
135 if (mark->flags & FSNOTIFY_MARK_FLAG_INODE) { 135 if (mark->flags & FSNOTIFY_MARK_FLAG_INODE) {
136 fsnotify_destroy_inode_mark(mark);
137 inode = mark->i.inode; 136 inode = mark->i.inode;
137 fsnotify_destroy_inode_mark(mark);
138 } else if (mark->flags & FSNOTIFY_MARK_FLAG_VFSMOUNT) 138 } else if (mark->flags & FSNOTIFY_MARK_FLAG_VFSMOUNT)
139 fsnotify_destroy_vfsmount_mark(mark); 139 fsnotify_destroy_vfsmount_mark(mark);
140 else 140 else