1 /* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
6 * On-disk structures for OCFS2.
8 * Copyright (C) 2002, 2004 Oracle. All rights reserved.
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public
12 * License, version 2, as published by the Free Software Foundation.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
19 * You should have received a copy of the GNU General Public
20 * License along with this program; if not, write to the
21 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 * Boston, MA 021110-1307, USA.
29 #define OCFS2_MAJOR_REV_LEVEL 0
30 #define OCFS2_MINOR_REV_LEVEL 90
33 * An OCFS2 volume starts this way:
34 * Sector 0: Valid ocfs1_vol_disk_hdr that cleanly fails to mount OCFS.
35 * Sector 1: Valid ocfs1_vol_label that cleanly fails to mount OCFS.
36 * Block OCFS2_SUPER_BLOCK_BLKNO: OCFS2 superblock.
38 * All other structures are found from the superblock information.
40 * OCFS2_SUPER_BLOCK_BLKNO is in blocks, not sectors. eg, for a
41 * blocksize of 2K, it is 4096 bytes into disk.
43 #define OCFS2_SUPER_BLOCK_BLKNO 2
46 * Cluster size limits. The maximum is kept arbitrarily at 1 MB, and could
49 #define OCFS2_MIN_CLUSTERSIZE 4096
50 #define OCFS2_MAX_CLUSTERSIZE 1048576
53 * Blocks cannot be bigger than clusters, so the maximum blocksize is the
54 * minimum cluster size.
56 #define OCFS2_MIN_BLOCKSIZE 512
57 #define OCFS2_MAX_BLOCKSIZE OCFS2_MIN_CLUSTERSIZE
59 /* Filesystem magic number */
60 #define OCFS2_SUPER_MAGIC 0x7461636f
62 /* Object signatures */
63 #define OCFS2_SUPER_BLOCK_SIGNATURE "OCFSV2"
64 #define OCFS2_INODE_SIGNATURE "INODE01"
65 #define OCFS2_EXTENT_BLOCK_SIGNATURE "EXBLK01"
66 #define OCFS2_GROUP_DESC_SIGNATURE "GROUP01"
68 /* Compatibility flags */
69 #define OCFS2_HAS_COMPAT_FEATURE(sb,mask) \
70 ( OCFS2_SB(sb)->s_feature_compat & (mask) )
71 #define OCFS2_HAS_RO_COMPAT_FEATURE(sb,mask) \
72 ( OCFS2_SB(sb)->s_feature_ro_compat & (mask) )
73 #define OCFS2_HAS_INCOMPAT_FEATURE(sb,mask) \
74 ( OCFS2_SB(sb)->s_feature_incompat & (mask) )
75 #define OCFS2_SET_COMPAT_FEATURE(sb,mask) \
76 OCFS2_SB(sb)->s_feature_compat |= (mask)
77 #define OCFS2_SET_RO_COMPAT_FEATURE(sb,mask) \
78 OCFS2_SB(sb)->s_feature_ro_compat |= (mask)
79 #define OCFS2_SET_INCOMPAT_FEATURE(sb,mask) \
80 OCFS2_SB(sb)->s_feature_incompat |= (mask)
81 #define OCFS2_CLEAR_COMPAT_FEATURE(sb,mask) \
82 OCFS2_SB(sb)->s_feature_compat &= ~(mask)
83 #define OCFS2_CLEAR_RO_COMPAT_FEATURE(sb,mask) \
84 OCFS2_SB(sb)->s_feature_ro_compat &= ~(mask)
85 #define OCFS2_CLEAR_INCOMPAT_FEATURE(sb,mask) \
86 OCFS2_SB(sb)->s_feature_incompat &= ~(mask)
88 #define OCFS2_FEATURE_COMPAT_SUPP OCFS2_FEATURE_COMPAT_BACKUP_SB
89 #define OCFS2_FEATURE_INCOMPAT_SUPP (OCFS2_FEATURE_INCOMPAT_LOCAL_MOUNT \
90 | OCFS2_FEATURE_INCOMPAT_SPARSE_ALLOC)
91 #define OCFS2_FEATURE_RO_COMPAT_SUPP 0
94 * Heartbeat-only devices are missing journals and other files. The
95 * filesystem driver can't load them, but the library can. Never put
96 * this in OCFS2_FEATURE_INCOMPAT_SUPP, *ever*.
98 #define OCFS2_FEATURE_INCOMPAT_HEARTBEAT_DEV 0x0002
101 * tunefs sets this incompat flag before starting the resize and clears it
102 * at the end. This flag protects users from inadvertently mounting the fs
103 * after an aborted run without fsck-ing.
105 #define OCFS2_FEATURE_INCOMPAT_RESIZE_INPROG 0x0004
107 /* Used to denote a non-clustered volume */
108 #define OCFS2_FEATURE_INCOMPAT_LOCAL_MOUNT 0x0008
110 /* Support for sparse allocation in b-trees */
111 #define OCFS2_FEATURE_INCOMPAT_SPARSE_ALLOC 0x0010
114 * backup superblock flag is used to indicate that this volume
115 * has backup superblocks.
117 #define OCFS2_FEATURE_COMPAT_BACKUP_SB 0x0001
119 /* The byte offset of the first backup block will be 1G.
120 * The following will be 4G, 16G, 64G, 256G and 1T.
122 #define OCFS2_BACKUP_SB_START 1 << 30
124 /* the max backup superblock nums */
125 #define OCFS2_MAX_BACKUP_SUPERBLOCKS 6
128 * Flags on ocfs2_dinode.i_flags
130 #define OCFS2_VALID_FL (0x00000001) /* Inode is valid */
131 #define OCFS2_UNUSED2_FL (0x00000002)
132 #define OCFS2_ORPHANED_FL (0x00000004) /* On the orphan list */
133 #define OCFS2_UNUSED3_FL (0x00000008)
134 /* System inode flags */
135 #define OCFS2_SYSTEM_FL (0x00000010) /* System inode */
136 #define OCFS2_SUPER_BLOCK_FL (0x00000020) /* Super block */
137 #define OCFS2_LOCAL_ALLOC_FL (0x00000040) /* Slot local alloc bitmap */
138 #define OCFS2_BITMAP_FL (0x00000080) /* Allocation bitmap */
139 #define OCFS2_JOURNAL_FL (0x00000100) /* Slot local journal */
140 #define OCFS2_HEARTBEAT_FL (0x00000200) /* Heartbeat area */
141 #define OCFS2_CHAIN_FL (0x00000400) /* Chain allocator */
142 #define OCFS2_DEALLOC_FL (0x00000800) /* Truncate log */
144 /* Inode attributes, keep in sync with EXT2 */
145 #define OCFS2_SECRM_FL (0x00000001) /* Secure deletion */
146 #define OCFS2_UNRM_FL (0x00000002) /* Undelete */
147 #define OCFS2_COMPR_FL (0x00000004) /* Compress file */
148 #define OCFS2_SYNC_FL (0x00000008) /* Synchronous updates */
149 #define OCFS2_IMMUTABLE_FL (0x00000010) /* Immutable file */
150 #define OCFS2_APPEND_FL (0x00000020) /* writes to file may only append */
151 #define OCFS2_NODUMP_FL (0x00000040) /* do not dump file */
152 #define OCFS2_NOATIME_FL (0x00000080) /* do not update atime */
153 #define OCFS2_DIRSYNC_FL (0x00010000) /* dirsync behaviour (directories only) */
155 #define OCFS2_FL_VISIBLE (0x000100FF) /* User visible flags */
156 #define OCFS2_FL_MODIFIABLE (0x000100FF) /* User modifiable flags */
159 * Extent record flags (e_node.leaf.flags)
161 #define OCFS2_EXT_UNWRITTEN (0x01) /* Extent is allocated but
167 #define OCFS2_IOC_GETFLAGS _IOR('f', 1, long)
168 #define OCFS2_IOC_SETFLAGS _IOW('f', 2, long)
169 #define OCFS2_IOC32_GETFLAGS _IOR('f', 1, int)
170 #define OCFS2_IOC32_SETFLAGS _IOW('f', 2, int)
173 * Journal Flags (ocfs2_dinode.id1.journal1.i_flags)
175 #define OCFS2_JOURNAL_DIRTY_FL (0x00000001) /* Journal needs recovery */
178 * superblock s_state flags
180 #define OCFS2_ERROR_FS (0x00000001) /* FS saw errors */
182 /* Limit of space in ocfs2_dir_entry */
183 #define OCFS2_MAX_FILENAME_LEN 255
185 /* Maximum slots on an ocfs2 file system */
186 #define OCFS2_MAX_SLOTS 255
188 /* Slot map indicator for an empty slot */
189 #define OCFS2_INVALID_SLOT -1
191 #define OCFS2_VOL_UUID_LEN 16
192 #define OCFS2_MAX_VOL_LABEL_LEN 64
194 /* Journal limits (in bytes) */
195 #define OCFS2_MIN_JOURNAL_SIZE (4 * 1024 * 1024)
197 struct ocfs2_system_inode_info
{
203 /* System file index */
205 BAD_BLOCK_SYSTEM_INODE
= 0,
206 GLOBAL_INODE_ALLOC_SYSTEM_INODE
,
207 SLOT_MAP_SYSTEM_INODE
,
208 #define OCFS2_FIRST_ONLINE_SYSTEM_INODE SLOT_MAP_SYSTEM_INODE
209 HEARTBEAT_SYSTEM_INODE
,
210 GLOBAL_BITMAP_SYSTEM_INODE
,
211 #define OCFS2_LAST_GLOBAL_SYSTEM_INODE GLOBAL_BITMAP_SYSTEM_INODE
212 ORPHAN_DIR_SYSTEM_INODE
,
213 EXTENT_ALLOC_SYSTEM_INODE
,
214 INODE_ALLOC_SYSTEM_INODE
,
215 JOURNAL_SYSTEM_INODE
,
216 LOCAL_ALLOC_SYSTEM_INODE
,
217 TRUNCATE_LOG_SYSTEM_INODE
,
221 static struct ocfs2_system_inode_info ocfs2_system_inodes
[NUM_SYSTEM_INODES
] = {
222 /* Global system inodes (single copy) */
223 /* The first two are only used from userspace mfks/tunefs */
224 [BAD_BLOCK_SYSTEM_INODE
] = { "bad_blocks", 0, S_IFREG
| 0644 },
225 [GLOBAL_INODE_ALLOC_SYSTEM_INODE
] = { "global_inode_alloc", OCFS2_BITMAP_FL
| OCFS2_CHAIN_FL
, S_IFREG
| 0644 },
227 /* These are used by the running filesystem */
228 [SLOT_MAP_SYSTEM_INODE
] = { "slot_map", 0, S_IFREG
| 0644 },
229 [HEARTBEAT_SYSTEM_INODE
] = { "heartbeat", OCFS2_HEARTBEAT_FL
, S_IFREG
| 0644 },
230 [GLOBAL_BITMAP_SYSTEM_INODE
] = { "global_bitmap", 0, S_IFREG
| 0644 },
232 /* Slot-specific system inodes (one copy per slot) */
233 [ORPHAN_DIR_SYSTEM_INODE
] = { "orphan_dir:%04d", 0, S_IFDIR
| 0755 },
234 [EXTENT_ALLOC_SYSTEM_INODE
] = { "extent_alloc:%04d", OCFS2_BITMAP_FL
| OCFS2_CHAIN_FL
, S_IFREG
| 0644 },
235 [INODE_ALLOC_SYSTEM_INODE
] = { "inode_alloc:%04d", OCFS2_BITMAP_FL
| OCFS2_CHAIN_FL
, S_IFREG
| 0644 },
236 [JOURNAL_SYSTEM_INODE
] = { "journal:%04d", OCFS2_JOURNAL_FL
, S_IFREG
| 0644 },
237 [LOCAL_ALLOC_SYSTEM_INODE
] = { "local_alloc:%04d", OCFS2_BITMAP_FL
| OCFS2_LOCAL_ALLOC_FL
, S_IFREG
| 0644 },
238 [TRUNCATE_LOG_SYSTEM_INODE
] = { "truncate_log:%04d", OCFS2_DEALLOC_FL
, S_IFREG
| 0644 }
241 /* Parameter passed from mount.ocfs2 to module */
242 #define OCFS2_HB_NONE "heartbeat=none"
243 #define OCFS2_HB_LOCAL "heartbeat=local"
246 * OCFS2 directory file types. Only the low 3 bits are used. The
247 * other bits are reserved for now.
249 #define OCFS2_FT_UNKNOWN 0
250 #define OCFS2_FT_REG_FILE 1
251 #define OCFS2_FT_DIR 2
252 #define OCFS2_FT_CHRDEV 3
253 #define OCFS2_FT_BLKDEV 4
254 #define OCFS2_FT_FIFO 5
255 #define OCFS2_FT_SOCK 6
256 #define OCFS2_FT_SYMLINK 7
258 #define OCFS2_FT_MAX 8
261 * OCFS2_DIR_PAD defines the directory entries boundaries
263 * NOTE: It must be a multiple of 4
265 #define OCFS2_DIR_PAD 4
266 #define OCFS2_DIR_ROUND (OCFS2_DIR_PAD - 1)
267 #define OCFS2_DIR_MEMBER_LEN offsetof(struct ocfs2_dir_entry, name)
268 #define OCFS2_DIR_REC_LEN(name_len) (((name_len) + OCFS2_DIR_MEMBER_LEN + \
272 #define OCFS2_LINK_MAX 32000
275 static unsigned char ocfs2_type_by_mode
[S_IFMT
>> S_SHIFT
] = {
276 [S_IFREG
>> S_SHIFT
] = OCFS2_FT_REG_FILE
,
277 [S_IFDIR
>> S_SHIFT
] = OCFS2_FT_DIR
,
278 [S_IFCHR
>> S_SHIFT
] = OCFS2_FT_CHRDEV
,
279 [S_IFBLK
>> S_SHIFT
] = OCFS2_FT_BLKDEV
,
280 [S_IFIFO
>> S_SHIFT
] = OCFS2_FT_FIFO
,
281 [S_IFSOCK
>> S_SHIFT
] = OCFS2_FT_SOCK
,
282 [S_IFLNK
>> S_SHIFT
] = OCFS2_FT_SYMLINK
,
289 #define OCFS2_RAW_SB(dinode) (&((dinode)->id2.i_super))
292 * On disk extent record for OCFS2
293 * It describes a range of clusters on disk.
295 * Length fields are divided into interior and leaf node versions.
296 * This leaves room for a flags field (OCFS2_EXT_*) in the leaf nodes.
298 struct ocfs2_extent_rec
{
299 /*00*/ __le32 e_cpos
; /* Offset into the file, in clusters */
301 __le32 e_int_clusters
; /* Clusters covered by all children */
303 __le16 e_leaf_clusters
; /* Clusters covered by this
306 __u8 e_flags
; /* Extent flags */
309 __le64 e_blkno
; /* Physical disk offset, in blocks */
313 struct ocfs2_chain_rec
{
314 __le32 c_free
; /* Number of free bits in this chain. */
315 __le32 c_total
; /* Number of total bits in this chain */
316 __le64 c_blkno
; /* Physical disk offset (blocks) of 1st group */
319 struct ocfs2_truncate_rec
{
320 __le32 t_start
; /* 1st cluster in this log */
321 __le32 t_clusters
; /* Number of total clusters covered */
325 * On disk extent list for OCFS2 (node in the tree). Note that this
326 * is contained inside ocfs2_dinode or ocfs2_extent_block, so the
327 * offsets are relative to ocfs2_dinode.id2.i_list or
328 * ocfs2_extent_block.h_list, respectively.
330 struct ocfs2_extent_list
{
331 /*00*/ __le16 l_tree_depth
; /* Extent tree depth from this
332 point. 0 means data extents
333 hang directly off this
335 NOTE: The high 8 bits cannot be
336 used - tree_depth is never that big.
338 __le16 l_count
; /* Number of extent records */
339 __le16 l_next_free_rec
; /* Next unused extent slot */
341 __le64 l_reserved2
; /* Pad to
342 sizeof(ocfs2_extent_rec) */
343 /*10*/ struct ocfs2_extent_rec l_recs
[0]; /* Extent records */
347 * On disk allocation chain list for OCFS2. Note that this is
348 * contained inside ocfs2_dinode, so the offsets are relative to
349 * ocfs2_dinode.id2.i_chain.
351 struct ocfs2_chain_list
{
352 /*00*/ __le16 cl_cpg
; /* Clusters per Block Group */
353 __le16 cl_bpc
; /* Bits per cluster */
354 __le16 cl_count
; /* Total chains in this list */
355 __le16 cl_next_free_rec
; /* Next unused chain slot */
357 /*10*/ struct ocfs2_chain_rec cl_recs
[0]; /* Chain records */
361 * On disk deallocation log for OCFS2. Note that this is
362 * contained inside ocfs2_dinode, so the offsets are relative to
363 * ocfs2_dinode.id2.i_dealloc.
365 struct ocfs2_truncate_log
{
366 /*00*/ __le16 tl_count
; /* Total records in this log */
367 __le16 tl_used
; /* Number of records in use */
369 /*08*/ struct ocfs2_truncate_rec tl_recs
[0]; /* Truncate records */
373 * On disk extent block (indirect block) for OCFS2
375 struct ocfs2_extent_block
377 /*00*/ __u8 h_signature
[8]; /* Signature for verification */
379 /*10*/ __le16 h_suballoc_slot
; /* Slot suballocator this
380 extent_header belongs to */
381 __le16 h_suballoc_bit
; /* Bit offset in suballocator
383 __le32 h_fs_generation
; /* Must match super block */
384 __le64 h_blkno
; /* Offset on disk, in blocks */
385 /*20*/ __le64 h_reserved3
;
386 __le64 h_next_leaf_blk
; /* Offset on disk, in blocks,
387 of next leaf header pointing
389 /*30*/ struct ocfs2_extent_list h_list
; /* Extent record list */
390 /* Actual on-disk size is one block */
394 * On disk superblock for OCFS2
395 * Note that it is contained inside an ocfs2_dinode, so all offsets
396 * are relative to the start of ocfs2_dinode.id2.
398 struct ocfs2_super_block
{
399 /*00*/ __le16 s_major_rev_level
;
400 __le16 s_minor_rev_level
;
402 __le16 s_max_mnt_count
;
403 __le16 s_state
; /* File system state */
404 __le16 s_errors
; /* Behaviour when detecting errors */
405 __le32 s_checkinterval
; /* Max time between checks */
406 /*10*/ __le64 s_lastcheck
; /* Time of last check */
407 __le32 s_creator_os
; /* OS */
408 __le32 s_feature_compat
; /* Compatible feature set */
409 /*20*/ __le32 s_feature_incompat
; /* Incompatible feature set */
410 __le32 s_feature_ro_compat
; /* Readonly-compatible feature set */
411 __le64 s_root_blkno
; /* Offset, in blocks, of root directory
413 /*30*/ __le64 s_system_dir_blkno
; /* Offset, in blocks, of system
415 __le32 s_blocksize_bits
; /* Blocksize for this fs */
416 __le32 s_clustersize_bits
; /* Clustersize for this fs */
417 /*40*/ __le16 s_max_slots
; /* Max number of simultaneous mounts
418 before tunefs required */
421 __le64 s_first_cluster_group
; /* Block offset of 1st cluster
423 /*50*/ __u8 s_label
[OCFS2_MAX_VOL_LABEL_LEN
]; /* Label for mounting, etc. */
424 /*90*/ __u8 s_uuid
[OCFS2_VOL_UUID_LEN
]; /* 128-bit uuid */
429 * Local allocation bitmap for OCFS2 slots
430 * Note that it exists inside an ocfs2_dinode, so all offsets are
431 * relative to the start of ocfs2_dinode.id2.
433 struct ocfs2_local_alloc
435 /*00*/ __le32 la_bm_off
; /* Starting bit offset in main bitmap */
436 __le16 la_size
; /* Size of included bitmap, in bytes */
439 /*10*/ __u8 la_bitmap
[0];
443 * On disk inode for OCFS2
445 struct ocfs2_dinode
{
446 /*00*/ __u8 i_signature
[8]; /* Signature for validation */
447 __le32 i_generation
; /* Generation number */
448 __le16 i_suballoc_slot
; /* Slot suballocator this inode
450 __le16 i_suballoc_bit
; /* Bit offset in suballocator
452 /*10*/ __le32 i_reserved0
;
453 __le32 i_clusters
; /* Cluster count */
454 __le32 i_uid
; /* Owner UID */
455 __le32 i_gid
; /* Owning GID */
456 /*20*/ __le64 i_size
; /* Size in bytes */
457 __le16 i_mode
; /* File mode */
458 __le16 i_links_count
; /* Links count */
459 __le32 i_flags
; /* File flags */
460 /*30*/ __le64 i_atime
; /* Access time */
461 __le64 i_ctime
; /* Creation time */
462 /*40*/ __le64 i_mtime
; /* Modification time */
463 __le64 i_dtime
; /* Deletion time */
464 /*50*/ __le64 i_blkno
; /* Offset on disk, in blocks */
465 __le64 i_last_eb_blk
; /* Pointer to last extent
467 /*60*/ __le32 i_fs_generation
; /* Generation per fs-instance */
472 __le16 i_orphaned_slot
; /* Only valid when OCFS2_ORPHANED_FL
473 was set in i_flags */
475 /*70*/ __le64 i_reserved2
[8];
477 __le64 i_pad1
; /* Generic way to refer to this
480 __le64 i_rdev
; /* Device number */
482 struct { /* Info for bitmap system
484 __le32 i_used
; /* Bits (ie, clusters) used */
485 __le32 i_total
; /* Total bits (clusters)
488 struct { /* Info for journal system
490 __le32 ij_flags
; /* Mounted, version, etc. */
493 } id1
; /* Inode type dependant 1 */
495 struct ocfs2_super_block i_super
;
496 struct ocfs2_local_alloc i_lab
;
497 struct ocfs2_chain_list i_chain
;
498 struct ocfs2_extent_list i_list
;
499 struct ocfs2_truncate_log i_dealloc
;
502 /* Actual on-disk size is one block */
506 * On-disk directory entry structure for OCFS2
508 * Packed as this structure could be accessed unaligned on 64-bit platforms
510 struct ocfs2_dir_entry
{
511 /*00*/ __le64 inode
; /* Inode number */
512 __le16 rec_len
; /* Directory entry length */
513 __u8 name_len
; /* Name length */
515 /*0C*/ char name
[OCFS2_MAX_FILENAME_LEN
]; /* File name */
516 /* Actual on-disk length specified by rec_len */
517 } __attribute__ ((packed
));
520 * On disk allocator group structure for OCFS2
522 struct ocfs2_group_desc
524 /*00*/ __u8 bg_signature
[8]; /* Signature for validation */
525 __le16 bg_size
; /* Size of included bitmap in
527 __le16 bg_bits
; /* Bits represented by this
529 __le16 bg_free_bits_count
; /* Free bits count */
530 __le16 bg_chain
; /* What chain I am in. */
531 /*10*/ __le32 bg_generation
;
533 __le64 bg_next_group
; /* Next group in my list, in
535 /*20*/ __le64 bg_parent_dinode
; /* dinode which owns me, in
537 __le64 bg_blkno
; /* Offset on disk, in blocks */
538 /*30*/ __le64 bg_reserved2
[2];
539 /*40*/ __u8 bg_bitmap
[0];
543 static inline int ocfs2_fast_symlink_chars(struct super_block
*sb
)
545 return sb
->s_blocksize
-
546 offsetof(struct ocfs2_dinode
, id2
.i_symlink
);
549 static inline int ocfs2_extent_recs_per_inode(struct super_block
*sb
)
553 size
= sb
->s_blocksize
-
554 offsetof(struct ocfs2_dinode
, id2
.i_list
.l_recs
);
556 return size
/ sizeof(struct ocfs2_extent_rec
);
559 static inline int ocfs2_chain_recs_per_inode(struct super_block
*sb
)
563 size
= sb
->s_blocksize
-
564 offsetof(struct ocfs2_dinode
, id2
.i_chain
.cl_recs
);
566 return size
/ sizeof(struct ocfs2_chain_rec
);
569 static inline u16
ocfs2_extent_recs_per_eb(struct super_block
*sb
)
573 size
= sb
->s_blocksize
-
574 offsetof(struct ocfs2_extent_block
, h_list
.l_recs
);
576 return size
/ sizeof(struct ocfs2_extent_rec
);
579 static inline u16
ocfs2_local_alloc_size(struct super_block
*sb
)
583 size
= sb
->s_blocksize
-
584 offsetof(struct ocfs2_dinode
, id2
.i_lab
.la_bitmap
);
589 static inline int ocfs2_group_bitmap_size(struct super_block
*sb
)
593 size
= sb
->s_blocksize
-
594 offsetof(struct ocfs2_group_desc
, bg_bitmap
);
599 static inline int ocfs2_truncate_recs_per_inode(struct super_block
*sb
)
603 size
= sb
->s_blocksize
-
604 offsetof(struct ocfs2_dinode
, id2
.i_dealloc
.tl_recs
);
606 return size
/ sizeof(struct ocfs2_truncate_rec
);
609 static inline u64
ocfs2_backup_super_blkno(struct super_block
*sb
, int index
)
611 u64 offset
= OCFS2_BACKUP_SB_START
;
613 if (index
>= 0 && index
< OCFS2_MAX_BACKUP_SUPERBLOCKS
) {
614 offset
<<= (2 * index
);
615 offset
>>= sb
->s_blocksize_bits
;
623 static inline int ocfs2_fast_symlink_chars(int blocksize
)
625 return blocksize
- offsetof(struct ocfs2_dinode
, id2
.i_symlink
);
628 static inline int ocfs2_extent_recs_per_inode(int blocksize
)
633 offsetof(struct ocfs2_dinode
, id2
.i_list
.l_recs
);
635 return size
/ sizeof(struct ocfs2_extent_rec
);
638 static inline int ocfs2_chain_recs_per_inode(int blocksize
)
643 offsetof(struct ocfs2_dinode
, id2
.i_chain
.cl_recs
);
645 return size
/ sizeof(struct ocfs2_chain_rec
);
648 static inline int ocfs2_extent_recs_per_eb(int blocksize
)
653 offsetof(struct ocfs2_extent_block
, h_list
.l_recs
);
655 return size
/ sizeof(struct ocfs2_extent_rec
);
658 static inline int ocfs2_local_alloc_size(int blocksize
)
663 offsetof(struct ocfs2_dinode
, id2
.i_lab
.la_bitmap
);
668 static inline int ocfs2_group_bitmap_size(int blocksize
)
673 offsetof(struct ocfs2_group_desc
, bg_bitmap
);
678 static inline int ocfs2_truncate_recs_per_inode(int blocksize
)
683 offsetof(struct ocfs2_dinode
, id2
.i_dealloc
.tl_recs
);
685 return size
/ sizeof(struct ocfs2_truncate_rec
);
688 static inline uint64_t ocfs2_backup_super_blkno(int blocksize
, int index
)
690 uint64_t offset
= OCFS2_BACKUP_SB_START
;
692 if (index
>= 0 && index
< OCFS2_MAX_BACKUP_SUPERBLOCKS
) {
693 offset
<<= (2 * index
);
700 #endif /* __KERNEL__ */
703 static inline int ocfs2_system_inode_is_global(int type
)
705 return ((type
>= 0) &&
706 (type
<= OCFS2_LAST_GLOBAL_SYSTEM_INODE
));
709 static inline int ocfs2_sprintf_system_inode_name(char *buf
, int len
,
715 * Global system inodes can only have one copy. Everything
716 * after OCFS2_LAST_GLOBAL_SYSTEM_INODE in the system inode
717 * list has a copy per slot.
719 if (type
<= OCFS2_LAST_GLOBAL_SYSTEM_INODE
)
720 chars
= snprintf(buf
, len
,
721 ocfs2_system_inodes
[type
].si_name
);
723 chars
= snprintf(buf
, len
,
724 ocfs2_system_inodes
[type
].si_name
,
730 static inline void ocfs2_set_de_type(struct ocfs2_dir_entry
*de
,
733 de
->file_type
= ocfs2_type_by_mode
[(mode
& S_IFMT
)>>S_SHIFT
];
736 #endif /* _OCFS2_FS_H */