diff options
| -rw-r--r-- | fs/ocfs2/dlmglue.c | 2 | ||||
| -rw-r--r-- | fs/ocfs2/dlmglue.h | 4 | ||||
| -rw-r--r-- | fs/ocfs2/inode.c | 3 | ||||
| -rw-r--r-- | fs/ocfs2/inode.h | 1 | ||||
| -rw-r--r-- | fs/ocfs2/ocfs2.h | 7 | ||||
| -rw-r--r-- | fs/ocfs2/ocfs2_fs.h | 44 |
6 files changed, 57 insertions, 4 deletions
diff --git a/fs/ocfs2/dlmglue.c b/fs/ocfs2/dlmglue.c index f71250ed166f..41c76ff2fcfb 100644 --- a/fs/ocfs2/dlmglue.c +++ b/fs/ocfs2/dlmglue.c | |||
| @@ -1482,6 +1482,7 @@ static void __ocfs2_stuff_meta_lvb(struct inode *inode) | |||
| 1482 | lvb->lvb_imtime_packed = | 1482 | lvb->lvb_imtime_packed = |
| 1483 | cpu_to_be64(ocfs2_pack_timespec(&inode->i_mtime)); | 1483 | cpu_to_be64(ocfs2_pack_timespec(&inode->i_mtime)); |
| 1484 | lvb->lvb_iattr = cpu_to_be32(oi->ip_attr); | 1484 | lvb->lvb_iattr = cpu_to_be32(oi->ip_attr); |
| 1485 | lvb->lvb_idynfeatures = cpu_to_be16(oi->ip_dyn_features); | ||
| 1485 | lvb->lvb_igeneration = cpu_to_be32(inode->i_generation); | 1486 | lvb->lvb_igeneration = cpu_to_be32(inode->i_generation); |
| 1486 | 1487 | ||
| 1487 | out: | 1488 | out: |
| @@ -1515,6 +1516,7 @@ static void ocfs2_refresh_inode_from_lvb(struct inode *inode) | |||
| 1515 | i_size_write(inode, be64_to_cpu(lvb->lvb_isize)); | 1516 | i_size_write(inode, be64_to_cpu(lvb->lvb_isize)); |
| 1516 | 1517 | ||
| 1517 | oi->ip_attr = be32_to_cpu(lvb->lvb_iattr); | 1518 | oi->ip_attr = be32_to_cpu(lvb->lvb_iattr); |
| 1519 | oi->ip_dyn_features = be16_to_cpu(lvb->lvb_idynfeatures); | ||
| 1518 | ocfs2_set_inode_flags(inode); | 1520 | ocfs2_set_inode_flags(inode); |
| 1519 | 1521 | ||
| 1520 | /* fast-symlinks are a special case */ | 1522 | /* fast-symlinks are a special case */ |
diff --git a/fs/ocfs2/dlmglue.h b/fs/ocfs2/dlmglue.h index 492bad32a8c0..87a785e41205 100644 --- a/fs/ocfs2/dlmglue.h +++ b/fs/ocfs2/dlmglue.h | |||
| @@ -29,12 +29,12 @@ | |||
| 29 | 29 | ||
| 30 | #include "dcache.h" | 30 | #include "dcache.h" |
| 31 | 31 | ||
| 32 | #define OCFS2_LVB_VERSION 4 | 32 | #define OCFS2_LVB_VERSION 5 |
| 33 | 33 | ||
| 34 | struct ocfs2_meta_lvb { | 34 | struct ocfs2_meta_lvb { |
| 35 | __u8 lvb_version; | 35 | __u8 lvb_version; |
| 36 | __u8 lvb_reserved0; | 36 | __u8 lvb_reserved0; |
| 37 | __be16 lvb_reserved1; | 37 | __be16 lvb_idynfeatures; |
| 38 | __be32 lvb_iclusters; | 38 | __be32 lvb_iclusters; |
| 39 | __be32 lvb_iuid; | 39 | __be32 lvb_iuid; |
| 40 | __be32 lvb_igid; | 40 | __be32 lvb_igid; |
diff --git a/fs/ocfs2/inode.c b/fs/ocfs2/inode.c index c53a6763bbbe..c8923bab422a 100644 --- a/fs/ocfs2/inode.c +++ b/fs/ocfs2/inode.c | |||
| @@ -241,6 +241,7 @@ int ocfs2_populate_inode(struct inode *inode, struct ocfs2_dinode *fe, | |||
| 241 | 241 | ||
| 242 | OCFS2_I(inode)->ip_clusters = le32_to_cpu(fe->i_clusters); | 242 | OCFS2_I(inode)->ip_clusters = le32_to_cpu(fe->i_clusters); |
| 243 | OCFS2_I(inode)->ip_attr = le32_to_cpu(fe->i_attr); | 243 | OCFS2_I(inode)->ip_attr = le32_to_cpu(fe->i_attr); |
| 244 | OCFS2_I(inode)->ip_dyn_features = le16_to_cpu(fe->i_dyn_features); | ||
| 244 | 245 | ||
| 245 | inode->i_version = 1; | 246 | inode->i_version = 1; |
| 246 | inode->i_generation = le32_to_cpu(fe->i_generation); | 247 | inode->i_generation = le32_to_cpu(fe->i_generation); |
| @@ -1220,6 +1221,7 @@ int ocfs2_mark_inode_dirty(handle_t *handle, | |||
| 1220 | fe->i_clusters = cpu_to_le32(OCFS2_I(inode)->ip_clusters); | 1221 | fe->i_clusters = cpu_to_le32(OCFS2_I(inode)->ip_clusters); |
| 1221 | ocfs2_get_inode_flags(OCFS2_I(inode)); | 1222 | ocfs2_get_inode_flags(OCFS2_I(inode)); |
| 1222 | fe->i_attr = cpu_to_le32(OCFS2_I(inode)->ip_attr); | 1223 | fe->i_attr = cpu_to_le32(OCFS2_I(inode)->ip_attr); |
| 1224 | fe->i_dyn_features = cpu_to_le16(OCFS2_I(inode)->ip_dyn_features); | ||
| 1223 | spin_unlock(&OCFS2_I(inode)->ip_lock); | 1225 | spin_unlock(&OCFS2_I(inode)->ip_lock); |
| 1224 | 1226 | ||
| 1225 | fe->i_size = cpu_to_le64(i_size_read(inode)); | 1227 | fe->i_size = cpu_to_le64(i_size_read(inode)); |
| @@ -1257,6 +1259,7 @@ void ocfs2_refresh_inode(struct inode *inode, | |||
| 1257 | 1259 | ||
| 1258 | OCFS2_I(inode)->ip_clusters = le32_to_cpu(fe->i_clusters); | 1260 | OCFS2_I(inode)->ip_clusters = le32_to_cpu(fe->i_clusters); |
| 1259 | OCFS2_I(inode)->ip_attr = le32_to_cpu(fe->i_attr); | 1261 | OCFS2_I(inode)->ip_attr = le32_to_cpu(fe->i_attr); |
| 1262 | OCFS2_I(inode)->ip_dyn_features = le16_to_cpu(fe->i_dyn_features); | ||
| 1260 | ocfs2_set_inode_flags(inode); | 1263 | ocfs2_set_inode_flags(inode); |
| 1261 | i_size_write(inode, le64_to_cpu(fe->i_size)); | 1264 | i_size_write(inode, le64_to_cpu(fe->i_size)); |
| 1262 | inode->i_nlink = le16_to_cpu(fe->i_links_count); | 1265 | inode->i_nlink = le16_to_cpu(fe->i_links_count); |
diff --git a/fs/ocfs2/inode.h b/fs/ocfs2/inode.h index a41d0817121b..70e881c55536 100644 --- a/fs/ocfs2/inode.h +++ b/fs/ocfs2/inode.h | |||
| @@ -51,6 +51,7 @@ struct ocfs2_inode_info | |||
| 51 | 51 | ||
| 52 | u32 ip_flags; /* see below */ | 52 | u32 ip_flags; /* see below */ |
| 53 | u32 ip_attr; /* inode attributes */ | 53 | u32 ip_attr; /* inode attributes */ |
| 54 | u16 ip_dyn_features; | ||
| 54 | 55 | ||
| 55 | /* protected by recovery_lock. */ | 56 | /* protected by recovery_lock. */ |
| 56 | struct inode *ip_next_orphan; | 57 | struct inode *ip_next_orphan; |
diff --git a/fs/ocfs2/ocfs2.h b/fs/ocfs2/ocfs2.h index 58307853fb4a..60a23e1906b0 100644 --- a/fs/ocfs2/ocfs2.h +++ b/fs/ocfs2/ocfs2.h | |||
| @@ -319,6 +319,13 @@ static inline int ocfs2_writes_unwritten_extents(struct ocfs2_super *osb) | |||
| 319 | return 0; | 319 | return 0; |
| 320 | } | 320 | } |
| 321 | 321 | ||
| 322 | static inline int ocfs2_supports_inline_data(struct ocfs2_super *osb) | ||
| 323 | { | ||
| 324 | if (osb->s_feature_incompat & OCFS2_FEATURE_INCOMPAT_INLINE_DATA) | ||
| 325 | return 1; | ||
| 326 | return 0; | ||
| 327 | } | ||
| 328 | |||
| 322 | /* set / clear functions because cluster events can make these happen | 329 | /* set / clear functions because cluster events can make these happen |
| 323 | * in parallel so we want the transitions to be atomic. this also | 330 | * in parallel so we want the transitions to be atomic. this also |
| 324 | * means that any future flags osb_flags must be protected by spinlock | 331 | * means that any future flags osb_flags must be protected by spinlock |
diff --git a/fs/ocfs2/ocfs2_fs.h b/fs/ocfs2/ocfs2_fs.h index bf10a5453833..6ef876759a73 100644 --- a/fs/ocfs2/ocfs2_fs.h +++ b/fs/ocfs2/ocfs2_fs.h | |||
| @@ -87,7 +87,8 @@ | |||
| 87 | 87 | ||
| 88 | #define OCFS2_FEATURE_COMPAT_SUPP OCFS2_FEATURE_COMPAT_BACKUP_SB | 88 | #define OCFS2_FEATURE_COMPAT_SUPP OCFS2_FEATURE_COMPAT_BACKUP_SB |
| 89 | #define OCFS2_FEATURE_INCOMPAT_SUPP (OCFS2_FEATURE_INCOMPAT_LOCAL_MOUNT \ | 89 | #define OCFS2_FEATURE_INCOMPAT_SUPP (OCFS2_FEATURE_INCOMPAT_LOCAL_MOUNT \ |
| 90 | | OCFS2_FEATURE_INCOMPAT_SPARSE_ALLOC) | 90 | | OCFS2_FEATURE_INCOMPAT_SPARSE_ALLOC \ |
| 91 | | OCFS2_FEATURE_INCOMPAT_INLINE_DATA) | ||
| 91 | #define OCFS2_FEATURE_RO_COMPAT_SUPP OCFS2_FEATURE_RO_COMPAT_UNWRITTEN | 92 | #define OCFS2_FEATURE_RO_COMPAT_SUPP OCFS2_FEATURE_RO_COMPAT_UNWRITTEN |
| 92 | 93 | ||
| 93 | /* | 94 | /* |
| @@ -121,6 +122,9 @@ | |||
| 121 | */ | 122 | */ |
| 122 | #define OCFS2_FEATURE_INCOMPAT_TUNEFS_INPROG 0x0020 | 123 | #define OCFS2_FEATURE_INCOMPAT_TUNEFS_INPROG 0x0020 |
| 123 | 124 | ||
| 125 | /* Support for data packed into inode blocks */ | ||
| 126 | #define OCFS2_FEATURE_INCOMPAT_INLINE_DATA 0x0040 | ||
| 127 | |||
| 124 | /* | 128 | /* |
| 125 | * backup superblock flag is used to indicate that this volume | 129 | * backup superblock flag is used to indicate that this volume |
| 126 | * has backup superblocks. | 130 | * has backup superblocks. |
| @@ -162,6 +166,17 @@ | |||
| 162 | #define OCFS2_CHAIN_FL (0x00000400) /* Chain allocator */ | 166 | #define OCFS2_CHAIN_FL (0x00000400) /* Chain allocator */ |
| 163 | #define OCFS2_DEALLOC_FL (0x00000800) /* Truncate log */ | 167 | #define OCFS2_DEALLOC_FL (0x00000800) /* Truncate log */ |
| 164 | 168 | ||
| 169 | /* | ||
| 170 | * Flags on ocfs2_dinode.i_dyn_features | ||
| 171 | * | ||
| 172 | * These can change much more often than i_flags. When adding flags, | ||
| 173 | * keep in mind that i_dyn_features is only 16 bits wide. | ||
| 174 | */ | ||
| 175 | #define OCFS2_INLINE_DATA_FL (0x0001) /* Data stored in inode block */ | ||
| 176 | #define OCFS2_HAS_XATTR_FL (0x0002) | ||
| 177 | #define OCFS2_INLINE_XATTR_FL (0x0004) | ||
| 178 | #define OCFS2_INDEXED_DIR_FL (0x0008) | ||
| 179 | |||
| 165 | /* Inode attributes, keep in sync with EXT2 */ | 180 | /* Inode attributes, keep in sync with EXT2 */ |
| 166 | #define OCFS2_SECRM_FL (0x00000001) /* Secure deletion */ | 181 | #define OCFS2_SECRM_FL (0x00000001) /* Secure deletion */ |
| 167 | #define OCFS2_UNRM_FL (0x00000002) /* Undelete */ | 182 | #define OCFS2_UNRM_FL (0x00000002) /* Undelete */ |
| @@ -487,6 +502,19 @@ struct ocfs2_local_alloc | |||
| 487 | }; | 502 | }; |
| 488 | 503 | ||
| 489 | /* | 504 | /* |
| 505 | * Data-in-inode header. This is only used if i_dyn_features has | ||
| 506 | * OCFS2_INLINE_DATA_FL set. | ||
| 507 | */ | ||
| 508 | struct ocfs2_inline_data | ||
| 509 | { | ||
| 510 | /*00*/ __le16 id_count; /* Number of bytes that can be used | ||
| 511 | * for data, starting at id_data */ | ||
| 512 | __le16 id_reserved0; | ||
| 513 | __le32 id_reserved1; | ||
| 514 | __u8 id_data[0]; /* Start of user data */ | ||
| 515 | }; | ||
| 516 | |||
| 517 | /* | ||
| 490 | * On disk inode for OCFS2 | 518 | * On disk inode for OCFS2 |
| 491 | */ | 519 | */ |
| 492 | struct ocfs2_dinode { | 520 | struct ocfs2_dinode { |
| @@ -518,7 +546,7 @@ struct ocfs2_dinode { | |||
| 518 | __le32 i_attr; | 546 | __le32 i_attr; |
| 519 | __le16 i_orphaned_slot; /* Only valid when OCFS2_ORPHANED_FL | 547 | __le16 i_orphaned_slot; /* Only valid when OCFS2_ORPHANED_FL |
| 520 | was set in i_flags */ | 548 | was set in i_flags */ |
| 521 | __le16 i_reserved1; | 549 | __le16 i_dyn_features; |
| 522 | /*70*/ __le64 i_reserved2[8]; | 550 | /*70*/ __le64 i_reserved2[8]; |
| 523 | /*B8*/ union { | 551 | /*B8*/ union { |
| 524 | __le64 i_pad1; /* Generic way to refer to this | 552 | __le64 i_pad1; /* Generic way to refer to this |
| @@ -544,6 +572,7 @@ struct ocfs2_dinode { | |||
| 544 | struct ocfs2_chain_list i_chain; | 572 | struct ocfs2_chain_list i_chain; |
| 545 | struct ocfs2_extent_list i_list; | 573 | struct ocfs2_extent_list i_list; |
| 546 | struct ocfs2_truncate_log i_dealloc; | 574 | struct ocfs2_truncate_log i_dealloc; |
| 575 | struct ocfs2_inline_data i_data; | ||
| 547 | __u8 i_symlink[0]; | 576 | __u8 i_symlink[0]; |
| 548 | } id2; | 577 | } id2; |
| 549 | /* Actual on-disk size is one block */ | 578 | /* Actual on-disk size is one block */ |
| @@ -593,6 +622,12 @@ static inline int ocfs2_fast_symlink_chars(struct super_block *sb) | |||
| 593 | offsetof(struct ocfs2_dinode, id2.i_symlink); | 622 | offsetof(struct ocfs2_dinode, id2.i_symlink); |
| 594 | } | 623 | } |
| 595 | 624 | ||
| 625 | static inline int ocfs2_max_inline_data(struct super_block *sb) | ||
| 626 | { | ||
| 627 | return sb->s_blocksize - | ||
| 628 | offsetof(struct ocfs2_dinode, id2.i_data.id_data); | ||
| 629 | } | ||
| 630 | |||
| 596 | static inline int ocfs2_extent_recs_per_inode(struct super_block *sb) | 631 | static inline int ocfs2_extent_recs_per_inode(struct super_block *sb) |
| 597 | { | 632 | { |
| 598 | int size; | 633 | int size; |
| @@ -672,6 +707,11 @@ static inline int ocfs2_fast_symlink_chars(int blocksize) | |||
| 672 | return blocksize - offsetof(struct ocfs2_dinode, id2.i_symlink); | 707 | return blocksize - offsetof(struct ocfs2_dinode, id2.i_symlink); |
| 673 | } | 708 | } |
| 674 | 709 | ||
| 710 | static inline int ocfs2_max_inline_data(int blocksize) | ||
| 711 | { | ||
| 712 | return blocksize - offsetof(struct ocfs2_dinode, id2.i_data.id_data); | ||
| 713 | } | ||
| 714 | |||
| 675 | static inline int ocfs2_extent_recs_per_inode(int blocksize) | 715 | static inline int ocfs2_extent_recs_per_inode(int blocksize) |
| 676 | { | 716 | { |
| 677 | int size; | 717 | int size; |
