aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/ctree.h
diff options
context:
space:
mode:
authorJosef Bacik <jbacik@redhat.com>2008-12-02 06:36:08 -0500
committerChris Mason <chris.mason@oracle.com>2008-12-02 06:36:08 -0500
commitf2b636e80d8206dd4012de6e973c2367259a7d22 (patch)
tree4ed39baca853608bb7b77a6d1061766690cbb32a /fs/btrfs/ctree.h
parent7a865e8ac3a8ead776ea2c8c74fa2b2d00a2c9cf (diff)
Btrfs: add support for compat flags to btrfs
This adds the necessary disk format for handling compatibility flags in the future to handle disk format changes. We have a compat_flags, compat_ro_flags and incompat_flags set for the super block. Compat flags will be to hold the features that are compatible with older versions of btrfs, compat_ro flags have features that are compatible with older versions of btrfs if the fs is mounted read only, and incompat_flags has features that are incompatible with older versions of btrfs. This also axes the compat_flags field for the inode and just makes the flags field a 64bit field, and changes the root item flags field to 64bit. Signed-off-by: Josef Bacik <jbacik@redhat.com>
Diffstat (limited to 'fs/btrfs/ctree.h')
-rw-r--r--fs/btrfs/ctree.h28
1 files changed, 21 insertions, 7 deletions
diff --git a/fs/btrfs/ctree.h b/fs/btrfs/ctree.h
index 166896dd44c2..b5af1fc77c5d 100644
--- a/fs/btrfs/ctree.h
+++ b/fs/btrfs/ctree.h
@@ -305,6 +305,9 @@ struct btrfs_super_block {
305 __le32 stripesize; 305 __le32 stripesize;
306 __le32 sys_chunk_array_size; 306 __le32 sys_chunk_array_size;
307 __le64 chunk_root_generation; 307 __le64 chunk_root_generation;
308 __le64 compat_flags;
309 __le64 compat_ro_flags;
310 __le64 incompat_flags;
308 u8 root_level; 311 u8 root_level;
309 u8 chunk_root_level; 312 u8 chunk_root_level;
310 u8 log_root_level; 313 u8 log_root_level;
@@ -314,6 +317,14 @@ struct btrfs_super_block {
314} __attribute__ ((__packed__)); 317} __attribute__ ((__packed__));
315 318
316/* 319/*
320 * Compat flags that we support. If any incompat flags are set other than the
321 * ones specified below then we will fail to mount
322 */
323#define BTRFS_FEATURE_COMPAT_SUPP 0x0
324#define BTRFS_FEATURE_COMPAT_RO_SUPP 0x0
325#define BTRFS_FEATURE_INCOMPAT_SUPP 0x0
326
327/*
317 * A leaf is full of items. offset and size tell us where to find 328 * A leaf is full of items. offset and size tell us where to find
318 * the item in the leaf (relative to the start of the data area) 329 * the item in the leaf (relative to the start of the data area)
319 */ 330 */
@@ -433,8 +444,7 @@ struct btrfs_inode_item {
433 __le32 gid; 444 __le32 gid;
434 __le32 mode; 445 __le32 mode;
435 __le64 rdev; 446 __le64 rdev;
436 __le16 flags; 447 __le64 flags;
437 __le16 compat_flags;
438 448
439 struct btrfs_timespec atime; 449 struct btrfs_timespec atime;
440 struct btrfs_timespec ctime; 450 struct btrfs_timespec ctime;
@@ -462,7 +472,7 @@ struct btrfs_root_item {
462 __le64 byte_limit; 472 __le64 byte_limit;
463 __le64 bytes_used; 473 __le64 bytes_used;
464 __le64 last_snapshot; 474 __le64 last_snapshot;
465 __le32 flags; 475 __le64 flags;
466 __le32 refs; 476 __le32 refs;
467 struct btrfs_disk_key drop_progress; 477 struct btrfs_disk_key drop_progress;
468 u8 drop_level; 478 u8 drop_level;
@@ -1116,9 +1126,7 @@ BTRFS_SETGET_FUNCS(inode_uid, struct btrfs_inode_item, uid, 32);
1116BTRFS_SETGET_FUNCS(inode_gid, struct btrfs_inode_item, gid, 32); 1126BTRFS_SETGET_FUNCS(inode_gid, struct btrfs_inode_item, gid, 32);
1117BTRFS_SETGET_FUNCS(inode_mode, struct btrfs_inode_item, mode, 32); 1127BTRFS_SETGET_FUNCS(inode_mode, struct btrfs_inode_item, mode, 32);
1118BTRFS_SETGET_FUNCS(inode_rdev, struct btrfs_inode_item, rdev, 64); 1128BTRFS_SETGET_FUNCS(inode_rdev, struct btrfs_inode_item, rdev, 64);
1119BTRFS_SETGET_FUNCS(inode_flags, struct btrfs_inode_item, flags, 16); 1129BTRFS_SETGET_FUNCS(inode_flags, struct btrfs_inode_item, flags, 64);
1120BTRFS_SETGET_FUNCS(inode_compat_flags, struct btrfs_inode_item,
1121 compat_flags, 16);
1122 1130
1123static inline struct btrfs_timespec * 1131static inline struct btrfs_timespec *
1124btrfs_inode_atime(struct btrfs_inode_item *inode_item) 1132btrfs_inode_atime(struct btrfs_inode_item *inode_item)
@@ -1468,7 +1476,7 @@ BTRFS_SETGET_STACK_FUNCS(root_bytenr, struct btrfs_root_item, bytenr, 64);
1468BTRFS_SETGET_STACK_FUNCS(root_level, struct btrfs_root_item, level, 8); 1476BTRFS_SETGET_STACK_FUNCS(root_level, struct btrfs_root_item, level, 8);
1469BTRFS_SETGET_STACK_FUNCS(root_dirid, struct btrfs_root_item, root_dirid, 64); 1477BTRFS_SETGET_STACK_FUNCS(root_dirid, struct btrfs_root_item, root_dirid, 64);
1470BTRFS_SETGET_STACK_FUNCS(root_refs, struct btrfs_root_item, refs, 32); 1478BTRFS_SETGET_STACK_FUNCS(root_refs, struct btrfs_root_item, refs, 32);
1471BTRFS_SETGET_STACK_FUNCS(root_flags, struct btrfs_root_item, flags, 32); 1479BTRFS_SETGET_STACK_FUNCS(root_flags, struct btrfs_root_item, flags, 64);
1472BTRFS_SETGET_STACK_FUNCS(root_used, struct btrfs_root_item, bytes_used, 64); 1480BTRFS_SETGET_STACK_FUNCS(root_used, struct btrfs_root_item, bytes_used, 64);
1473BTRFS_SETGET_STACK_FUNCS(root_limit, struct btrfs_root_item, byte_limit, 64); 1481BTRFS_SETGET_STACK_FUNCS(root_limit, struct btrfs_root_item, byte_limit, 64);
1474BTRFS_SETGET_STACK_FUNCS(root_last_snapshot, struct btrfs_root_item, 1482BTRFS_SETGET_STACK_FUNCS(root_last_snapshot, struct btrfs_root_item,
@@ -1510,6 +1518,12 @@ BTRFS_SETGET_STACK_FUNCS(super_root_dir, struct btrfs_super_block,
1510 root_dir_objectid, 64); 1518 root_dir_objectid, 64);
1511BTRFS_SETGET_STACK_FUNCS(super_num_devices, struct btrfs_super_block, 1519BTRFS_SETGET_STACK_FUNCS(super_num_devices, struct btrfs_super_block,
1512 num_devices, 64); 1520 num_devices, 64);
1521BTRFS_SETGET_STACK_FUNCS(super_compat_flags, struct btrfs_super_block,
1522 compat_flags, 64);
1523BTRFS_SETGET_STACK_FUNCS(super_compat_ro_flags, struct btrfs_super_block,
1524 compat_flags, 64);
1525BTRFS_SETGET_STACK_FUNCS(super_incompat_flags, struct btrfs_super_block,
1526 incompat_flags, 64);
1513 1527
1514static inline unsigned long btrfs_leaf_data(struct extent_buffer *l) 1528static inline unsigned long btrfs_leaf_data(struct extent_buffer *l)
1515{ 1529{