sysv.h (10ce3cc919f50c2043b41ca968b43c26a3672600) | sysv.h (8de52778798fe39660a8d6b26f290e0c93202761) |
---|---|
1#ifndef _SYSV_H 2#define _SYSV_H 3 4#include <linux/buffer_head.h> 5 6typedef __u16 __bitwise __fs16; 7typedef __u32 __bitwise __fs32; 8 --- 10 unchanged lines hidden (view full) --- 19 */ 20 21struct sysv_sb_info { 22 struct super_block *s_sb; /* VFS superblock */ 23 int s_type; /* file system type: FSTYPE_{XENIX|SYSV|COH} */ 24 char s_bytesex; /* bytesex (le/be/pdp) */ 25 char s_truncate; /* if 1: names > SYSV_NAMELEN chars are truncated */ 26 /* if 0: they are disallowed (ENAMETOOLONG) */ | 1#ifndef _SYSV_H 2#define _SYSV_H 3 4#include <linux/buffer_head.h> 5 6typedef __u16 __bitwise __fs16; 7typedef __u32 __bitwise __fs32; 8 --- 10 unchanged lines hidden (view full) --- 19 */ 20 21struct sysv_sb_info { 22 struct super_block *s_sb; /* VFS superblock */ 23 int s_type; /* file system type: FSTYPE_{XENIX|SYSV|COH} */ 24 char s_bytesex; /* bytesex (le/be/pdp) */ 25 char s_truncate; /* if 1: names > SYSV_NAMELEN chars are truncated */ 26 /* if 0: they are disallowed (ENAMETOOLONG) */ |
27 nlink_t s_link_max; /* max number of hard links to a file */ | |
28 unsigned int s_inodes_per_block; /* number of inodes per block */ 29 unsigned int s_inodes_per_block_1; /* inodes_per_block - 1 */ 30 unsigned int s_inodes_per_block_bits; /* log2(inodes_per_block) */ 31 unsigned int s_ind_per_block; /* number of indirections per block */ 32 unsigned int s_ind_per_block_bits; /* log2(ind_per_block) */ 33 unsigned int s_ind_per_block_2; /* ind_per_block ^ 2 */ 34 unsigned int s_toobig_block; /* 10 + ipb + ipb^2 + ipb^3 */ 35 unsigned int s_block_base; /* physical block number of block 0 */ --- 213 unchanged lines hidden --- | 27 unsigned int s_inodes_per_block; /* number of inodes per block */ 28 unsigned int s_inodes_per_block_1; /* inodes_per_block - 1 */ 29 unsigned int s_inodes_per_block_bits; /* log2(inodes_per_block) */ 30 unsigned int s_ind_per_block; /* number of indirections per block */ 31 unsigned int s_ind_per_block_bits; /* log2(ind_per_block) */ 32 unsigned int s_ind_per_block_2; /* ind_per_block ^ 2 */ 33 unsigned int s_toobig_block; /* 10 + ipb + ipb^2 + ipb^3 */ 34 unsigned int s_block_base; /* physical block number of block 0 */ --- 213 unchanged lines hidden --- |