diff --git a/fs/fuse/file.c b/fs/fuse/file.c index 3a14a312be93..7882fc34113c 100644 --- a/fs/fuse/file.c +++ b/fs/fuse/file.c @@ -2974,6 +2974,13 @@ static long fuse_file_fallocate(struct file *file, int mode, loff_t offset, } } + if (!(mode & FALLOC_FL_KEEP_SIZE) && + offset + length > i_size_read(inode)) { + err = inode_newsize_ok(inode, offset + length); + if (err) + return err; + } + if (!(mode & FALLOC_FL_KEEP_SIZE)) set_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);