Lines Matching defs:ocfs2_super

306 struct ocfs2_super  struct
308 struct task_struct *commit_task;
309 struct super_block *sb;
310 struct inode *root_inode;
311 struct inode *sys_root_inode;
312 struct inode *global_system_inodes[NUM_GLOBAL_SYSTEM_INODES];
313 struct inode **local_system_inodes;
315 struct ocfs2_slot_info *slot_info;
317 u32 *slot_recovery_generations;
319 spinlock_t node_map_lock;
321 u64 root_blkno;
322 u64 system_dir_blkno;
323 u64 bitmap_blkno;
324 u32 bitmap_cpg;
325 char *uuid_str;
326 u32 uuid_hash;
327 u8 *vol_label;
328 u64 first_cluster_group_blkno;
329 u32 fs_generation;
331 u32 s_feature_compat;
332 u32 s_feature_incompat;
333 u32 s_feature_ro_compat;
338 spinlock_t osb_lock;
339 u32 s_next_generation;
340 unsigned long osb_flags;
341 s16 s_inode_steal_slot;
342 s16 s_meta_steal_slot;
343 atomic_t s_num_inodes_stolen;
344 atomic_t s_num_meta_stolen;
346 unsigned long s_mount_opt;
347 unsigned int s_atime_quantum;
349 unsigned int max_slots;
350 unsigned int node_num;
351 int slot_num;
352 int preferred_slot;
353 int s_sectsize_bits;
354 int s_clustersize;
355 int s_clustersize_bits;
356 unsigned int s_xattr_inline_size;
358 atomic_t vol_state;
359 struct mutex recovery_lock;
360 struct ocfs2_recovery_map *recovery_map;
361 struct ocfs2_replay_map *replay_map;
362 struct task_struct *recovery_thread_task;
363 int disable_recovery;
364 wait_queue_head_t checkpoint_event;
365 struct ocfs2_journal *journal;
366 unsigned long osb_commit_interval;
368 struct delayed_work la_enable_wq;
374 unsigned int local_alloc_bits;
375 unsigned int local_alloc_default_bits;
378 unsigned int osb_clusters_at_boot;
380 enum ocfs2_local_alloc_state local_alloc_state; /* protected
383 struct buffer_head *local_alloc_bh;
385 u64 la_last_gd;
387 struct ocfs2_reservation_map osb_la_resmap;
389 unsigned int osb_resv_level;
390 unsigned int osb_dir_resv_level;
394 struct ocfs2_dinode *local_alloc_copy;
395 struct ocfs2_quota_recovery *quota_rec;
397 struct ocfs2_blockcheck_stats osb_ecc_stats;
398 struct ocfs2_alloc_stats alloc_stats;
399 char dev_str[20]; /* "major,minor" of the device */
401 u8 osb_stackflags;
403 char osb_cluster_stack[OCFS2_STACK_LABEL_LEN + 1];
404 char osb_cluster_name[OCFS2_CLUSTER_NAME_LEN + 1];
405 struct ocfs2_cluster_connection *cconn;
406 struct ocfs2_lock_res osb_super_lockres;
407 struct ocfs2_lock_res osb_rename_lockres;
408 struct ocfs2_lock_res osb_nfs_sync_lockres;
409 struct ocfs2_lock_res osb_trim_fs_lockres;
410 struct ocfs2_dlm_debug *osb_dlm_debug;
412 struct dentry *osb_debug_root;
413 struct dentry *osb_ctxt;
415 wait_queue_head_t recovery_event;
417 spinlock_t dc_task_lock;
418 struct task_struct *dc_task;
419 wait_queue_head_t dc_event;
420 unsigned long dc_wake_sequence;
421 unsigned long dc_work_sequence;
429 struct list_head blocked_lock_list;
430 unsigned long blocked_lock_count;
433 struct llist_head dquot_drop_list;
434 struct work_struct dquot_drop_work;
436 wait_queue_head_t osb_mount_event;
439 struct inode *osb_tl_inode;
440 struct buffer_head *osb_tl_bh;
441 struct delayed_work osb_truncate_log_wq;
442 atomic_t osb_tl_disable;
447 unsigned int truncated_clusters;
449 struct ocfs2_node_map osb_recovering_orphan_dirs;
450 unsigned int *osb_orphan_wipes;
451 wait_queue_head_t osb_wipe_event;
453 struct ocfs2_orphan_scan osb_orphan_scan;
456 spinlock_t osb_xattr_lock;
458 unsigned int osb_dx_mask;
459 u32 osb_dx_seed[4];
485 #define OCFS2_SB(sb) ((struct ocfs2_super *)(sb)->s_fs_info) argument