David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 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 | |
| 23 | struct gfs2_log_operations; |
| 24 | struct gfs2_log_element; |
| 25 | struct gfs2_bitmap; |
| 26 | struct gfs2_rgrpd; |
| 27 | struct gfs2_bufdata; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 28 | struct gfs2_glock_operations; |
| 29 | struct gfs2_holder; |
| 30 | struct gfs2_glock; |
| 31 | struct gfs2_alloc; |
| 32 | struct gfs2_inode; |
| 33 | struct gfs2_file; |
| 34 | struct gfs2_revoke; |
| 35 | struct gfs2_revoke_replay; |
| 36 | struct gfs2_unlinked; |
| 37 | struct gfs2_quota_data; |
| 38 | struct gfs2_log_buf; |
| 39 | struct gfs2_trans; |
| 40 | struct gfs2_ail; |
| 41 | struct gfs2_jdesc; |
| 42 | struct gfs2_args; |
| 43 | struct gfs2_tune; |
| 44 | struct gfs2_gl_hash_bucket; |
| 45 | struct gfs2_sbd; |
| 46 | |
| 47 | typedef 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 | |
| 54 | struct 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 | |
| 68 | struct gfs2_log_element { |
| 69 | struct list_head le_list; |
| 70 | struct gfs2_log_operations *le_ops; |
| 71 | }; |
| 72 | |
| 73 | struct 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 | |
| 81 | struct 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; |
Steven Whitehouse | f55ab26 | 2006-02-21 12:51:39 +0000 | [diff] [blame] | 91 | struct mutex rd_mutex; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 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 | |
| 99 | enum gfs2_state_bits { |
| 100 | BH_Pinned = BH_PrivateStart, |
Steven Whitehouse | f42faf4 | 2006-01-30 18:34:10 +0000 | [diff] [blame] | 101 | BH_Escaped = BH_PrivateStart + 1, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 102 | }; |
| 103 | |
| 104 | BUFFER_FNS(Pinned, pinned) |
| 105 | TAS_BUFFER_FNS(Pinned, pinned) |
Steven Whitehouse | f42faf4 | 2006-01-30 18:34:10 +0000 | [diff] [blame] | 106 | BUFFER_FNS(Escaped, escaped) |
| 107 | TAS_BUFFER_FNS(Escaped, escaped) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 108 | |
| 109 | struct 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 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 121 | struct 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 | |
| 137 | enum { |
| 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 | |
| 153 | struct 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 | |
| 166 | enum { |
| 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 | |
| 177 | struct 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 | |
| 215 | struct 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 | |
| 239 | enum { |
| 240 | GIF_MIN_INIT = 0, |
| 241 | GIF_QD_LOCKED = 1, |
| 242 | GIF_PAGED = 2, |
| 243 | GIF_SW_PAGED = 3, |
| 244 | }; |
| 245 | |
| 246 | struct 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; |
Steven Whitehouse | f42faf4 | 2006-01-30 18:34:10 +0000 | [diff] [blame] | 260 | struct gfs2_holder i_gh; /* for prepare/commit_write only */ |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 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 | |
| 273 | enum { |
| 274 | GFF_DID_DIRECT_ALLOC = 0, |
| 275 | }; |
| 276 | |
| 277 | struct gfs2_file { |
| 278 | unsigned long f_flags; /* GFF_... */ |
| 279 | |
Steven Whitehouse | f55ab26 | 2006-02-21 12:51:39 +0000 | [diff] [blame] | 280 | struct mutex f_fl_mutex; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 281 | struct gfs2_holder f_fl_gh; |
| 282 | |
| 283 | struct gfs2_inode *f_inode; |
| 284 | struct file *f_vfile; |
| 285 | }; |
| 286 | |
| 287 | struct gfs2_revoke { |
| 288 | struct gfs2_log_element rv_le; |
| 289 | uint64_t rv_blkno; |
| 290 | }; |
| 291 | |
| 292 | struct gfs2_revoke_replay { |
| 293 | struct list_head rr_list; |
| 294 | uint64_t rr_blkno; |
| 295 | unsigned int rr_where; |
| 296 | }; |
| 297 | |
| 298 | enum { |
| 299 | ULF_LOCKED = 0, |
| 300 | }; |
| 301 | |
| 302 | struct 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 | |
| 310 | enum { |
| 311 | QDF_USER = 0, |
| 312 | QDF_CHANGE = 1, |
| 313 | QDF_LOCKED = 2, |
| 314 | }; |
| 315 | |
Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 316 | struct 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 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 324 | struct 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 | |
| 349 | struct gfs2_log_buf { |
| 350 | struct list_head lb_list; |
| 351 | struct buffer_head *lb_bh; |
| 352 | struct buffer_head *lb_real; |
| 353 | }; |
| 354 | |
| 355 | struct 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 | |
Steven Whitehouse | e317ffc | 2006-03-01 11:39:37 -0500 | [diff] [blame^] | 363 | struct gfs2_holder tr_t_gh; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 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 | |
| 376 | struct 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 | |
| 386 | struct gfs2_jdesc { |
| 387 | struct list_head jd_list; |
| 388 | |
Steven Whitehouse | 7359a19 | 2006-02-13 12:27:43 +0000 | [diff] [blame] | 389 | struct inode *jd_inode; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 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 | |
| 408 | struct 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 | |
| 425 | struct 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 | |
| 466 | struct gfs2_gl_hash_bucket { |
| 467 | rwlock_t hb_lock; |
| 468 | struct list_head hb_list; |
| 469 | }; |
| 470 | |
| 471 | enum { |
| 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 | |
| 483 | struct 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; |
Steven Whitehouse | f55ab26 | 2006-02-21 12:51:39 +0000 | [diff] [blame] | 521 | struct mutex sd_invalidate_inodes_mutex; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 522 | |
| 523 | /* Inode Stuff */ |
| 524 | |
Steven Whitehouse | f42faf4 | 2006-01-30 18:34:10 +0000 | [diff] [blame] | 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; |
| 535 | struct inode *sd_root_dir; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 536 | |
| 537 | /* Inum stuff */ |
| 538 | |
Steven Whitehouse | f55ab26 | 2006-02-21 12:51:39 +0000 | [diff] [blame] | 539 | struct mutex sd_inum_mutex; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 540 | |
| 541 | /* StatFS stuff */ |
| 542 | |
| 543 | spinlock_t sd_statfs_spin; |
Steven Whitehouse | f55ab26 | 2006-02-21 12:51:39 +0000 | [diff] [blame] | 544 | struct mutex sd_statfs_mutex; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 545 | struct gfs2_statfs_change sd_statfs_master; |
| 546 | struct gfs2_statfs_change sd_statfs_local; |
| 547 | unsigned long sd_statfs_sync_time; |
| 548 | |
| 549 | /* Resource group stuff */ |
| 550 | |
| 551 | uint64_t sd_rindex_vn; |
| 552 | spinlock_t sd_rindex_spin; |
Steven Whitehouse | f55ab26 | 2006-02-21 12:51:39 +0000 | [diff] [blame] | 553 | struct mutex sd_rindex_mutex; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 554 | struct list_head sd_rindex_list; |
| 555 | struct list_head sd_rindex_mru_list; |
| 556 | struct list_head sd_rindex_recent_list; |
| 557 | struct gfs2_rgrpd *sd_rindex_forward; |
| 558 | unsigned int sd_rgrps; |
| 559 | |
| 560 | /* Journal index stuff */ |
| 561 | |
| 562 | struct list_head sd_jindex_list; |
| 563 | spinlock_t sd_jindex_spin; |
Steven Whitehouse | f55ab26 | 2006-02-21 12:51:39 +0000 | [diff] [blame] | 564 | struct mutex sd_jindex_mutex; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 565 | unsigned int sd_journals; |
| 566 | unsigned long sd_jindex_refresh_time; |
| 567 | |
| 568 | struct gfs2_jdesc *sd_jdesc; |
| 569 | struct gfs2_holder sd_journal_gh; |
| 570 | struct gfs2_holder sd_jinode_gh; |
| 571 | |
| 572 | struct gfs2_holder sd_ir_gh; |
| 573 | struct gfs2_holder sd_sc_gh; |
| 574 | struct gfs2_holder sd_ut_gh; |
| 575 | struct gfs2_holder sd_qc_gh; |
| 576 | |
| 577 | /* Daemon stuff */ |
| 578 | |
| 579 | struct task_struct *sd_scand_process; |
| 580 | struct task_struct *sd_recoverd_process; |
| 581 | struct task_struct *sd_logd_process; |
| 582 | struct task_struct *sd_quotad_process; |
| 583 | struct task_struct *sd_inoded_process; |
| 584 | struct task_struct *sd_glockd_process[GFS2_GLOCKD_MAX]; |
| 585 | unsigned int sd_glockd_num; |
| 586 | |
| 587 | /* Unlinked inode stuff */ |
| 588 | |
| 589 | struct list_head sd_unlinked_list; |
| 590 | atomic_t sd_unlinked_count; |
| 591 | spinlock_t sd_unlinked_spin; |
Steven Whitehouse | f55ab26 | 2006-02-21 12:51:39 +0000 | [diff] [blame] | 592 | struct mutex sd_unlinked_mutex; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 593 | |
| 594 | unsigned int sd_unlinked_slots; |
| 595 | unsigned int sd_unlinked_chunks; |
| 596 | unsigned char **sd_unlinked_bitmap; |
| 597 | |
| 598 | /* Quota stuff */ |
| 599 | |
| 600 | struct list_head sd_quota_list; |
| 601 | atomic_t sd_quota_count; |
| 602 | spinlock_t sd_quota_spin; |
Steven Whitehouse | f55ab26 | 2006-02-21 12:51:39 +0000 | [diff] [blame] | 603 | struct mutex sd_quota_mutex; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 604 | |
| 605 | unsigned int sd_quota_slots; |
| 606 | unsigned int sd_quota_chunks; |
| 607 | unsigned char **sd_quota_bitmap; |
| 608 | |
| 609 | uint64_t sd_quota_sync_gen; |
| 610 | unsigned long sd_quota_sync_time; |
| 611 | |
| 612 | /* Log stuff */ |
| 613 | |
| 614 | spinlock_t sd_log_lock; |
| 615 | atomic_t sd_log_trans_count; |
| 616 | wait_queue_head_t sd_log_trans_wq; |
| 617 | atomic_t sd_log_flush_count; |
| 618 | wait_queue_head_t sd_log_flush_wq; |
| 619 | |
| 620 | unsigned int sd_log_blks_reserved; |
| 621 | unsigned int sd_log_commited_buf; |
| 622 | unsigned int sd_log_commited_revoke; |
| 623 | |
| 624 | unsigned int sd_log_num_gl; |
| 625 | unsigned int sd_log_num_buf; |
| 626 | unsigned int sd_log_num_revoke; |
| 627 | unsigned int sd_log_num_rg; |
| 628 | unsigned int sd_log_num_databuf; |
Steven Whitehouse | f42faf4 | 2006-01-30 18:34:10 +0000 | [diff] [blame] | 629 | unsigned int sd_log_num_jdata; |
| 630 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 631 | struct list_head sd_log_le_gl; |
| 632 | struct list_head sd_log_le_buf; |
| 633 | struct list_head sd_log_le_revoke; |
| 634 | struct list_head sd_log_le_rg; |
| 635 | struct list_head sd_log_le_databuf; |
| 636 | |
| 637 | unsigned int sd_log_blks_free; |
| 638 | struct list_head sd_log_blks_list; |
| 639 | wait_queue_head_t sd_log_blks_wait; |
| 640 | |
| 641 | uint64_t sd_log_sequence; |
| 642 | unsigned int sd_log_head; |
| 643 | unsigned int sd_log_tail; |
| 644 | uint64_t sd_log_wraps; |
| 645 | int sd_log_idle; |
| 646 | |
| 647 | unsigned long sd_log_flush_time; |
Steven Whitehouse | f55ab26 | 2006-02-21 12:51:39 +0000 | [diff] [blame] | 648 | struct mutex sd_log_flush_lock; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 649 | struct list_head sd_log_flush_list; |
| 650 | |
| 651 | unsigned int sd_log_flush_head; |
| 652 | uint64_t sd_log_flush_wrapped; |
| 653 | |
| 654 | struct list_head sd_ail1_list; |
| 655 | struct list_head sd_ail2_list; |
| 656 | uint64_t sd_ail_sync_gen; |
| 657 | |
| 658 | /* Replay stuff */ |
| 659 | |
| 660 | struct list_head sd_revoke_list; |
| 661 | unsigned int sd_replay_tail; |
| 662 | |
| 663 | unsigned int sd_found_blocks; |
| 664 | unsigned int sd_found_revokes; |
| 665 | unsigned int sd_replayed_blocks; |
| 666 | |
| 667 | /* For quiescing the filesystem */ |
| 668 | |
| 669 | struct gfs2_holder sd_freeze_gh; |
Steven Whitehouse | f55ab26 | 2006-02-21 12:51:39 +0000 | [diff] [blame] | 670 | struct mutex sd_freeze_lock; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 671 | unsigned int sd_freeze_count; |
| 672 | |
| 673 | /* Counters */ |
| 674 | |
| 675 | atomic_t sd_glock_count; |
| 676 | atomic_t sd_glock_held_count; |
| 677 | atomic_t sd_inode_count; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 678 | atomic_t sd_reclaimed; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 679 | |
| 680 | char sd_fsname[GFS2_FSNAME_LEN]; |
| 681 | char sd_table_name[GFS2_FSNAME_LEN]; |
| 682 | char sd_proto_name[GFS2_FSNAME_LEN]; |
| 683 | |
| 684 | /* Debugging crud */ |
| 685 | |
| 686 | unsigned long sd_last_warning; |
| 687 | }; |
| 688 | |
| 689 | #endif /* __INCORE_DOT_H__ */ |
| 690 | |