fuse: add file_modified() to fallocate
authorMiklos Szeredi <mszeredi@redhat.com>
Fri, 28 Oct 2022 12:25:20 +0000 (14:25 +0200)
committerMiklos Szeredi <mszeredi@redhat.com>
Fri, 28 Oct 2022 12:25:20 +0000 (14:25 +0200)
Add missing file_modified() call to fuse_file_fallocate().  Without this
fallocate on fuse failed to clear privileges.

Fixes: 05ba1f082300 ("fuse: add FALLOCATE operation")
Cc: <stable@vger.kernel.org>
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
fs/fuse/file.c

index 1a3afd469e3a9d2dd757bc64f8b60bc5965120ac..71bfb663aac5866be976d67bb66445ec872ca1a1 100644 (file)
@@ -3001,6 +3001,10 @@ static long fuse_file_fallocate(struct file *file, int mode, loff_t offset,
                        goto out;
        }
 
+       err = file_modified(file);
+       if (err)
+               goto out;
+
        if (!(mode & FALLOC_FL_KEEP_SIZE))
                set_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);