/* * linux/include/linux/adfs_fs_sb.h * * Copyright (C) 1997-1999 Russell King */#ifndef _ADFS_FS_SB#define _ADFS_FS_SB/* * Forward-declare this */structadfs_discmap;structadfs_dir_ops;/* * ADFS file system superblock data in memory */structadfs_sb_info{structadfs_discmap*s_map;/* bh list containing map */structadfs_dir_ops*s_dir;/* directory operations */uid_ts_uid;/* owner uid */gid_ts_gid;/* owner gid */umode_ts_owner_mask;/* ADFS owner perm -> unix perm */umode_ts_other_mask;/* ADFS other perm -> unix perm */__u32s_ids_per_zone;/* max. no ids in one zone */__u32s_idlen;/* length of ID in map */__u32s_map_size;/* sector size of a map */unsignedlongs_size;/* total size (in blocks) of this fs */signedints_map2blk;/* shift left by this for map->sector */unsignedints_log2sharesize;/* log2 share size */__le32s_version;/* disc format version */unsignedints_namelen;/* maximum number of characters in name */};#endif