• Home
  • Raw
  • Download

Lines Matching defs:ocfs2_super

214 struct ocfs2_super  struct
216 struct task_struct *commit_task;
217 struct super_block *sb;
218 struct inode *root_inode;
219 struct inode *sys_root_inode;
220 struct inode *system_inodes[NUM_SYSTEM_INODES];
222 struct ocfs2_slot_info *slot_info;
224 u32 *slot_recovery_generations;
226 spinlock_t node_map_lock;
228 u64 root_blkno;
229 u64 system_dir_blkno;
230 u64 bitmap_blkno;
231 u32 bitmap_cpg;
232 u8 *uuid;
233 char *uuid_str;
234 u32 uuid_hash;
235 u8 *vol_label;
236 u64 first_cluster_group_blkno;
237 u32 fs_generation;
239 u32 s_feature_compat;
240 u32 s_feature_incompat;
241 u32 s_feature_ro_compat;
246 spinlock_t osb_lock;
247 u32 s_next_generation;
248 unsigned long osb_flags;
249 s16 s_inode_steal_slot;
250 atomic_t s_num_inodes_stolen;
252 unsigned long s_mount_opt;
253 unsigned int s_atime_quantum;
255 unsigned int max_slots;
256 unsigned int node_num;
257 int slot_num;
258 int preferred_slot;
259 int s_sectsize_bits;
260 int s_clustersize;
261 int s_clustersize_bits;
262 unsigned int s_xattr_inline_size;
264 atomic_t vol_state;
265 struct mutex recovery_lock;
266 struct ocfs2_recovery_map *recovery_map;
267 struct task_struct *recovery_thread_task;
268 int disable_recovery;
269 wait_queue_head_t checkpoint_event;
270 atomic_t needs_checkpoint;
271 struct ocfs2_journal *journal;
272 unsigned long osb_commit_interval;
274 struct delayed_work la_enable_wq;
280 unsigned int local_alloc_bits;
281 unsigned int local_alloc_default_bits;
283 enum ocfs2_local_alloc_state local_alloc_state; /* protected
286 struct buffer_head *local_alloc_bh;
288 u64 la_last_gd;
291 struct dentry *local_alloc_debug;
292 char *local_alloc_debug_buf;
297 int dirty;
298 struct ocfs2_dinode *local_alloc_copy;
299 struct ocfs2_quota_recovery *quota_rec;
301 struct ocfs2_alloc_stats alloc_stats;
302 char dev_str[20]; /* "major,minor" of the device */
304 char osb_cluster_stack[OCFS2_STACK_LABEL_LEN + 1];
305 struct ocfs2_cluster_connection *cconn;
306 struct ocfs2_lock_res osb_super_lockres;
307 struct ocfs2_lock_res osb_rename_lockres;
308 struct ocfs2_dlm_debug *osb_dlm_debug;
310 struct dentry *osb_debug_root;
312 wait_queue_head_t recovery_event;
314 spinlock_t dc_task_lock;
315 struct task_struct *dc_task;
316 wait_queue_head_t dc_event;
317 unsigned long dc_wake_sequence;
318 unsigned long dc_work_sequence;
349 #define OCFS2_SB(sb) ((struct ocfs2_super *)(sb)->s_fs_info) argument