Lines Matching defs:super_block

1277 struct super_block {  struct
1278 struct list_head s_list; /* Keep this first */
1279 dev_t s_dev; /* search index; _not_ kdev_t */
1280 unsigned char s_blocksize_bits;
1281 unsigned long s_blocksize;
1282 loff_t s_maxbytes; /* Max file size */
1283 struct file_system_type *s_type;
1284 const struct super_operations *s_op;
1285 const struct dquot_operations *dq_op;
1286 const struct quotactl_ops *s_qcop;
1287 const struct export_operations *s_export_op;
1288 unsigned long s_flags;
1289 unsigned long s_magic;
1290 struct dentry *s_root;
1291 struct rw_semaphore s_umount;
1292 int s_count;
1293 atomic_t s_active;
1295 void *s_security;
1297 const struct xattr_handler **s_xattr;
1299 struct list_head s_inodes; /* all inodes */
1300 struct hlist_bl_head s_anon; /* anonymous dentries for (nfs) exporting */
1301 struct list_head s_mounts; /* list of mounts; _not_ for fs use */
1302 struct block_device *s_bdev;
1303 struct backing_dev_info *s_bdi;
1304 struct mtd_info *s_mtd;
1305 struct hlist_node s_instances;
1306 unsigned int s_quota_types; /* Bitmask of supported quota types */
1307 struct quota_info s_dquot; /* Diskquota specific options */
1309 struct sb_writers s_writers;
1311 char s_id[32]; /* Informational name */
1312 u8 s_uuid[16]; /* UUID */
1314 void *s_fs_info; /* Filesystem private info */
1315 unsigned int s_max_links;
1316 fmode_t s_mode;
1320 u32 s_time_gran;
1326 struct mutex s_vfs_rename_mutex; /* Kludge */
1332 char *s_subtype;
1338 char __rcu *s_options;
1339 const struct dentry_operations *s_d_op; /* default d_op for dentries */
1344 int cleancache_poolid;
1346 struct shrinker s_shrink; /* per-sb shrinker handle */
1372 extern struct timespec current_fs_time(struct super_block *sb); argument