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