Lines Matching defs:ocfs2_super

295 struct ocfs2_super  struct
297 struct task_struct *commit_task;
298 struct super_block *sb;
299 struct inode *root_inode;
300 struct inode *sys_root_inode;
301 struct inode *global_system_inodes[NUM_GLOBAL_SYSTEM_INODES];
302 struct inode **local_system_inodes;
304 struct ocfs2_slot_info *slot_info;
306 u32 *slot_recovery_generations;
308 spinlock_t node_map_lock;
310 u64 root_blkno;
311 u64 system_dir_blkno;
312 u64 bitmap_blkno;
313 u32 bitmap_cpg;
314 char *uuid_str;
315 u32 uuid_hash;
316 u8 *vol_label;
317 u64 first_cluster_group_blkno;
318 u32 fs_generation;
320 u32 s_feature_compat;
321 u32 s_feature_incompat;
322 u32 s_feature_ro_compat;
327 spinlock_t osb_lock;
328 u32 s_next_generation;
329 unsigned long osb_flags;
330 u16 s_inode_steal_slot;
331 u16 s_meta_steal_slot;
332 atomic_t s_num_inodes_stolen;
333 atomic_t s_num_meta_stolen;
335 unsigned long s_mount_opt;
336 unsigned int s_atime_quantum;
338 unsigned int max_slots;
339 unsigned int node_num;
340 int slot_num;
341 int preferred_slot;
342 int s_sectsize_bits;
343 int s_clustersize;
344 int s_clustersize_bits;
345 unsigned int s_xattr_inline_size;
347 atomic_t vol_state;
348 struct mutex recovery_lock;
349 struct ocfs2_recovery_map *recovery_map;
350 struct ocfs2_replay_map *replay_map;
351 struct task_struct *recovery_thread_task;
352 int disable_recovery;
353 wait_queue_head_t checkpoint_event;
354 struct ocfs2_journal *journal;
355 unsigned long osb_commit_interval;
357 struct delayed_work la_enable_wq;
363 unsigned int local_alloc_bits;
364 unsigned int local_alloc_default_bits;
367 unsigned int osb_clusters_at_boot;
369 enum ocfs2_local_alloc_state local_alloc_state; /* protected
372 struct buffer_head *local_alloc_bh;
374 u64 la_last_gd;
376 struct ocfs2_reservation_map osb_la_resmap;
378 unsigned int osb_resv_level;
379 unsigned int osb_dir_resv_level;
383 struct ocfs2_dinode *local_alloc_copy;
384 struct ocfs2_quota_recovery *quota_rec;
386 struct ocfs2_blockcheck_stats osb_ecc_stats;
387 struct ocfs2_alloc_stats alloc_stats;
388 char dev_str[20]; /* "major,minor" of the device */
390 u8 osb_stackflags;
392 char osb_cluster_stack[OCFS2_STACK_LABEL_LEN + 1];
393 char osb_cluster_name[OCFS2_CLUSTER_NAME_LEN + 1];
394 struct ocfs2_cluster_connection *cconn;
395 struct ocfs2_lock_res osb_super_lockres;
396 struct ocfs2_lock_res osb_rename_lockres;
397 struct ocfs2_lock_res osb_nfs_sync_lockres;
398 struct rw_semaphore nfs_sync_rwlock;
399 struct ocfs2_lock_res osb_trim_fs_lockres;
400 struct mutex obs_trim_fs_mutex;
401 struct ocfs2_dlm_debug *osb_dlm_debug;
403 struct dentry *osb_debug_root;
405 wait_queue_head_t recovery_event;
407 spinlock_t dc_task_lock;
408 struct task_struct *dc_task;
409 wait_queue_head_t dc_event;
410 unsigned long dc_wake_sequence;
411 unsigned long dc_work_sequence;
419 struct list_head blocked_lock_list;
420 unsigned long blocked_lock_count;
423 struct llist_head dquot_drop_list;
424 struct work_struct dquot_drop_work;
426 wait_queue_head_t osb_mount_event;
429 struct inode *osb_tl_inode;
430 struct buffer_head *osb_tl_bh;
431 struct delayed_work osb_truncate_log_wq;
432 atomic_t osb_tl_disable;
437 unsigned int truncated_clusters;
439 struct ocfs2_node_map osb_recovering_orphan_dirs;
440 unsigned int *osb_orphan_wipes;
441 wait_queue_head_t osb_wipe_event;
443 struct ocfs2_orphan_scan osb_orphan_scan;
446 spinlock_t osb_xattr_lock;
448 unsigned int osb_dx_mask;
449 u32 osb_dx_seed[4];
475 #define OCFS2_SB(sb) ((struct ocfs2_super *)(sb)->s_fs_info) argument