Lines Matching defs:affs_sb_info
82 struct affs_sb_info { struct
83 int s_partition_size; /* Partition size in blocks. */
84 int s_reserved; /* Number of reserved blocks. */
86 u32 s_data_blksize; /* size of the data block w/o header */
87 u32 s_root_block; /* FFS root block number. */
88 int s_hashsize; /* Size of hash table. */
89 unsigned long s_flags; /* See below. */
90 kuid_t s_uid; /* uid to override */
91 kgid_t s_gid; /* gid to override */
92 umode_t s_mode; /* mode to override */
93 struct buffer_head *s_root_bh; /* Cached root block. */
94 struct mutex s_bmlock; /* Protects bitmap access. */
95 struct affs_bm_info *s_bitmap; /* Bitmap infos. */
96 u32 s_bmap_count; /* # of bitmap blocks. */
97 u32 s_bmap_bits; /* # of bits in one bitmap blocks */
98 u32 s_last_bmap;
99 struct buffer_head *s_bmap_bh;
100 char *s_prefix; /* Prefix for volumes and assigns. */
101 char s_volume[32]; /* Volume prefix for absolute symlinks. */
102 spinlock_t symlink_lock; /* protects the previous two */
103 struct super_block *sb; /* the VFS superblock object */
127 static inline struct affs_sb_info *AFFS_SB(struct super_block *sb) in AFFS_SB() argument