fuse: annotate lock in fuse_reverse_inval_entry()
authorMiklos Szeredi <mszeredi@redhat.com>
Fri, 22 Oct 2021 15:03:01 +0000 (17:03 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 22 Dec 2021 08:30:58 +0000 (09:30 +0100)
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 <mszeredi@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/fuse/dir.c

index e7667497b6b7747c6f1562a66c34b6d3236d1806..8e95a75a4559c6435a52a9e352854ec05c639a24 100644 (file)
@@ -1132,7 +1132,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;