• Home
  • Raw
  • Download

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

2  * Copyright (c) 2000-2001 Christoph Hellwig.
35 * Veritas filesystem driver - superblock structure.
43 * Superblock magic number (vxfs_super->vs_magic).
78 __fs32 vs_ctime; /* create time - secs */
79 __fs32 vs_cutime; /* create time - usecs */
85 __fs32 vs_size; /* number of blocks */
86 __fs32 vs_dsize; /* number of data blocks */
106 __fs32 vs_aulen; /* length of AU in blocks */
107 __fs32 vs_auimlen; /* length of imap in blocks */
108 __fs32 vs_auemlen; /* length of emap in blocks */
109 __fs32 vs_auilen; /* length of ilist in blocks */
110 __fs32 vs_aupad; /* length of pad in blocks */
111 __fs32 vs_aublocks; /* data blocks in AU */
120 __fs32 vs_bmask; /* ~( bsize - 1 ) */
121 __fs32 vs_boffmask; /* bsize - 1 */
122 __fs32 vs_old_inomask; /* old_inopilb - 1 */
128 __fs32 vs_free; /* number of free blocks */
136 __fs32 vs_wtime; /* last time written - sec */
137 __fs32 vs_wutime; /* last time written - usec */
144 * Version 2, Read-only
149 __fs32 vs_iausize; /* size of IAU in blocks */
178 if (sbi->byte_order == VXFS_BO_BE) in fs16_to_cpu()
186 if (sbi->byte_order == VXFS_BO_BE) in fs32_to_cpu()
194 if (sbi->byte_order == VXFS_BO_BE) in fs64_to_cpu()
246 #define VXFS_IS_TYPE(ip,type) (((ip)->vii_mode & VXFS_TYPE_MASK) == (type)) argument
270 #define VXFS_IS_ORG(ip,org) ((ip)->vii_orgtype == (org)) argument
271 #define VXFS_ISNONE(ip) VXFS_IS_ORG((ip), VXFS_ORG_NONE) argument
272 #define VXFS_ISEXT4(ip) VXFS_IS_ORG((ip), VXFS_ORG_EXT4) argument
273 #define VXFS_ISIMMED(ip) VXFS_IS_ORG((ip), VXFS_ORG_IMMED) argument
274 #define VXFS_ISTYPED(ip) VXFS_IS_ORG((ip), VXFS_ORG_TYPED) argument
280 ((struct vxfs_sb_info *)(sbp)->s_fs_info)