blob: 1fed8d1abae57941a0e8c876d8cad1941c4521bf [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
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04007 * of the GNU General Public License version 2.
David Teiglandb3b94fa2006-01-16 16:50:04 +00008 */
9
10#ifndef __INCORE_DOT_H__
11#define __INCORE_DOT_H__
12
Steven Whitehousef2f7ba52006-09-05 10:39:21 -040013#include <linux/fs.h>
14
David Teiglandb3b94fa2006-01-16 16:50:04 +000015#define DIO_FORCE 0x00000001
16#define DIO_CLEAN 0x00000002
17#define DIO_DIRTY 0x00000004
18#define DIO_START 0x00000008
19#define DIO_WAIT 0x00000010
20#define DIO_METADATA 0x00000020
21#define DIO_DATA 0x00000040
22#define DIO_RELEASE 0x00000080
23#define DIO_ALL 0x00000100
24
25struct gfs2_log_operations;
26struct gfs2_log_element;
David Teiglandb3b94fa2006-01-16 16:50:04 +000027struct gfs2_holder;
28struct gfs2_glock;
David Teiglandb3b94fa2006-01-16 16:50:04 +000029struct gfs2_quota_data;
David Teiglandb3b94fa2006-01-16 16:50:04 +000030struct gfs2_trans;
31struct gfs2_ail;
32struct gfs2_jdesc;
David Teiglandb3b94fa2006-01-16 16:50:04 +000033struct gfs2_sbd;
34
35typedef void (*gfs2_glop_bh_t) (struct gfs2_glock *gl, unsigned int ret);
36
37/*
38 * Structure of operations that are associated with each
39 * type of element in the log.
40 */
41
42struct gfs2_log_operations {
43 void (*lo_add) (struct gfs2_sbd *sdp, struct gfs2_log_element *le);
44 void (*lo_incore_commit) (struct gfs2_sbd *sdp, struct gfs2_trans *tr);
45 void (*lo_before_commit) (struct gfs2_sbd *sdp);
46 void (*lo_after_commit) (struct gfs2_sbd *sdp, struct gfs2_ail *ai);
47 void (*lo_before_scan) (struct gfs2_jdesc *jd,
48 struct gfs2_log_header *head, int pass);
49 int (*lo_scan_elements) (struct gfs2_jdesc *jd, unsigned int start,
50 struct gfs2_log_descriptor *ld, __be64 *ptr,
51 int pass);
52 void (*lo_after_scan) (struct gfs2_jdesc *jd, int error, int pass);
Steven Whitehouseb09e5932006-04-07 11:17:32 -040053 const char *lo_name;
David Teiglandb3b94fa2006-01-16 16:50:04 +000054};
55
56struct gfs2_log_element {
57 struct list_head le_list;
Steven Whitehouseb09e5932006-04-07 11:17:32 -040058 const struct gfs2_log_operations *le_ops;
David Teiglandb3b94fa2006-01-16 16:50:04 +000059};
60
61struct gfs2_bitmap {
62 struct buffer_head *bi_bh;
63 char *bi_clone;
Steven Whitehousecd915492006-09-04 12:49:07 -040064 u32 bi_offset;
65 u32 bi_start;
66 u32 bi_len;
David Teiglandb3b94fa2006-01-16 16:50:04 +000067};
68
69struct gfs2_rgrpd {
70 struct list_head rd_list; /* Link with superblock */
71 struct list_head rd_list_mru;
72 struct list_head rd_recent; /* Recently used rgrps */
73 struct gfs2_glock *rd_gl; /* Glock for this rgrp */
74 struct gfs2_rindex rd_ri;
75 struct gfs2_rgrp rd_rg;
Steven Whitehousecd915492006-09-04 12:49:07 -040076 u64 rd_rg_vn;
David Teiglandb3b94fa2006-01-16 16:50:04 +000077 struct gfs2_bitmap *rd_bits;
78 unsigned int rd_bh_count;
Steven Whitehousef55ab262006-02-21 12:51:39 +000079 struct mutex rd_mutex;
Steven Whitehousecd915492006-09-04 12:49:07 -040080 u32 rd_free_clone;
David Teiglandb3b94fa2006-01-16 16:50:04 +000081 struct gfs2_log_element rd_le;
Steven Whitehousecd915492006-09-04 12:49:07 -040082 u32 rd_last_alloc_data;
83 u32 rd_last_alloc_meta;
David Teiglandb3b94fa2006-01-16 16:50:04 +000084 struct gfs2_sbd *rd_sbd;
85};
86
87enum gfs2_state_bits {
88 BH_Pinned = BH_PrivateStart,
Steven Whitehousef42faf42006-01-30 18:34:10 +000089 BH_Escaped = BH_PrivateStart + 1,
David Teiglandb3b94fa2006-01-16 16:50:04 +000090};
91
92BUFFER_FNS(Pinned, pinned)
93TAS_BUFFER_FNS(Pinned, pinned)
Steven Whitehousef42faf42006-01-30 18:34:10 +000094BUFFER_FNS(Escaped, escaped)
95TAS_BUFFER_FNS(Escaped, escaped)
David Teiglandb3b94fa2006-01-16 16:50:04 +000096
97struct gfs2_bufdata {
98 struct buffer_head *bd_bh;
99 struct gfs2_glock *bd_gl;
100
101 struct list_head bd_list_tr;
102 struct gfs2_log_element bd_le;
103
104 struct gfs2_ail *bd_ail;
105 struct list_head bd_ail_st_list;
106 struct list_head bd_ail_gl_list;
107};
108
David Teiglandb3b94fa2006-01-16 16:50:04 +0000109struct gfs2_glock_operations {
110 void (*go_xmote_th) (struct gfs2_glock * gl, unsigned int state,
111 int flags);
112 void (*go_xmote_bh) (struct gfs2_glock * gl);
113 void (*go_drop_th) (struct gfs2_glock * gl);
114 void (*go_drop_bh) (struct gfs2_glock * gl);
115 void (*go_sync) (struct gfs2_glock * gl, int flags);
116 void (*go_inval) (struct gfs2_glock * gl, int flags);
117 int (*go_demote_ok) (struct gfs2_glock * gl);
118 int (*go_lock) (struct gfs2_holder * gh);
119 void (*go_unlock) (struct gfs2_holder * gh);
120 void (*go_callback) (struct gfs2_glock * gl, unsigned int state);
121 void (*go_greedy) (struct gfs2_glock * gl);
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400122 const int go_type;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000123};
124
125enum {
126 /* Actions */
127 HIF_MUTEX = 0,
128 HIF_PROMOTE = 1,
129 HIF_DEMOTE = 2,
130 HIF_GREEDY = 3,
131
132 /* States */
133 HIF_ALLOCED = 4,
134 HIF_DEALLOC = 5,
135 HIF_HOLDER = 6,
136 HIF_FIRST = 7,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000137 HIF_ABORTED = 9,
138};
139
140struct gfs2_holder {
141 struct list_head gh_list;
142
143 struct gfs2_glock *gh_gl;
144 struct task_struct *gh_owner;
145 unsigned int gh_state;
Steven Whitehousefe1bded2006-04-18 10:09:15 -0400146 unsigned gh_flags;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000147
148 int gh_error;
David Woodhouse695165d2006-06-20 13:44:27 +0100149 unsigned long gh_iflags;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000150 struct completion gh_wait;
Steven Whitehoused0dc80d2006-03-29 14:36:49 -0500151 unsigned long gh_ip;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000152};
153
154enum {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000155 GLF_LOCK = 1,
156 GLF_STICKY = 2,
157 GLF_PREFETCH = 3,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000158 GLF_DIRTY = 5,
159 GLF_SKIP_WAITERS2 = 6,
160 GLF_GREEDY = 7,
161};
162
163struct gfs2_glock {
164 struct list_head gl_list;
165 unsigned long gl_flags; /* GLF_... */
166 struct lm_lockname gl_name;
167 struct kref gl_ref;
168
169 spinlock_t gl_spin;
170
171 unsigned int gl_state;
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400172 unsigned int gl_hash;
Steven Whitehouse320dd102006-05-18 16:25:27 -0400173 struct task_struct *gl_owner;
174 unsigned long gl_ip;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000175 struct list_head gl_holders;
176 struct list_head gl_waiters1; /* HIF_MUTEX */
177 struct list_head gl_waiters2; /* HIF_DEMOTE, HIF_GREEDY */
178 struct list_head gl_waiters3; /* HIF_PROMOTE */
179
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400180 const struct gfs2_glock_operations *gl_ops;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000181
182 struct gfs2_holder *gl_req_gh;
183 gfs2_glop_bh_t gl_req_bh;
184
Steven Whitehouse9b47c112006-09-08 10:17:58 -0400185 void *gl_lock;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000186 char *gl_lvb;
187 atomic_t gl_lvb_count;
188
Steven Whitehousecd915492006-09-04 12:49:07 -0400189 u64 gl_vn;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000190 unsigned long gl_stamp;
191 void *gl_object;
192
David Teiglandb3b94fa2006-01-16 16:50:04 +0000193 struct list_head gl_reclaim;
194
195 struct gfs2_sbd *gl_sbd;
196
197 struct inode *gl_aspace;
198 struct gfs2_log_element gl_le;
199 struct list_head gl_ail_list;
200 atomic_t gl_ail_count;
201};
202
203struct gfs2_alloc {
204 /* Quota stuff */
205
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -0400206 struct gfs2_quota_data *al_qd[2*MAXQUOTAS];
207 struct gfs2_holder al_qd_ghs[2*MAXQUOTAS];
Steven Whitehouse6b61b072006-06-06 14:49:39 -0400208 unsigned int al_qd_num;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000209
Steven Whitehouse6b61b072006-06-06 14:49:39 -0400210 u32 al_requested; /* Filled in by caller of gfs2_inplace_reserve() */
211 u32 al_alloced; /* Filled in by gfs2_alloc_*() */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000212
213 /* Filled in by gfs2_inplace_reserve() */
214
David Teiglandb3b94fa2006-01-16 16:50:04 +0000215 unsigned int al_line;
Steven Whitehouse6b61b072006-06-06 14:49:39 -0400216 char *al_file;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000217 struct gfs2_holder al_ri_gh;
218 struct gfs2_holder al_rgd_gh;
219 struct gfs2_rgrpd *al_rgd;
220
David Teiglandb3b94fa2006-01-16 16:50:04 +0000221};
222
223enum {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000224 GIF_QD_LOCKED = 1,
225 GIF_PAGED = 2,
226 GIF_SW_PAGED = 3,
227};
228
229struct gfs2_inode {
Steven Whitehouse320dd102006-05-18 16:25:27 -0400230 struct inode i_inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000231 struct gfs2_inum i_num;
232
David Teiglandb3b94fa2006-01-16 16:50:04 +0000233 unsigned long i_flags; /* GIF_... */
234
Steven Whitehousecd915492006-09-04 12:49:07 -0400235 u64 i_vn;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400236 struct gfs2_dinode i_di; /* To be replaced by ref to block */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000237
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400238 struct gfs2_glock *i_gl; /* Move into i_gh? */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000239 struct gfs2_holder i_iopen_gh;
Steven Whitehousef42faf42006-01-30 18:34:10 +0000240 struct gfs2_holder i_gh; /* for prepare/commit_write only */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000241 struct gfs2_alloc i_alloc;
Steven Whitehousecd915492006-09-04 12:49:07 -0400242 u64 i_last_rg_alloc;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000243
244 spinlock_t i_spin;
245 struct rw_semaphore i_rw_mutex;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000246 unsigned int i_greedy;
247 unsigned long i_last_pfault;
248
249 struct buffer_head *i_cache[GFS2_MAX_META_HEIGHT];
250};
251
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400252/*
253 * Since i_inode is the first element of struct gfs2_inode,
254 * this is effectively a cast.
255 */
Steven Whitehouse320dd102006-05-18 16:25:27 -0400256static inline struct gfs2_inode *GFS2_I(struct inode *inode)
257{
258 return container_of(inode, struct gfs2_inode, i_inode);
259}
260
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400261/* To be removed? */
262static inline struct gfs2_sbd *GFS2_SB(struct inode *inode)
263{
264 return inode->i_sb->s_fs_info;
265}
266
David Teiglandb3b94fa2006-01-16 16:50:04 +0000267enum {
268 GFF_DID_DIRECT_ALLOC = 0,
Steven Whitehouse59a1cc62006-08-04 15:41:22 -0400269 GFF_EXLOCK = 1,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000270};
271
272struct gfs2_file {
273 unsigned long f_flags; /* GFF_... */
Steven Whitehousef55ab262006-02-21 12:51:39 +0000274 struct mutex f_fl_mutex;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000275 struct gfs2_holder f_fl_gh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000276};
277
278struct gfs2_revoke {
279 struct gfs2_log_element rv_le;
Steven Whitehousecd915492006-09-04 12:49:07 -0400280 u64 rv_blkno;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000281};
282
283struct gfs2_revoke_replay {
284 struct list_head rr_list;
Steven Whitehousecd915492006-09-04 12:49:07 -0400285 u64 rr_blkno;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000286 unsigned int rr_where;
287};
288
289enum {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000290 QDF_USER = 0,
291 QDF_CHANGE = 1,
292 QDF_LOCKED = 2,
293};
294
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500295struct gfs2_quota_lvb {
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -0400296 __be32 qb_magic;
297 u32 __pad;
298 __be64 qb_limit; /* Hard limit of # blocks to alloc */
299 __be64 qb_warn; /* Warn user when alloc is above this # */
300 __be64 qb_value; /* Current # blocks allocated */
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500301};
302
David Teiglandb3b94fa2006-01-16 16:50:04 +0000303struct gfs2_quota_data {
304 struct list_head qd_list;
305 unsigned int qd_count;
306
Steven Whitehousecd915492006-09-04 12:49:07 -0400307 u32 qd_id;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000308 unsigned long qd_flags; /* QDF_... */
309
Steven Whitehousecd915492006-09-04 12:49:07 -0400310 s64 qd_change;
311 s64 qd_change_sync;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000312
313 unsigned int qd_slot;
314 unsigned int qd_slot_count;
315
316 struct buffer_head *qd_bh;
317 struct gfs2_quota_change *qd_bh_qc;
318 unsigned int qd_bh_count;
319
320 struct gfs2_glock *qd_gl;
321 struct gfs2_quota_lvb qd_qb;
322
Steven Whitehousecd915492006-09-04 12:49:07 -0400323 u64 qd_sync_gen;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000324 unsigned long qd_last_warn;
325 unsigned long qd_last_touched;
326};
327
328struct gfs2_log_buf {
329 struct list_head lb_list;
330 struct buffer_head *lb_bh;
331 struct buffer_head *lb_real;
332};
333
334struct gfs2_trans {
Steven Whitehoused0dc80d2006-03-29 14:36:49 -0500335 unsigned long tr_ip;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000336
337 unsigned int tr_blocks;
338 unsigned int tr_revokes;
339 unsigned int tr_reserved;
340
Steven Whitehousee317ffc2006-03-01 11:39:37 -0500341 struct gfs2_holder tr_t_gh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000342
343 int tr_touched;
344
345 unsigned int tr_num_buf;
346 unsigned int tr_num_buf_new;
347 unsigned int tr_num_buf_rm;
348 struct list_head tr_list_buf;
349
350 unsigned int tr_num_revoke;
351 unsigned int tr_num_revoke_rm;
352};
353
354struct gfs2_ail {
355 struct list_head ai_list;
356
357 unsigned int ai_first;
358 struct list_head ai_ail1_list;
359 struct list_head ai_ail2_list;
360
Steven Whitehousecd915492006-09-04 12:49:07 -0400361 u64 ai_sync_gen;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000362};
363
364struct gfs2_jdesc {
365 struct list_head jd_list;
366
Steven Whitehouse7359a192006-02-13 12:27:43 +0000367 struct inode *jd_inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000368 unsigned int jd_jid;
369 int jd_dirty;
370
371 unsigned int jd_blocks;
372};
373
374#define GFS2_GLOCKD_DEFAULT 1
375#define GFS2_GLOCKD_MAX 16
376
377#define GFS2_QUOTA_DEFAULT GFS2_QUOTA_OFF
378#define GFS2_QUOTA_OFF 0
379#define GFS2_QUOTA_ACCOUNT 1
380#define GFS2_QUOTA_ON 2
381
382#define GFS2_DATA_DEFAULT GFS2_DATA_ORDERED
383#define GFS2_DATA_WRITEBACK 1
384#define GFS2_DATA_ORDERED 2
385
386struct gfs2_args {
387 char ar_lockproto[GFS2_LOCKNAME_LEN]; /* Name of the Lock Protocol */
388 char ar_locktable[GFS2_LOCKNAME_LEN]; /* Name of the Lock Table */
389 char ar_hostdata[GFS2_LOCKNAME_LEN]; /* Host specific data */
390 int ar_spectator; /* Don't get a journal because we're always RO */
391 int ar_ignore_local_fs; /* Don't optimize even if local_fs is 1 */
392 int ar_localflocks; /* Let the VFS do flock|fcntl locks for us */
393 int ar_localcaching; /* Local-style caching (dangerous on multihost) */
394 int ar_debug; /* Oops on errors instead of trying to be graceful */
395 int ar_upgrade; /* Upgrade ondisk/multihost format */
396 unsigned int ar_num_glockd; /* Number of glockd threads */
397 int ar_posix_acl; /* Enable posix acls */
398 int ar_quota; /* off/account/on */
399 int ar_suiddir; /* suiddir support */
400 int ar_data; /* ordered/writeback */
401};
402
403struct gfs2_tune {
404 spinlock_t gt_spin;
405
406 unsigned int gt_ilimit;
407 unsigned int gt_ilimit_tries;
408 unsigned int gt_ilimit_min;
409 unsigned int gt_demote_secs; /* Cache retention for unheld glock */
410 unsigned int gt_incore_log_blocks;
411 unsigned int gt_log_flush_secs;
412 unsigned int gt_jindex_refresh_secs; /* Check for new journal index */
413
414 unsigned int gt_scand_secs;
415 unsigned int gt_recoverd_secs;
416 unsigned int gt_logd_secs;
417 unsigned int gt_quotad_secs;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000418
419 unsigned int gt_quota_simul_sync; /* Max quotavals to sync at once */
420 unsigned int gt_quota_warn_period; /* Secs between quota warn msgs */
421 unsigned int gt_quota_scale_num; /* Numerator */
422 unsigned int gt_quota_scale_den; /* Denominator */
423 unsigned int gt_quota_cache_secs;
424 unsigned int gt_quota_quantum; /* Secs between syncs to quota file */
425 unsigned int gt_atime_quantum; /* Min secs between atime updates */
426 unsigned int gt_new_files_jdata;
427 unsigned int gt_new_files_directio;
428 unsigned int gt_max_atomic_write; /* Split big writes into this size */
429 unsigned int gt_max_readahead; /* Max bytes to read-ahead from disk */
430 unsigned int gt_lockdump_size;
431 unsigned int gt_stall_secs; /* Detects trouble! */
432 unsigned int gt_complain_secs;
433 unsigned int gt_reclaim_limit; /* Max num of glocks in reclaim list */
434 unsigned int gt_entries_per_readdir;
435 unsigned int gt_prefetch_secs; /* Usage window for prefetched glocks */
436 unsigned int gt_greedy_default;
437 unsigned int gt_greedy_quantum;
438 unsigned int gt_greedy_max;
439 unsigned int gt_statfs_quantum;
440 unsigned int gt_statfs_slow;
441};
442
David Teiglandb3b94fa2006-01-16 16:50:04 +0000443enum {
444 SDF_JOURNAL_CHECKED = 0,
445 SDF_JOURNAL_LIVE = 1,
446 SDF_SHUTDOWN = 2,
447 SDF_NOATIME = 3,
448};
449
David Teiglandb3b94fa2006-01-16 16:50:04 +0000450#define GFS2_FSNAME_LEN 256
451
452struct gfs2_sbd {
453 struct super_block *sd_vfs;
Abhijith Das86384602006-08-25 11:13:37 -0500454 struct super_block *sd_vfs_meta;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000455 struct kobject sd_kobj;
456 unsigned long sd_flags; /* SDF_... */
457 struct gfs2_sb sd_sb;
458
459 /* Constants computed on mount */
460
Steven Whitehousecd915492006-09-04 12:49:07 -0400461 u32 sd_fsb2bb;
462 u32 sd_fsb2bb_shift;
463 u32 sd_diptrs; /* Number of pointers in a dinode */
464 u32 sd_inptrs; /* Number of pointers in a indirect block */
465 u32 sd_jbsize; /* Size of a journaled data block */
466 u32 sd_hash_bsize; /* sizeof(exhash block) */
467 u32 sd_hash_bsize_shift;
468 u32 sd_hash_ptrs; /* Number of pointers in a hash block */
469 u32 sd_qc_per_block;
470 u32 sd_max_dirres; /* Max blocks needed to add a directory entry */
471 u32 sd_max_height; /* Max height of a file's metadata tree */
472 u64 sd_heightsize[GFS2_MAX_META_HEIGHT];
473 u32 sd_max_jheight; /* Max height of journaled file's meta tree */
474 u64 sd_jheightsize[GFS2_MAX_META_HEIGHT];
David Teiglandb3b94fa2006-01-16 16:50:04 +0000475
476 struct gfs2_args sd_args; /* Mount arguments */
477 struct gfs2_tune sd_tune; /* Filesystem tuning structure */
478
479 /* Lock Stuff */
480
481 struct lm_lockstruct sd_lockstruct;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000482 struct list_head sd_reclaim_list;
483 spinlock_t sd_reclaim_lock;
484 wait_queue_head_t sd_reclaim_wq;
485 atomic_t sd_reclaim_count;
486 struct gfs2_holder sd_live_gh;
487 struct gfs2_glock *sd_rename_gl;
488 struct gfs2_glock *sd_trans_gl;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000489
490 /* Inode Stuff */
491
Steven Whitehousef42faf42006-01-30 18:34:10 +0000492 struct inode *sd_master_dir;
493 struct inode *sd_jindex;
494 struct inode *sd_inum_inode;
495 struct inode *sd_statfs_inode;
496 struct inode *sd_ir_inode;
497 struct inode *sd_sc_inode;
Steven Whitehousef42faf42006-01-30 18:34:10 +0000498 struct inode *sd_qc_inode;
499 struct inode *sd_rindex;
500 struct inode *sd_quota_inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000501
502 /* Inum stuff */
503
Steven Whitehousef55ab262006-02-21 12:51:39 +0000504 struct mutex sd_inum_mutex;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000505
506 /* StatFS stuff */
507
508 spinlock_t sd_statfs_spin;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000509 struct mutex sd_statfs_mutex;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000510 struct gfs2_statfs_change sd_statfs_master;
511 struct gfs2_statfs_change sd_statfs_local;
512 unsigned long sd_statfs_sync_time;
513
514 /* Resource group stuff */
515
Steven Whitehousecd915492006-09-04 12:49:07 -0400516 u64 sd_rindex_vn;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000517 spinlock_t sd_rindex_spin;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000518 struct mutex sd_rindex_mutex;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000519 struct list_head sd_rindex_list;
520 struct list_head sd_rindex_mru_list;
521 struct list_head sd_rindex_recent_list;
522 struct gfs2_rgrpd *sd_rindex_forward;
523 unsigned int sd_rgrps;
524
525 /* Journal index stuff */
526
527 struct list_head sd_jindex_list;
528 spinlock_t sd_jindex_spin;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000529 struct mutex sd_jindex_mutex;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000530 unsigned int sd_journals;
531 unsigned long sd_jindex_refresh_time;
532
533 struct gfs2_jdesc *sd_jdesc;
534 struct gfs2_holder sd_journal_gh;
535 struct gfs2_holder sd_jinode_gh;
536
537 struct gfs2_holder sd_ir_gh;
538 struct gfs2_holder sd_sc_gh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000539 struct gfs2_holder sd_qc_gh;
540
541 /* Daemon stuff */
542
543 struct task_struct *sd_scand_process;
544 struct task_struct *sd_recoverd_process;
545 struct task_struct *sd_logd_process;
546 struct task_struct *sd_quotad_process;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000547 struct task_struct *sd_glockd_process[GFS2_GLOCKD_MAX];
548 unsigned int sd_glockd_num;
549
David Teiglandb3b94fa2006-01-16 16:50:04 +0000550 /* Quota stuff */
551
552 struct list_head sd_quota_list;
553 atomic_t sd_quota_count;
554 spinlock_t sd_quota_spin;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000555 struct mutex sd_quota_mutex;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000556
557 unsigned int sd_quota_slots;
558 unsigned int sd_quota_chunks;
559 unsigned char **sd_quota_bitmap;
560
Steven Whitehousecd915492006-09-04 12:49:07 -0400561 u64 sd_quota_sync_gen;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000562 unsigned long sd_quota_sync_time;
563
564 /* Log stuff */
565
566 spinlock_t sd_log_lock;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000567
568 unsigned int sd_log_blks_reserved;
569 unsigned int sd_log_commited_buf;
570 unsigned int sd_log_commited_revoke;
571
572 unsigned int sd_log_num_gl;
573 unsigned int sd_log_num_buf;
574 unsigned int sd_log_num_revoke;
575 unsigned int sd_log_num_rg;
576 unsigned int sd_log_num_databuf;
Steven Whitehousef42faf42006-01-30 18:34:10 +0000577 unsigned int sd_log_num_jdata;
Steven Whitehouseb09e5932006-04-07 11:17:32 -0400578 unsigned int sd_log_num_hdrs;
Steven Whitehousef42faf42006-01-30 18:34:10 +0000579
David Teiglandb3b94fa2006-01-16 16:50:04 +0000580 struct list_head sd_log_le_gl;
581 struct list_head sd_log_le_buf;
582 struct list_head sd_log_le_revoke;
583 struct list_head sd_log_le_rg;
584 struct list_head sd_log_le_databuf;
585
586 unsigned int sd_log_blks_free;
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500587 struct mutex sd_log_reserve_mutex;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000588
Steven Whitehousecd915492006-09-04 12:49:07 -0400589 u64 sd_log_sequence;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000590 unsigned int sd_log_head;
591 unsigned int sd_log_tail;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000592 int sd_log_idle;
593
594 unsigned long sd_log_flush_time;
Steven Whitehouse484adff2006-03-29 09:12:12 -0500595 struct rw_semaphore sd_log_flush_lock;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000596 struct list_head sd_log_flush_list;
597
598 unsigned int sd_log_flush_head;
Steven Whitehousecd915492006-09-04 12:49:07 -0400599 u64 sd_log_flush_wrapped;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000600
601 struct list_head sd_ail1_list;
602 struct list_head sd_ail2_list;
Steven Whitehousecd915492006-09-04 12:49:07 -0400603 u64 sd_ail_sync_gen;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000604
605 /* Replay stuff */
606
607 struct list_head sd_revoke_list;
608 unsigned int sd_replay_tail;
609
610 unsigned int sd_found_blocks;
611 unsigned int sd_found_revokes;
612 unsigned int sd_replayed_blocks;
613
614 /* For quiescing the filesystem */
615
616 struct gfs2_holder sd_freeze_gh;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000617 struct mutex sd_freeze_lock;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000618 unsigned int sd_freeze_count;
619
620 /* Counters */
621
622 atomic_t sd_glock_count;
623 atomic_t sd_glock_held_count;
624 atomic_t sd_inode_count;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000625 atomic_t sd_reclaimed;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000626
627 char sd_fsname[GFS2_FSNAME_LEN];
628 char sd_table_name[GFS2_FSNAME_LEN];
629 char sd_proto_name[GFS2_FSNAME_LEN];
630
631 /* Debugging crud */
632
633 unsigned long sd_last_warning;
Abhijith Das86384602006-08-25 11:13:37 -0500634 struct vfsmount *sd_gfs2mnt;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000635};
636
637#endif /* __INCORE_DOT_H__ */
638