Lines Matching +full:ip +full:- +full:blocks

1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (c) 2000-2001 Christoph Hellwig.
10 * Veritas filesystem driver - superblock structure.
18 * Superblock magic number (vxfs_super->vs_magic).
53 __fs32 vs_ctime; /* create time - secs */
54 __fs32 vs_cutime; /* create time - usecs */
60 __fs32 vs_size; /* number of blocks */
61 __fs32 vs_dsize; /* number of data blocks */
81 __fs32 vs_aulen; /* length of AU in blocks */
82 __fs32 vs_auimlen; /* length of imap in blocks */
83 __fs32 vs_auemlen; /* length of emap in blocks */
84 __fs32 vs_auilen; /* length of ilist in blocks */
85 __fs32 vs_aupad; /* length of pad in blocks */
86 __fs32 vs_aublocks; /* data blocks in AU */
95 __fs32 vs_bmask; /* ~( bsize - 1 ) */
96 __fs32 vs_boffmask; /* bsize - 1 */
97 __fs32 vs_old_inomask; /* old_inopilb - 1 */
103 __fs32 vs_free; /* number of free blocks */
111 __fs32 vs_wtime; /* last time written - sec */
112 __fs32 vs_wutime; /* last time written - usec */
119 * Version 2, Read-only
124 __fs32 vs_iausize; /* size of IAU in blocks */
153 if (sbi->byte_order == VXFS_BO_BE) in fs16_to_cpu()
161 if (sbi->byte_order == VXFS_BO_BE) in fs32_to_cpu()
169 if (sbi->byte_order == VXFS_BO_BE) in fs64_to_cpu()
221 #define VXFS_IS_TYPE(ip,type) (((ip)->vii_mode & VXFS_TYPE_MASK) == (type)) argument
245 #define VXFS_IS_ORG(ip,org) ((ip)->vii_orgtype == (org)) argument
246 #define VXFS_ISNONE(ip) VXFS_IS_ORG((ip), VXFS_ORG_NONE) argument
247 #define VXFS_ISEXT4(ip) VXFS_IS_ORG((ip), VXFS_ORG_EXT4) argument
248 #define VXFS_ISIMMED(ip) VXFS_IS_ORG((ip), VXFS_ORG_IMMED) argument
249 #define VXFS_ISTYPED(ip) VXFS_IS_ORG((ip), VXFS_ORG_TYPED) argument
255 ((struct vxfs_sb_info *)(sbp)->s_fs_info)