Commit bda9a719 authored by Miklos Szeredi's avatar Miklos Szeredi
Browse files

fuse: annotate lock in fuse_reverse_inval_entry()



Add missing inode lock annotatation; found by syzbot.

Reported-and-tested-by: default avatar <syzbot+9f747458f5990eaa8d43@syzkaller.appspotmail.com>
Signed-off-by: default avatarMiklos Szeredi <mszeredi@redhat.com>
parent 36ea2337
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1079,7 +1079,7 @@ int fuse_reverse_inval_entry(struct fuse_conn *fc, u64 parent_nodeid,
	if (!parent)
		return -ENOENT;

	inode_lock(parent);
	inode_lock_nested(parent, I_MUTEX_PARENT);
	if (!S_ISDIR(parent->i_mode))
		goto unlock;