diff options
Diffstat (limited to 'fs/btrfs/inode.c')
-rw-r--r-- | fs/btrfs/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c index a3798a3aa0d2..64daf2acd0d5 100644 --- a/fs/btrfs/inode.c +++ b/fs/btrfs/inode.c | |||
@@ -7116,7 +7116,7 @@ static long btrfs_fallocate(struct inode *inode, int mode, | |||
7116 | alloc_end = (offset + len + mask) & ~mask; | 7116 | alloc_end = (offset + len + mask) & ~mask; |
7117 | 7117 | ||
7118 | /* We only support the FALLOC_FL_KEEP_SIZE mode */ | 7118 | /* We only support the FALLOC_FL_KEEP_SIZE mode */ |
7119 | if (mode && (mode != FALLOC_FL_KEEP_SIZE)) | 7119 | if (mode & ~FALLOC_FL_KEEP_SIZE) |
7120 | return -EOPNOTSUPP; | 7120 | return -EOPNOTSUPP; |
7121 | 7121 | ||
7122 | /* | 7122 | /* |