Lines Matching defs:super_block

1360 struct super_block {  struct
1361 struct list_head s_list; /* Keep this first */
1362 dev_t s_dev; /* search index; _not_ kdev_t */
1363 unsigned char s_blocksize_bits;
1364 unsigned long s_blocksize;
1365 loff_t s_maxbytes; /* Max file size */
1366 struct file_system_type *s_type;
1367 const struct super_operations *s_op;
1368 const struct dquot_operations *dq_op;
1369 const struct quotactl_ops *s_qcop;
1370 const struct export_operations *s_export_op;
1371 unsigned long s_flags;
1372 unsigned long s_iflags; /* internal SB_I_* flags */
1373 unsigned long s_magic;
1374 struct dentry *s_root;
1375 struct rw_semaphore s_umount;
1376 int s_count;
1377 atomic_t s_active;
1379 void *s_security;
1381 const struct xattr_handler **s_xattr;
1383 const struct fscrypt_operations *s_cop;
1385 struct hlist_bl_head s_roots; /* alternate root dentries for NFS */
1386 struct list_head s_mounts; /* list of mounts; _not_ for fs use */
1387 struct block_device *s_bdev;
1388 struct backing_dev_info *s_bdi;
1389 struct mtd_info *s_mtd;
1390 struct hlist_node s_instances;
1391 unsigned int s_quota_types; /* Bitmask of supported quota types */
1392 struct quota_info s_dquot; /* Diskquota specific options */
1394 struct sb_writers s_writers;
1396 char s_id[32]; /* Informational name */
1397 uuid_t s_uuid; /* UUID */
1399 void *s_fs_info; /* Filesystem private info */
1400 unsigned int s_max_links;
1401 fmode_t s_mode;
1405 u32 s_time_gran;
1411 struct mutex s_vfs_rename_mutex; /* Kludge */
1417 char *s_subtype;
1419 const struct dentry_operations *s_d_op; /* default d_op for dentries */
1424 int cleancache_poolid;
1426 struct shrinker s_shrink; /* per-sb shrinker handle */
1429 atomic_long_t s_remove_count;
1432 int s_readonly_remount;
1435 struct workqueue_struct *s_dio_done_wq;
1436 struct hlist_head s_pins;
1443 struct user_namespace *s_user_ns;
1449 struct list_lru s_dentry_lru ____cacheline_aligned_in_smp;
1450 struct list_lru s_inode_lru ____cacheline_aligned_in_smp;
1451 struct rcu_head rcu;
1452 struct work_struct destroy_work;
1454 struct mutex s_sync_lock; /* sync serialisation lock */
1459 int s_stack_depth;
1462 spinlock_t s_inode_list_lock ____cacheline_aligned_in_smp;
1463 struct list_head s_inodes; /* all inodes */
1465 spinlock_t s_inode_wblist_lock;
1466 struct list_head s_inodes_wb; /* writeback inodes */
2150 int (*fill_super)(struct super_block *, void *, int)) in mount_bdev()