blob: 9a67a5954126cf6552bb5514583aeb3446dd08d3 [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Steven Whitehouse3a8a9a12006-05-18 15:09:15 -04003 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00004 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
7 * of the GNU General Public License v.2.
8 */
9
10#ifndef __INCORE_DOT_H__
11#define __INCORE_DOT_H__
12
13#define DIO_FORCE 0x00000001
14#define DIO_CLEAN 0x00000002
15#define DIO_DIRTY 0x00000004
16#define DIO_START 0x00000008
17#define DIO_WAIT 0x00000010
18#define DIO_METADATA 0x00000020
19#define DIO_DATA 0x00000040
20#define DIO_RELEASE 0x00000080
21#define DIO_ALL 0x00000100
22
23struct gfs2_log_operations;
24struct gfs2_log_element;
25struct gfs2_bitmap;
26struct gfs2_rgrpd;
27struct gfs2_bufdata;
David Teiglandb3b94fa2006-01-16 16:50:04 +000028struct gfs2_glock_operations;
29struct gfs2_holder;
30struct gfs2_glock;
31struct gfs2_alloc;
32struct gfs2_inode;
33struct gfs2_file;
34struct gfs2_revoke;
35struct gfs2_revoke_replay;
David Teiglandb3b94fa2006-01-16 16:50:04 +000036struct gfs2_quota_data;
37struct gfs2_log_buf;
38struct gfs2_trans;
39struct gfs2_ail;
40struct gfs2_jdesc;
41struct gfs2_args;
42struct gfs2_tune;
43struct gfs2_gl_hash_bucket;
44struct gfs2_sbd;
45
46typedef void (*gfs2_glop_bh_t) (struct gfs2_glock *gl, unsigned int ret);
47
48/*
49 * Structure of operations that are associated with each
50 * type of element in the log.
51 */
52
53struct gfs2_log_operations {
54 void (*lo_add) (struct gfs2_sbd *sdp, struct gfs2_log_element *le);
55 void (*lo_incore_commit) (struct gfs2_sbd *sdp, struct gfs2_trans *tr);
56 void (*lo_before_commit) (struct gfs2_sbd *sdp);
57 void (*lo_after_commit) (struct gfs2_sbd *sdp, struct gfs2_ail *ai);
58 void (*lo_before_scan) (struct gfs2_jdesc *jd,
59 struct gfs2_log_header *head, int pass);
60 int (*lo_scan_elements) (struct gfs2_jdesc *jd, unsigned int start,
61 struct gfs2_log_descriptor *ld, __be64 *ptr,
62 int pass);
63 void (*lo_after_scan) (struct gfs2_jdesc *jd, int error, int pass);
Steven Whitehouseb09e5932006-04-07 11:17:32 -040064 const char *lo_name;
David Teiglandb3b94fa2006-01-16 16:50:04 +000065};
66
67struct gfs2_log_element {
68 struct list_head le_list;
Steven Whitehouseb09e5932006-04-07 11:17:32 -040069 const struct gfs2_log_operations *le_ops;
David Teiglandb3b94fa2006-01-16 16:50:04 +000070};
71
72struct gfs2_bitmap {
73 struct buffer_head *bi_bh;
74 char *bi_clone;
75 uint32_t bi_offset;
76 uint32_t bi_start;
77 uint32_t bi_len;
78};
79
80struct gfs2_rgrpd {
81 struct list_head rd_list; /* Link with superblock */
82 struct list_head rd_list_mru;
83 struct list_head rd_recent; /* Recently used rgrps */
84 struct gfs2_glock *rd_gl; /* Glock for this rgrp */
85 struct gfs2_rindex rd_ri;
86 struct gfs2_rgrp rd_rg;
87 uint64_t rd_rg_vn;
88 struct gfs2_bitmap *rd_bits;
89 unsigned int rd_bh_count;
Steven Whitehousef55ab262006-02-21 12:51:39 +000090 struct mutex rd_mutex;
David Teiglandb3b94fa2006-01-16 16:50:04 +000091 uint32_t rd_free_clone;
92 struct gfs2_log_element rd_le;
93 uint32_t rd_last_alloc_data;
94 uint32_t rd_last_alloc_meta;
95 struct gfs2_sbd *rd_sbd;
96};
97
98enum gfs2_state_bits {
99 BH_Pinned = BH_PrivateStart,
Steven Whitehousef42faf42006-01-30 18:34:10 +0000100 BH_Escaped = BH_PrivateStart + 1,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000101};
102
103BUFFER_FNS(Pinned, pinned)
104TAS_BUFFER_FNS(Pinned, pinned)
Steven Whitehousef42faf42006-01-30 18:34:10 +0000105BUFFER_FNS(Escaped, escaped)
106TAS_BUFFER_FNS(Escaped, escaped)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000107
108struct gfs2_bufdata {
109 struct buffer_head *bd_bh;
110 struct gfs2_glock *bd_gl;
111
112 struct list_head bd_list_tr;
113 struct gfs2_log_element bd_le;
114
115 struct gfs2_ail *bd_ail;
116 struct list_head bd_ail_st_list;
117 struct list_head bd_ail_gl_list;
118};
119
David Teiglandb3b94fa2006-01-16 16:50:04 +0000120struct gfs2_glock_operations {
121 void (*go_xmote_th) (struct gfs2_glock * gl, unsigned int state,
122 int flags);
123 void (*go_xmote_bh) (struct gfs2_glock * gl);
124 void (*go_drop_th) (struct gfs2_glock * gl);
125 void (*go_drop_bh) (struct gfs2_glock * gl);
126 void (*go_sync) (struct gfs2_glock * gl, int flags);
127 void (*go_inval) (struct gfs2_glock * gl, int flags);
128 int (*go_demote_ok) (struct gfs2_glock * gl);
129 int (*go_lock) (struct gfs2_holder * gh);
130 void (*go_unlock) (struct gfs2_holder * gh);
131 void (*go_callback) (struct gfs2_glock * gl, unsigned int state);
132 void (*go_greedy) (struct gfs2_glock * gl);
133 int go_type;
134};
135
136enum {
137 /* Actions */
138 HIF_MUTEX = 0,
139 HIF_PROMOTE = 1,
140 HIF_DEMOTE = 2,
141 HIF_GREEDY = 3,
142
143 /* States */
144 HIF_ALLOCED = 4,
145 HIF_DEALLOC = 5,
146 HIF_HOLDER = 6,
147 HIF_FIRST = 7,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000148 HIF_ABORTED = 9,
149};
150
151struct gfs2_holder {
152 struct list_head gh_list;
153
154 struct gfs2_glock *gh_gl;
155 struct task_struct *gh_owner;
156 unsigned int gh_state;
Steven Whitehousefe1bded2006-04-18 10:09:15 -0400157 unsigned gh_flags;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000158
159 int gh_error;
Steven Whitehouse6b61b072006-06-06 14:49:39 -0400160 unsigned gh_iflags;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000161 struct completion gh_wait;
Steven Whitehoused0dc80d2006-03-29 14:36:49 -0500162 unsigned long gh_ip;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000163};
164
165enum {
166 GLF_PLUG = 0,
167 GLF_LOCK = 1,
168 GLF_STICKY = 2,
169 GLF_PREFETCH = 3,
170 GLF_SYNC = 4,
171 GLF_DIRTY = 5,
172 GLF_SKIP_WAITERS2 = 6,
173 GLF_GREEDY = 7,
174};
175
176struct gfs2_glock {
177 struct list_head gl_list;
178 unsigned long gl_flags; /* GLF_... */
179 struct lm_lockname gl_name;
180 struct kref gl_ref;
181
182 spinlock_t gl_spin;
183
184 unsigned int gl_state;
Steven Whitehouse320dd102006-05-18 16:25:27 -0400185 struct task_struct *gl_owner;
186 unsigned long gl_ip;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000187 struct list_head gl_holders;
188 struct list_head gl_waiters1; /* HIF_MUTEX */
189 struct list_head gl_waiters2; /* HIF_DEMOTE, HIF_GREEDY */
190 struct list_head gl_waiters3; /* HIF_PROMOTE */
191
192 struct gfs2_glock_operations *gl_ops;
193
194 struct gfs2_holder *gl_req_gh;
195 gfs2_glop_bh_t gl_req_bh;
196
197 lm_lock_t *gl_lock;
198 char *gl_lvb;
199 atomic_t gl_lvb_count;
200
201 uint64_t gl_vn;
202 unsigned long gl_stamp;
203 void *gl_object;
204
205 struct gfs2_gl_hash_bucket *gl_bucket;
206 struct list_head gl_reclaim;
207
208 struct gfs2_sbd *gl_sbd;
209
210 struct inode *gl_aspace;
211 struct gfs2_log_element gl_le;
212 struct list_head gl_ail_list;
213 atomic_t gl_ail_count;
214};
215
216struct gfs2_alloc {
217 /* Quota stuff */
218
David Teiglandb3b94fa2006-01-16 16:50:04 +0000219 struct gfs2_quota_data *al_qd[4];
220 struct gfs2_holder al_qd_ghs[4];
Steven Whitehouse6b61b072006-06-06 14:49:39 -0400221 unsigned int al_qd_num;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000222
Steven Whitehouse6b61b072006-06-06 14:49:39 -0400223 u32 al_requested; /* Filled in by caller of gfs2_inplace_reserve() */
224 u32 al_alloced; /* Filled in by gfs2_alloc_*() */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000225
226 /* Filled in by gfs2_inplace_reserve() */
227
David Teiglandb3b94fa2006-01-16 16:50:04 +0000228 unsigned int al_line;
Steven Whitehouse6b61b072006-06-06 14:49:39 -0400229 char *al_file;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000230 struct gfs2_holder al_ri_gh;
231 struct gfs2_holder al_rgd_gh;
232 struct gfs2_rgrpd *al_rgd;
233
David Teiglandb3b94fa2006-01-16 16:50:04 +0000234};
235
236enum {
237 GIF_MIN_INIT = 0,
238 GIF_QD_LOCKED = 1,
239 GIF_PAGED = 2,
240 GIF_SW_PAGED = 3,
241};
242
243struct gfs2_inode {
Steven Whitehouse320dd102006-05-18 16:25:27 -0400244 struct inode i_inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000245 struct gfs2_inum i_num;
246
David Teiglandb3b94fa2006-01-16 16:50:04 +0000247 unsigned long i_flags; /* GIF_... */
248
249 uint64_t i_vn;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400250 struct gfs2_dinode i_di; /* To be replaced by ref to block */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000251
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400252 struct gfs2_glock *i_gl; /* Move into i_gh? */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000253 struct gfs2_holder i_iopen_gh;
Steven Whitehousef42faf42006-01-30 18:34:10 +0000254 struct gfs2_holder i_gh; /* for prepare/commit_write only */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000255 struct gfs2_alloc i_alloc;
256 uint64_t i_last_rg_alloc;
257
258 spinlock_t i_spin;
259 struct rw_semaphore i_rw_mutex;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000260 unsigned int i_greedy;
261 unsigned long i_last_pfault;
262
263 struct buffer_head *i_cache[GFS2_MAX_META_HEIGHT];
264};
265
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400266/*
267 * Since i_inode is the first element of struct gfs2_inode,
268 * this is effectively a cast.
269 */
Steven Whitehouse320dd102006-05-18 16:25:27 -0400270static inline struct gfs2_inode *GFS2_I(struct inode *inode)
271{
272 return container_of(inode, struct gfs2_inode, i_inode);
273}
274
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400275/* To be removed? */
276static inline struct gfs2_sbd *GFS2_SB(struct inode *inode)
277{
278 return inode->i_sb->s_fs_info;
279}
280
David Teiglandb3b94fa2006-01-16 16:50:04 +0000281enum {
282 GFF_DID_DIRECT_ALLOC = 0,
283};
284
285struct gfs2_file {
286 unsigned long f_flags; /* GFF_... */
Steven Whitehousef55ab262006-02-21 12:51:39 +0000287 struct mutex f_fl_mutex;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000288 struct gfs2_holder f_fl_gh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000289};
290
291struct gfs2_revoke {
292 struct gfs2_log_element rv_le;
293 uint64_t rv_blkno;
294};
295
296struct gfs2_revoke_replay {
297 struct list_head rr_list;
298 uint64_t rr_blkno;
299 unsigned int rr_where;
300};
301
302enum {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000303 QDF_USER = 0,
304 QDF_CHANGE = 1,
305 QDF_LOCKED = 2,
306};
307
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500308struct gfs2_quota_lvb {
309 uint32_t qb_magic;
310 uint32_t __pad;
311 uint64_t qb_limit; /* Hard limit of # blocks to alloc */
312 uint64_t qb_warn; /* Warn user when alloc is above this # */
313 int64_t qb_value; /* Current # blocks allocated */
314};
315
David Teiglandb3b94fa2006-01-16 16:50:04 +0000316struct gfs2_quota_data {
317 struct list_head qd_list;
318 unsigned int qd_count;
319
320 uint32_t qd_id;
321 unsigned long qd_flags; /* QDF_... */
322
323 int64_t qd_change;
324 int64_t qd_change_sync;
325
326 unsigned int qd_slot;
327 unsigned int qd_slot_count;
328
329 struct buffer_head *qd_bh;
330 struct gfs2_quota_change *qd_bh_qc;
331 unsigned int qd_bh_count;
332
333 struct gfs2_glock *qd_gl;
334 struct gfs2_quota_lvb qd_qb;
335
336 uint64_t qd_sync_gen;
337 unsigned long qd_last_warn;
338 unsigned long qd_last_touched;
339};
340
341struct gfs2_log_buf {
342 struct list_head lb_list;
343 struct buffer_head *lb_bh;
344 struct buffer_head *lb_real;
345};
346
347struct gfs2_trans {
Steven Whitehoused0dc80d2006-03-29 14:36:49 -0500348 unsigned long tr_ip;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000349
350 unsigned int tr_blocks;
351 unsigned int tr_revokes;
352 unsigned int tr_reserved;
353
Steven Whitehousee317ffc2006-03-01 11:39:37 -0500354 struct gfs2_holder tr_t_gh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000355
356 int tr_touched;
357
358 unsigned int tr_num_buf;
359 unsigned int tr_num_buf_new;
360 unsigned int tr_num_buf_rm;
361 struct list_head tr_list_buf;
362
363 unsigned int tr_num_revoke;
364 unsigned int tr_num_revoke_rm;
365};
366
367struct gfs2_ail {
368 struct list_head ai_list;
369
370 unsigned int ai_first;
371 struct list_head ai_ail1_list;
372 struct list_head ai_ail2_list;
373
374 uint64_t ai_sync_gen;
375};
376
377struct gfs2_jdesc {
378 struct list_head jd_list;
379
Steven Whitehouse7359a192006-02-13 12:27:43 +0000380 struct inode *jd_inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000381 unsigned int jd_jid;
382 int jd_dirty;
383
384 unsigned int jd_blocks;
385};
386
387#define GFS2_GLOCKD_DEFAULT 1
388#define GFS2_GLOCKD_MAX 16
389
390#define GFS2_QUOTA_DEFAULT GFS2_QUOTA_OFF
391#define GFS2_QUOTA_OFF 0
392#define GFS2_QUOTA_ACCOUNT 1
393#define GFS2_QUOTA_ON 2
394
395#define GFS2_DATA_DEFAULT GFS2_DATA_ORDERED
396#define GFS2_DATA_WRITEBACK 1
397#define GFS2_DATA_ORDERED 2
398
399struct gfs2_args {
400 char ar_lockproto[GFS2_LOCKNAME_LEN]; /* Name of the Lock Protocol */
401 char ar_locktable[GFS2_LOCKNAME_LEN]; /* Name of the Lock Table */
402 char ar_hostdata[GFS2_LOCKNAME_LEN]; /* Host specific data */
403 int ar_spectator; /* Don't get a journal because we're always RO */
404 int ar_ignore_local_fs; /* Don't optimize even if local_fs is 1 */
405 int ar_localflocks; /* Let the VFS do flock|fcntl locks for us */
406 int ar_localcaching; /* Local-style caching (dangerous on multihost) */
407 int ar_debug; /* Oops on errors instead of trying to be graceful */
408 int ar_upgrade; /* Upgrade ondisk/multihost format */
409 unsigned int ar_num_glockd; /* Number of glockd threads */
410 int ar_posix_acl; /* Enable posix acls */
411 int ar_quota; /* off/account/on */
412 int ar_suiddir; /* suiddir support */
413 int ar_data; /* ordered/writeback */
414};
415
416struct gfs2_tune {
417 spinlock_t gt_spin;
418
419 unsigned int gt_ilimit;
420 unsigned int gt_ilimit_tries;
421 unsigned int gt_ilimit_min;
422 unsigned int gt_demote_secs; /* Cache retention for unheld glock */
423 unsigned int gt_incore_log_blocks;
424 unsigned int gt_log_flush_secs;
425 unsigned int gt_jindex_refresh_secs; /* Check for new journal index */
426
427 unsigned int gt_scand_secs;
428 unsigned int gt_recoverd_secs;
429 unsigned int gt_logd_secs;
430 unsigned int gt_quotad_secs;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000431
432 unsigned int gt_quota_simul_sync; /* Max quotavals to sync at once */
433 unsigned int gt_quota_warn_period; /* Secs between quota warn msgs */
434 unsigned int gt_quota_scale_num; /* Numerator */
435 unsigned int gt_quota_scale_den; /* Denominator */
436 unsigned int gt_quota_cache_secs;
437 unsigned int gt_quota_quantum; /* Secs between syncs to quota file */
438 unsigned int gt_atime_quantum; /* Min secs between atime updates */
439 unsigned int gt_new_files_jdata;
440 unsigned int gt_new_files_directio;
441 unsigned int gt_max_atomic_write; /* Split big writes into this size */
442 unsigned int gt_max_readahead; /* Max bytes to read-ahead from disk */
443 unsigned int gt_lockdump_size;
444 unsigned int gt_stall_secs; /* Detects trouble! */
445 unsigned int gt_complain_secs;
446 unsigned int gt_reclaim_limit; /* Max num of glocks in reclaim list */
447 unsigned int gt_entries_per_readdir;
448 unsigned int gt_prefetch_secs; /* Usage window for prefetched glocks */
449 unsigned int gt_greedy_default;
450 unsigned int gt_greedy_quantum;
451 unsigned int gt_greedy_max;
452 unsigned int gt_statfs_quantum;
453 unsigned int gt_statfs_slow;
454};
455
456struct gfs2_gl_hash_bucket {
457 rwlock_t hb_lock;
458 struct list_head hb_list;
459};
460
461enum {
462 SDF_JOURNAL_CHECKED = 0,
463 SDF_JOURNAL_LIVE = 1,
464 SDF_SHUTDOWN = 2,
465 SDF_NOATIME = 3,
466};
467
468#define GFS2_GL_HASH_SHIFT 13
469#define GFS2_GL_HASH_SIZE (1 << GFS2_GL_HASH_SHIFT)
470#define GFS2_GL_HASH_MASK (GFS2_GL_HASH_SIZE - 1)
471#define GFS2_FSNAME_LEN 256
472
473struct gfs2_sbd {
474 struct super_block *sd_vfs;
475 struct kobject sd_kobj;
476 unsigned long sd_flags; /* SDF_... */
477 struct gfs2_sb sd_sb;
478
479 /* Constants computed on mount */
480
481 uint32_t sd_fsb2bb;
482 uint32_t sd_fsb2bb_shift;
483 uint32_t sd_diptrs; /* Number of pointers in a dinode */
484 uint32_t sd_inptrs; /* Number of pointers in a indirect block */
485 uint32_t sd_jbsize; /* Size of a journaled data block */
486 uint32_t sd_hash_bsize; /* sizeof(exhash block) */
487 uint32_t sd_hash_bsize_shift;
488 uint32_t sd_hash_ptrs; /* Number of pointers in a hash block */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000489 uint32_t sd_qc_per_block;
490 uint32_t sd_max_dirres; /* Max blocks needed to add a directory entry */
491 uint32_t sd_max_height; /* Max height of a file's metadata tree */
492 uint64_t sd_heightsize[GFS2_MAX_META_HEIGHT];
493 uint32_t sd_max_jheight; /* Max height of journaled file's meta tree */
494 uint64_t sd_jheightsize[GFS2_MAX_META_HEIGHT];
495
496 struct gfs2_args sd_args; /* Mount arguments */
497 struct gfs2_tune sd_tune; /* Filesystem tuning structure */
498
499 /* Lock Stuff */
500
501 struct lm_lockstruct sd_lockstruct;
502 struct gfs2_gl_hash_bucket sd_gl_hash[GFS2_GL_HASH_SIZE];
503 struct list_head sd_reclaim_list;
504 spinlock_t sd_reclaim_lock;
505 wait_queue_head_t sd_reclaim_wq;
506 atomic_t sd_reclaim_count;
507 struct gfs2_holder sd_live_gh;
508 struct gfs2_glock *sd_rename_gl;
509 struct gfs2_glock *sd_trans_gl;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000510 struct mutex sd_invalidate_inodes_mutex;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000511
512 /* Inode Stuff */
513
Steven Whitehousef42faf42006-01-30 18:34:10 +0000514 struct inode *sd_master_dir;
515 struct inode *sd_jindex;
516 struct inode *sd_inum_inode;
517 struct inode *sd_statfs_inode;
518 struct inode *sd_ir_inode;
519 struct inode *sd_sc_inode;
Steven Whitehousef42faf42006-01-30 18:34:10 +0000520 struct inode *sd_qc_inode;
521 struct inode *sd_rindex;
522 struct inode *sd_quota_inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000523
524 /* Inum stuff */
525
Steven Whitehousef55ab262006-02-21 12:51:39 +0000526 struct mutex sd_inum_mutex;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000527
528 /* StatFS stuff */
529
530 spinlock_t sd_statfs_spin;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000531 struct mutex sd_statfs_mutex;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000532 struct gfs2_statfs_change sd_statfs_master;
533 struct gfs2_statfs_change sd_statfs_local;
534 unsigned long sd_statfs_sync_time;
535
536 /* Resource group stuff */
537
538 uint64_t sd_rindex_vn;
539 spinlock_t sd_rindex_spin;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000540 struct mutex sd_rindex_mutex;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000541 struct list_head sd_rindex_list;
542 struct list_head sd_rindex_mru_list;
543 struct list_head sd_rindex_recent_list;
544 struct gfs2_rgrpd *sd_rindex_forward;
545 unsigned int sd_rgrps;
546
547 /* Journal index stuff */
548
549 struct list_head sd_jindex_list;
550 spinlock_t sd_jindex_spin;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000551 struct mutex sd_jindex_mutex;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000552 unsigned int sd_journals;
553 unsigned long sd_jindex_refresh_time;
554
555 struct gfs2_jdesc *sd_jdesc;
556 struct gfs2_holder sd_journal_gh;
557 struct gfs2_holder sd_jinode_gh;
558
559 struct gfs2_holder sd_ir_gh;
560 struct gfs2_holder sd_sc_gh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000561 struct gfs2_holder sd_qc_gh;
562
563 /* Daemon stuff */
564
565 struct task_struct *sd_scand_process;
566 struct task_struct *sd_recoverd_process;
567 struct task_struct *sd_logd_process;
568 struct task_struct *sd_quotad_process;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000569 struct task_struct *sd_glockd_process[GFS2_GLOCKD_MAX];
570 unsigned int sd_glockd_num;
571
David Teiglandb3b94fa2006-01-16 16:50:04 +0000572 /* Quota stuff */
573
574 struct list_head sd_quota_list;
575 atomic_t sd_quota_count;
576 spinlock_t sd_quota_spin;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000577 struct mutex sd_quota_mutex;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000578
579 unsigned int sd_quota_slots;
580 unsigned int sd_quota_chunks;
581 unsigned char **sd_quota_bitmap;
582
583 uint64_t sd_quota_sync_gen;
584 unsigned long sd_quota_sync_time;
585
586 /* Log stuff */
587
588 spinlock_t sd_log_lock;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000589
590 unsigned int sd_log_blks_reserved;
591 unsigned int sd_log_commited_buf;
592 unsigned int sd_log_commited_revoke;
593
594 unsigned int sd_log_num_gl;
595 unsigned int sd_log_num_buf;
596 unsigned int sd_log_num_revoke;
597 unsigned int sd_log_num_rg;
598 unsigned int sd_log_num_databuf;
Steven Whitehousef42faf42006-01-30 18:34:10 +0000599 unsigned int sd_log_num_jdata;
Steven Whitehouseb09e5932006-04-07 11:17:32 -0400600 unsigned int sd_log_num_hdrs;
Steven Whitehousef42faf42006-01-30 18:34:10 +0000601
David Teiglandb3b94fa2006-01-16 16:50:04 +0000602 struct list_head sd_log_le_gl;
603 struct list_head sd_log_le_buf;
604 struct list_head sd_log_le_revoke;
605 struct list_head sd_log_le_rg;
606 struct list_head sd_log_le_databuf;
607
608 unsigned int sd_log_blks_free;
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500609 struct mutex sd_log_reserve_mutex;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000610
611 uint64_t sd_log_sequence;
612 unsigned int sd_log_head;
613 unsigned int sd_log_tail;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000614 int sd_log_idle;
615
616 unsigned long sd_log_flush_time;
Steven Whitehouse484adff2006-03-29 09:12:12 -0500617 struct rw_semaphore sd_log_flush_lock;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000618 struct list_head sd_log_flush_list;
619
620 unsigned int sd_log_flush_head;
621 uint64_t sd_log_flush_wrapped;
622
623 struct list_head sd_ail1_list;
624 struct list_head sd_ail2_list;
625 uint64_t sd_ail_sync_gen;
626
627 /* Replay stuff */
628
629 struct list_head sd_revoke_list;
630 unsigned int sd_replay_tail;
631
632 unsigned int sd_found_blocks;
633 unsigned int sd_found_revokes;
634 unsigned int sd_replayed_blocks;
635
636 /* For quiescing the filesystem */
637
638 struct gfs2_holder sd_freeze_gh;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000639 struct mutex sd_freeze_lock;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000640 unsigned int sd_freeze_count;
641
642 /* Counters */
643
644 atomic_t sd_glock_count;
645 atomic_t sd_glock_held_count;
646 atomic_t sd_inode_count;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000647 atomic_t sd_reclaimed;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000648
649 char sd_fsname[GFS2_FSNAME_LEN];
650 char sd_table_name[GFS2_FSNAME_LEN];
651 char sd_proto_name[GFS2_FSNAME_LEN];
652
653 /* Debugging crud */
654
655 unsigned long sd_last_warning;
656};
657
658#endif /* __INCORE_DOT_H__ */
659