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