diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2017-10-06 18:03:08 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2017-10-06 18:03:08 +0200 |
commit | bf2db0b9f5808fa5b78141b68d55ec630bf06313 (patch) | |
tree | 0e82d0824f8cfb7c3d1aca5e1bb44c3bc6f1c23a /fs/btrfs/ctree.h | |
parent | Merge tag 'ceph-for-4.14-rc4' of git://github.com/ceph/ceph-client (diff) | |
parent | Btrfs: fix overlap of fs_info::flags values (diff) | |
download | linux-bf2db0b9f5808fa5b78141b68d55ec630bf06313.tar.xz linux-bf2db0b9f5808fa5b78141b68d55ec630bf06313.zip |
Merge branch 'for-4.14-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux
Pull btrfs fixes from David Sterba:
"Two more fixes for bugs introduced in 4.13.
The sector_t problem with 32bit architecture and !LBDAF config seems
serious but the number of affected deployments is hopefully low.
The clashing status bits could lead to a confusing in-memory state of
the whole-filesystem operations if used with the quota override sysfs
knob"
* 'for-4.14-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux:
Btrfs: fix overlap of fs_info::flags values
btrfs: avoid overflow when sector_t is 32 bit
Diffstat (limited to 'fs/btrfs/ctree.h')
-rw-r--r-- | fs/btrfs/ctree.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/ctree.h b/fs/btrfs/ctree.h index 899ddaeeacec..8fc690384c58 100644 --- a/fs/btrfs/ctree.h +++ b/fs/btrfs/ctree.h @@ -722,7 +722,7 @@ struct btrfs_delayed_root; * Indicate that a whole-filesystem exclusive operation is running * (device replace, resize, device add/delete, balance) */ -#define BTRFS_FS_EXCL_OP 14 +#define BTRFS_FS_EXCL_OP 16 struct btrfs_fs_info { u8 fsid[BTRFS_FSID_SIZE]; |