Lines Matching defs:super_block

1286 struct super_block {  struct
1287 struct list_head s_list; /* Keep this first */
1288 dev_t s_dev; /* search index; _not_ kdev_t */
1289 unsigned char s_blocksize_bits;
1290 unsigned long s_blocksize;
1291 loff_t s_maxbytes; /* Max file size */
1292 struct file_system_type *s_type;
1293 const struct super_operations *s_op;
1294 const struct dquot_operations *dq_op;
1295 const struct quotactl_ops *s_qcop;
1296 const struct export_operations *s_export_op;
1297 unsigned long s_flags;
1298 unsigned long s_iflags; /* internal SB_I_* flags */
1299 unsigned long s_magic;
1300 struct dentry *s_root;
1301 struct rw_semaphore s_umount;
1302 int s_count;
1303 atomic_t s_active;
1305 void *s_security;
1307 const struct xattr_handler **s_xattr;
1309 struct hlist_bl_head s_anon; /* anonymous dentries for (nfs) exporting */
1310 struct list_head s_mounts; /* list of mounts; _not_ for fs use */
1311 struct block_device *s_bdev;
1312 struct backing_dev_info *s_bdi;
1313 struct mtd_info *s_mtd;
1314 struct hlist_node s_instances;
1315 unsigned int s_quota_types; /* Bitmask of supported quota types */
1316 struct quota_info s_dquot; /* Diskquota specific options */
1318 struct sb_writers s_writers;
1320 char s_id[32]; /* Informational name */
1321 u8 s_uuid[16]; /* UUID */
1323 void *s_fs_info; /* Filesystem private info */
1324 unsigned int s_max_links;
1325 fmode_t s_mode;
1329 u32 s_time_gran;
1335 struct mutex s_vfs_rename_mutex; /* Kludge */
1341 char *s_subtype;
1347 char __rcu *s_options;
1348 const struct dentry_operations *s_d_op; /* default d_op for dentries */
1353 int cleancache_poolid;
1355 struct shrinker s_shrink; /* per-sb shrinker handle */
1358 atomic_long_t s_remove_count;
1361 int s_readonly_remount;
1364 struct workqueue_struct *s_dio_done_wq;
1388 extern struct timespec current_fs_time(struct super_block *sb); argument