From: Miklos Szeredi Date: Fri, 22 Oct 2021 15:03:01 +0000 (+0200) Subject: fuse: annotate lock in fuse_reverse_inval_entry() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=4658f2a9b3364fd32b5d4d1ff7437c5a8ec6d4da;p=linux.git fuse: annotate lock in fuse_reverse_inval_entry() commit bda9a71980e083699a0360963c0135657b73f47a upstream. Add missing inode lock annotatation; found by syzbot. Reported-and-tested-by: syzbot+9f747458f5990eaa8d43@syzkaller.appspotmail.com Signed-off-by: Miklos Szeredi Signed-off-by: Greg Kroah-Hartman --- diff --git a/fs/fuse/dir.c b/fs/fuse/dir.c index 2798fbe8d0018..80a2181b402b2 100644 --- a/fs/fuse/dir.c +++ b/fs/fuse/dir.c @@ -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;