]> bbs.cooldavid.org Git - net-next-2.6.git/blame - fs/gfs2/incore.h
[GFS2] Update locking in log.c
[net-next-2.6.git] / fs / gfs2 / incore.h
CommitLineData
b3b94faa
DT
1/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
3 * Copyright (C) 2004-2005 Red Hat, Inc. All rights reserved.
4 *
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;
b3b94faa
DT
28struct 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;
36struct gfs2_unlinked;
37struct gfs2_quota_data;
38struct gfs2_log_buf;
39struct gfs2_trans;
40struct gfs2_ail;
41struct gfs2_jdesc;
42struct gfs2_args;
43struct gfs2_tune;
44struct gfs2_gl_hash_bucket;
45struct gfs2_sbd;
46
47typedef void (*gfs2_glop_bh_t) (struct gfs2_glock *gl, unsigned int ret);
48
49/*
50 * Structure of operations that are associated with each
51 * type of element in the log.
52 */
53
54struct gfs2_log_operations {
55 void (*lo_add) (struct gfs2_sbd *sdp, struct gfs2_log_element *le);
56 void (*lo_incore_commit) (struct gfs2_sbd *sdp, struct gfs2_trans *tr);
57 void (*lo_before_commit) (struct gfs2_sbd *sdp);
58 void (*lo_after_commit) (struct gfs2_sbd *sdp, struct gfs2_ail *ai);
59 void (*lo_before_scan) (struct gfs2_jdesc *jd,
60 struct gfs2_log_header *head, int pass);
61 int (*lo_scan_elements) (struct gfs2_jdesc *jd, unsigned int start,
62 struct gfs2_log_descriptor *ld, __be64 *ptr,
63 int pass);
64 void (*lo_after_scan) (struct gfs2_jdesc *jd, int error, int pass);
65 char *lo_name;
66};
67
68struct gfs2_log_element {
69 struct list_head le_list;
70 struct gfs2_log_operations *le_ops;
71};
72
73struct gfs2_bitmap {
74 struct buffer_head *bi_bh;
75 char *bi_clone;
76 uint32_t bi_offset;
77 uint32_t bi_start;
78 uint32_t bi_len;
79};
80
81struct gfs2_rgrpd {
82 struct list_head rd_list; /* Link with superblock */
83 struct list_head rd_list_mru;
84 struct list_head rd_recent; /* Recently used rgrps */
85 struct gfs2_glock *rd_gl; /* Glock for this rgrp */
86 struct gfs2_rindex rd_ri;
87 struct gfs2_rgrp rd_rg;
88 uint64_t rd_rg_vn;
89 struct gfs2_bitmap *rd_bits;
90 unsigned int rd_bh_count;
f55ab26a 91 struct mutex rd_mutex;
b3b94faa
DT
92 uint32_t rd_free_clone;
93 struct gfs2_log_element rd_le;
94 uint32_t rd_last_alloc_data;
95 uint32_t rd_last_alloc_meta;
96 struct gfs2_sbd *rd_sbd;
97};
98
99enum gfs2_state_bits {
100 BH_Pinned = BH_PrivateStart,
f42faf4f 101 BH_Escaped = BH_PrivateStart + 1,
b3b94faa
DT
102};
103
104BUFFER_FNS(Pinned, pinned)
105TAS_BUFFER_FNS(Pinned, pinned)
f42faf4f
SW
106BUFFER_FNS(Escaped, escaped)
107TAS_BUFFER_FNS(Escaped, escaped)
b3b94faa
DT
108
109struct gfs2_bufdata {
110 struct buffer_head *bd_bh;
111 struct gfs2_glock *bd_gl;
112
113 struct list_head bd_list_tr;
114 struct gfs2_log_element bd_le;
115
116 struct gfs2_ail *bd_ail;
117 struct list_head bd_ail_st_list;
118 struct list_head bd_ail_gl_list;
119};
120
b3b94faa
DT
121struct gfs2_glock_operations {
122 void (*go_xmote_th) (struct gfs2_glock * gl, unsigned int state,
123 int flags);
124 void (*go_xmote_bh) (struct gfs2_glock * gl);
125 void (*go_drop_th) (struct gfs2_glock * gl);
126 void (*go_drop_bh) (struct gfs2_glock * gl);
127 void (*go_sync) (struct gfs2_glock * gl, int flags);
128 void (*go_inval) (struct gfs2_glock * gl, int flags);
129 int (*go_demote_ok) (struct gfs2_glock * gl);
130 int (*go_lock) (struct gfs2_holder * gh);
131 void (*go_unlock) (struct gfs2_holder * gh);
132 void (*go_callback) (struct gfs2_glock * gl, unsigned int state);
133 void (*go_greedy) (struct gfs2_glock * gl);
134 int go_type;
135};
136
137enum {
138 /* Actions */
139 HIF_MUTEX = 0,
140 HIF_PROMOTE = 1,
141 HIF_DEMOTE = 2,
142 HIF_GREEDY = 3,
143
144 /* States */
145 HIF_ALLOCED = 4,
146 HIF_DEALLOC = 5,
147 HIF_HOLDER = 6,
148 HIF_FIRST = 7,
149 HIF_RECURSE = 8,
150 HIF_ABORTED = 9,
151};
152
153struct gfs2_holder {
154 struct list_head gh_list;
155
156 struct gfs2_glock *gh_gl;
157 struct task_struct *gh_owner;
158 unsigned int gh_state;
159 int gh_flags;
160
161 int gh_error;
162 unsigned long gh_iflags;
163 struct completion gh_wait;
164};
165
166enum {
167 GLF_PLUG = 0,
168 GLF_LOCK = 1,
169 GLF_STICKY = 2,
170 GLF_PREFETCH = 3,
171 GLF_SYNC = 4,
172 GLF_DIRTY = 5,
173 GLF_SKIP_WAITERS2 = 6,
174 GLF_GREEDY = 7,
175};
176
177struct gfs2_glock {
178 struct list_head gl_list;
179 unsigned long gl_flags; /* GLF_... */
180 struct lm_lockname gl_name;
181 struct kref gl_ref;
182
183 spinlock_t gl_spin;
184
185 unsigned int gl_state;
186 struct list_head gl_holders;
187 struct list_head gl_waiters1; /* HIF_MUTEX */
188 struct list_head gl_waiters2; /* HIF_DEMOTE, HIF_GREEDY */
189 struct list_head gl_waiters3; /* HIF_PROMOTE */
190
191 struct gfs2_glock_operations *gl_ops;
192
193 struct gfs2_holder *gl_req_gh;
194 gfs2_glop_bh_t gl_req_bh;
195
196 lm_lock_t *gl_lock;
197 char *gl_lvb;
198 atomic_t gl_lvb_count;
199
200 uint64_t gl_vn;
201 unsigned long gl_stamp;
202 void *gl_object;
203
204 struct gfs2_gl_hash_bucket *gl_bucket;
205 struct list_head gl_reclaim;
206
207 struct gfs2_sbd *gl_sbd;
208
209 struct inode *gl_aspace;
210 struct gfs2_log_element gl_le;
211 struct list_head gl_ail_list;
212 atomic_t gl_ail_count;
213};
214
215struct gfs2_alloc {
216 /* Quota stuff */
217
218 unsigned int al_qd_num;
219 struct gfs2_quota_data *al_qd[4];
220 struct gfs2_holder al_qd_ghs[4];
221
222 /* Filled in by the caller to gfs2_inplace_reserve() */
223
224 uint32_t al_requested;
225
226 /* Filled in by gfs2_inplace_reserve() */
227
228 char *al_file;
229 unsigned int al_line;
230 struct gfs2_holder al_ri_gh;
231 struct gfs2_holder al_rgd_gh;
232 struct gfs2_rgrpd *al_rgd;
233
234 /* Filled in by gfs2_alloc_*() */
235
236 uint32_t al_alloced;
237};
238
239enum {
240 GIF_MIN_INIT = 0,
241 GIF_QD_LOCKED = 1,
242 GIF_PAGED = 2,
243 GIF_SW_PAGED = 3,
244};
245
246struct gfs2_inode {
247 struct gfs2_inum i_num;
248
249 atomic_t i_count;
250 unsigned long i_flags; /* GIF_... */
251
252 uint64_t i_vn;
253 struct gfs2_dinode i_di;
254
255 struct gfs2_glock *i_gl;
256 struct gfs2_sbd *i_sbd;
257 struct inode *i_vnode;
258
259 struct gfs2_holder i_iopen_gh;
f42faf4f 260 struct gfs2_holder i_gh; /* for prepare/commit_write only */
b3b94faa
DT
261 struct gfs2_alloc i_alloc;
262 uint64_t i_last_rg_alloc;
263
264 spinlock_t i_spin;
265 struct rw_semaphore i_rw_mutex;
266
267 unsigned int i_greedy;
268 unsigned long i_last_pfault;
269
270 struct buffer_head *i_cache[GFS2_MAX_META_HEIGHT];
271};
272
273enum {
274 GFF_DID_DIRECT_ALLOC = 0,
275};
276
277struct gfs2_file {
278 unsigned long f_flags; /* GFF_... */
279
f55ab26a 280 struct mutex f_fl_mutex;
b3b94faa
DT
281 struct gfs2_holder f_fl_gh;
282
283 struct gfs2_inode *f_inode;
284 struct file *f_vfile;
285};
286
287struct gfs2_revoke {
288 struct gfs2_log_element rv_le;
289 uint64_t rv_blkno;
290};
291
292struct gfs2_revoke_replay {
293 struct list_head rr_list;
294 uint64_t rr_blkno;
295 unsigned int rr_where;
296};
297
298enum {
299 ULF_LOCKED = 0,
300};
301
302struct gfs2_unlinked {
303 struct list_head ul_list;
304 unsigned int ul_count;
305 struct gfs2_unlinked_tag ul_ut;
306 unsigned long ul_flags; /* ULF_... */
307 unsigned int ul_slot;
308};
309
310enum {
311 QDF_USER = 0,
312 QDF_CHANGE = 1,
313 QDF_LOCKED = 2,
314};
315
5c676f6d
SW
316struct gfs2_quota_lvb {
317 uint32_t qb_magic;
318 uint32_t __pad;
319 uint64_t qb_limit; /* Hard limit of # blocks to alloc */
320 uint64_t qb_warn; /* Warn user when alloc is above this # */
321 int64_t qb_value; /* Current # blocks allocated */
322};
323
b3b94faa
DT
324struct gfs2_quota_data {
325 struct list_head qd_list;
326 unsigned int qd_count;
327
328 uint32_t qd_id;
329 unsigned long qd_flags; /* QDF_... */
330
331 int64_t qd_change;
332 int64_t qd_change_sync;
333
334 unsigned int qd_slot;
335 unsigned int qd_slot_count;
336
337 struct buffer_head *qd_bh;
338 struct gfs2_quota_change *qd_bh_qc;
339 unsigned int qd_bh_count;
340
341 struct gfs2_glock *qd_gl;
342 struct gfs2_quota_lvb qd_qb;
343
344 uint64_t qd_sync_gen;
345 unsigned long qd_last_warn;
346 unsigned long qd_last_touched;
347};
348
349struct gfs2_log_buf {
350 struct list_head lb_list;
351 struct buffer_head *lb_bh;
352 struct buffer_head *lb_real;
353};
354
355struct gfs2_trans {
356 char *tr_file;
357 unsigned int tr_line;
358
359 unsigned int tr_blocks;
360 unsigned int tr_revokes;
361 unsigned int tr_reserved;
362
e317ffcb 363 struct gfs2_holder tr_t_gh;
b3b94faa
DT
364
365 int tr_touched;
366
367 unsigned int tr_num_buf;
368 unsigned int tr_num_buf_new;
369 unsigned int tr_num_buf_rm;
370 struct list_head tr_list_buf;
371
372 unsigned int tr_num_revoke;
373 unsigned int tr_num_revoke_rm;
374};
375
376struct gfs2_ail {
377 struct list_head ai_list;
378
379 unsigned int ai_first;
380 struct list_head ai_ail1_list;
381 struct list_head ai_ail2_list;
382
383 uint64_t ai_sync_gen;
384};
385
386struct gfs2_jdesc {
387 struct list_head jd_list;
388
7359a19c 389 struct inode *jd_inode;
b3b94faa
DT
390 unsigned int jd_jid;
391 int jd_dirty;
392
393 unsigned int jd_blocks;
394};
395
396#define GFS2_GLOCKD_DEFAULT 1
397#define GFS2_GLOCKD_MAX 16
398
399#define GFS2_QUOTA_DEFAULT GFS2_QUOTA_OFF
400#define GFS2_QUOTA_OFF 0
401#define GFS2_QUOTA_ACCOUNT 1
402#define GFS2_QUOTA_ON 2
403
404#define GFS2_DATA_DEFAULT GFS2_DATA_ORDERED
405#define GFS2_DATA_WRITEBACK 1
406#define GFS2_DATA_ORDERED 2
407
408struct gfs2_args {
409 char ar_lockproto[GFS2_LOCKNAME_LEN]; /* Name of the Lock Protocol */
410 char ar_locktable[GFS2_LOCKNAME_LEN]; /* Name of the Lock Table */
411 char ar_hostdata[GFS2_LOCKNAME_LEN]; /* Host specific data */
412 int ar_spectator; /* Don't get a journal because we're always RO */
413 int ar_ignore_local_fs; /* Don't optimize even if local_fs is 1 */
414 int ar_localflocks; /* Let the VFS do flock|fcntl locks for us */
415 int ar_localcaching; /* Local-style caching (dangerous on multihost) */
416 int ar_debug; /* Oops on errors instead of trying to be graceful */
417 int ar_upgrade; /* Upgrade ondisk/multihost format */
418 unsigned int ar_num_glockd; /* Number of glockd threads */
419 int ar_posix_acl; /* Enable posix acls */
420 int ar_quota; /* off/account/on */
421 int ar_suiddir; /* suiddir support */
422 int ar_data; /* ordered/writeback */
423};
424
425struct gfs2_tune {
426 spinlock_t gt_spin;
427
428 unsigned int gt_ilimit;
429 unsigned int gt_ilimit_tries;
430 unsigned int gt_ilimit_min;
431 unsigned int gt_demote_secs; /* Cache retention for unheld glock */
432 unsigned int gt_incore_log_blocks;
433 unsigned int gt_log_flush_secs;
434 unsigned int gt_jindex_refresh_secs; /* Check for new journal index */
435
436 unsigned int gt_scand_secs;
437 unsigned int gt_recoverd_secs;
438 unsigned int gt_logd_secs;
439 unsigned int gt_quotad_secs;
440 unsigned int gt_inoded_secs;
441
442 unsigned int gt_quota_simul_sync; /* Max quotavals to sync at once */
443 unsigned int gt_quota_warn_period; /* Secs between quota warn msgs */
444 unsigned int gt_quota_scale_num; /* Numerator */
445 unsigned int gt_quota_scale_den; /* Denominator */
446 unsigned int gt_quota_cache_secs;
447 unsigned int gt_quota_quantum; /* Secs between syncs to quota file */
448 unsigned int gt_atime_quantum; /* Min secs between atime updates */
449 unsigned int gt_new_files_jdata;
450 unsigned int gt_new_files_directio;
451 unsigned int gt_max_atomic_write; /* Split big writes into this size */
452 unsigned int gt_max_readahead; /* Max bytes to read-ahead from disk */
453 unsigned int gt_lockdump_size;
454 unsigned int gt_stall_secs; /* Detects trouble! */
455 unsigned int gt_complain_secs;
456 unsigned int gt_reclaim_limit; /* Max num of glocks in reclaim list */
457 unsigned int gt_entries_per_readdir;
458 unsigned int gt_prefetch_secs; /* Usage window for prefetched glocks */
459 unsigned int gt_greedy_default;
460 unsigned int gt_greedy_quantum;
461 unsigned int gt_greedy_max;
462 unsigned int gt_statfs_quantum;
463 unsigned int gt_statfs_slow;
464};
465
466struct gfs2_gl_hash_bucket {
467 rwlock_t hb_lock;
468 struct list_head hb_list;
469};
470
471enum {
472 SDF_JOURNAL_CHECKED = 0,
473 SDF_JOURNAL_LIVE = 1,
474 SDF_SHUTDOWN = 2,
475 SDF_NOATIME = 3,
476};
477
478#define GFS2_GL_HASH_SHIFT 13
479#define GFS2_GL_HASH_SIZE (1 << GFS2_GL_HASH_SHIFT)
480#define GFS2_GL_HASH_MASK (GFS2_GL_HASH_SIZE - 1)
481#define GFS2_FSNAME_LEN 256
482
483struct gfs2_sbd {
484 struct super_block *sd_vfs;
485 struct kobject sd_kobj;
486 unsigned long sd_flags; /* SDF_... */
487 struct gfs2_sb sd_sb;
488
489 /* Constants computed on mount */
490
491 uint32_t sd_fsb2bb;
492 uint32_t sd_fsb2bb_shift;
493 uint32_t sd_diptrs; /* Number of pointers in a dinode */
494 uint32_t sd_inptrs; /* Number of pointers in a indirect block */
495 uint32_t sd_jbsize; /* Size of a journaled data block */
496 uint32_t sd_hash_bsize; /* sizeof(exhash block) */
497 uint32_t sd_hash_bsize_shift;
498 uint32_t sd_hash_ptrs; /* Number of pointers in a hash block */
499 uint32_t sd_ut_per_block;
500 uint32_t sd_qc_per_block;
501 uint32_t sd_max_dirres; /* Max blocks needed to add a directory entry */
502 uint32_t sd_max_height; /* Max height of a file's metadata tree */
503 uint64_t sd_heightsize[GFS2_MAX_META_HEIGHT];
504 uint32_t sd_max_jheight; /* Max height of journaled file's meta tree */
505 uint64_t sd_jheightsize[GFS2_MAX_META_HEIGHT];
506
507 struct gfs2_args sd_args; /* Mount arguments */
508 struct gfs2_tune sd_tune; /* Filesystem tuning structure */
509
510 /* Lock Stuff */
511
512 struct lm_lockstruct sd_lockstruct;
513 struct gfs2_gl_hash_bucket sd_gl_hash[GFS2_GL_HASH_SIZE];
514 struct list_head sd_reclaim_list;
515 spinlock_t sd_reclaim_lock;
516 wait_queue_head_t sd_reclaim_wq;
517 atomic_t sd_reclaim_count;
518 struct gfs2_holder sd_live_gh;
519 struct gfs2_glock *sd_rename_gl;
520 struct gfs2_glock *sd_trans_gl;
f55ab26a 521 struct mutex sd_invalidate_inodes_mutex;
b3b94faa
DT
522
523 /* Inode Stuff */
524
f42faf4f
SW
525 struct inode *sd_master_dir;
526 struct inode *sd_jindex;
527 struct inode *sd_inum_inode;
528 struct inode *sd_statfs_inode;
529 struct inode *sd_ir_inode;
530 struct inode *sd_sc_inode;
531 struct inode *sd_ut_inode;
532 struct inode *sd_qc_inode;
533 struct inode *sd_rindex;
534 struct inode *sd_quota_inode;
b3b94faa
DT
535
536 /* Inum stuff */
537
f55ab26a 538 struct mutex sd_inum_mutex;
b3b94faa
DT
539
540 /* StatFS stuff */
541
542 spinlock_t sd_statfs_spin;
f55ab26a 543 struct mutex sd_statfs_mutex;
b3b94faa
DT
544 struct gfs2_statfs_change sd_statfs_master;
545 struct gfs2_statfs_change sd_statfs_local;
546 unsigned long sd_statfs_sync_time;
547
548 /* Resource group stuff */
549
550 uint64_t sd_rindex_vn;
551 spinlock_t sd_rindex_spin;
f55ab26a 552 struct mutex sd_rindex_mutex;
b3b94faa
DT
553 struct list_head sd_rindex_list;
554 struct list_head sd_rindex_mru_list;
555 struct list_head sd_rindex_recent_list;
556 struct gfs2_rgrpd *sd_rindex_forward;
557 unsigned int sd_rgrps;
558
559 /* Journal index stuff */
560
561 struct list_head sd_jindex_list;
562 spinlock_t sd_jindex_spin;
f55ab26a 563 struct mutex sd_jindex_mutex;
b3b94faa
DT
564 unsigned int sd_journals;
565 unsigned long sd_jindex_refresh_time;
566
567 struct gfs2_jdesc *sd_jdesc;
568 struct gfs2_holder sd_journal_gh;
569 struct gfs2_holder sd_jinode_gh;
570
571 struct gfs2_holder sd_ir_gh;
572 struct gfs2_holder sd_sc_gh;
573 struct gfs2_holder sd_ut_gh;
574 struct gfs2_holder sd_qc_gh;
575
576 /* Daemon stuff */
577
578 struct task_struct *sd_scand_process;
579 struct task_struct *sd_recoverd_process;
580 struct task_struct *sd_logd_process;
581 struct task_struct *sd_quotad_process;
582 struct task_struct *sd_inoded_process;
583 struct task_struct *sd_glockd_process[GFS2_GLOCKD_MAX];
584 unsigned int sd_glockd_num;
585
586 /* Unlinked inode stuff */
587
588 struct list_head sd_unlinked_list;
589 atomic_t sd_unlinked_count;
590 spinlock_t sd_unlinked_spin;
f55ab26a 591 struct mutex sd_unlinked_mutex;
b3b94faa
DT
592
593 unsigned int sd_unlinked_slots;
594 unsigned int sd_unlinked_chunks;
595 unsigned char **sd_unlinked_bitmap;
596
597 /* Quota stuff */
598
599 struct list_head sd_quota_list;
600 atomic_t sd_quota_count;
601 spinlock_t sd_quota_spin;
f55ab26a 602 struct mutex sd_quota_mutex;
b3b94faa
DT
603
604 unsigned int sd_quota_slots;
605 unsigned int sd_quota_chunks;
606 unsigned char **sd_quota_bitmap;
607
608 uint64_t sd_quota_sync_gen;
609 unsigned long sd_quota_sync_time;
610
611 /* Log stuff */
612
613 spinlock_t sd_log_lock;
b3b94faa
DT
614
615 unsigned int sd_log_blks_reserved;
616 unsigned int sd_log_commited_buf;
617 unsigned int sd_log_commited_revoke;
618
619 unsigned int sd_log_num_gl;
620 unsigned int sd_log_num_buf;
621 unsigned int sd_log_num_revoke;
622 unsigned int sd_log_num_rg;
623 unsigned int sd_log_num_databuf;
f42faf4f
SW
624 unsigned int sd_log_num_jdata;
625
b3b94faa
DT
626 struct list_head sd_log_le_gl;
627 struct list_head sd_log_le_buf;
628 struct list_head sd_log_le_revoke;
629 struct list_head sd_log_le_rg;
630 struct list_head sd_log_le_databuf;
631
632 unsigned int sd_log_blks_free;
71b86f56 633 struct mutex sd_log_reserve_mutex;
b3b94faa
DT
634
635 uint64_t sd_log_sequence;
636 unsigned int sd_log_head;
637 unsigned int sd_log_tail;
638 uint64_t sd_log_wraps;
639 int sd_log_idle;
640
641 unsigned long sd_log_flush_time;
484adff8 642 struct rw_semaphore sd_log_flush_lock;
b3b94faa
DT
643 struct list_head sd_log_flush_list;
644
645 unsigned int sd_log_flush_head;
646 uint64_t sd_log_flush_wrapped;
647
648 struct list_head sd_ail1_list;
649 struct list_head sd_ail2_list;
650 uint64_t sd_ail_sync_gen;
651
652 /* Replay stuff */
653
654 struct list_head sd_revoke_list;
655 unsigned int sd_replay_tail;
656
657 unsigned int sd_found_blocks;
658 unsigned int sd_found_revokes;
659 unsigned int sd_replayed_blocks;
660
661 /* For quiescing the filesystem */
662
663 struct gfs2_holder sd_freeze_gh;
f55ab26a 664 struct mutex sd_freeze_lock;
b3b94faa
DT
665 unsigned int sd_freeze_count;
666
667 /* Counters */
668
669 atomic_t sd_glock_count;
670 atomic_t sd_glock_held_count;
671 atomic_t sd_inode_count;
b3b94faa 672 atomic_t sd_reclaimed;
b3b94faa
DT
673
674 char sd_fsname[GFS2_FSNAME_LEN];
675 char sd_table_name[GFS2_FSNAME_LEN];
676 char sd_proto_name[GFS2_FSNAME_LEN];
677
678 /* Debugging crud */
679
680 unsigned long sd_last_warning;
681};
682
683#endif /* __INCORE_DOT_H__ */
684