blob: a9b7d3a60081cca397f02fa6036aa9d8599a13f2 [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Bob Petersoncf45b752008-01-31 10:31:39 -06003 * Copyright (C) 2004-2008 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
David Teiglandb3b94fa2006-01-16 16:50:04 +000010#include <linux/slab.h>
11#include <linux/spinlock.h>
12#include <linux/completion.h>
13#include <linux/buffer_head.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050014#include <linux/gfs2_ondisk.h>
Steven Whitehouse6802e342008-05-21 17:03:22 +010015#include <linux/bio.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000016
17#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050018#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000019#include "bmap.h"
20#include "glock.h"
21#include "glops.h"
22#include "inode.h"
23#include "log.h"
24#include "meta_io.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000025#include "recovery.h"
26#include "rgrp.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050027#include "util.h"
Steven Whitehouseddacfaf2006-10-03 11:10:41 -040028#include "trans.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000029
Steven Whitehouseddacfaf2006-10-03 11:10:41 -040030/**
31 * ail_empty_gl - remove all buffers for a given lock from the AIL
32 * @gl: the glock
33 *
34 * None of the buffers should be dirty, locked, or pinned.
35 */
36
37static void gfs2_ail_empty_gl(struct gfs2_glock *gl)
38{
39 struct gfs2_sbd *sdp = gl->gl_sbd;
Steven Whitehouseddacfaf2006-10-03 11:10:41 -040040 struct list_head *head = &gl->gl_ail_list;
41 struct gfs2_bufdata *bd;
42 struct buffer_head *bh;
Steven Whitehoused8348de2009-02-05 10:12:38 +000043 struct gfs2_trans tr;
Steven Whitehouseddacfaf2006-10-03 11:10:41 -040044
Steven Whitehoused8348de2009-02-05 10:12:38 +000045 memset(&tr, 0, sizeof(tr));
46 tr.tr_revokes = atomic_read(&gl->gl_ail_count);
47
48 if (!tr.tr_revokes)
Steven Whitehouseddacfaf2006-10-03 11:10:41 -040049 return;
50
Steven Whitehoused8348de2009-02-05 10:12:38 +000051 /* A shortened, inline version of gfs2_trans_begin() */
52 tr.tr_reserved = 1 + gfs2_struct2blk(sdp, tr.tr_revokes, sizeof(u64));
53 tr.tr_ip = (unsigned long)__builtin_return_address(0);
54 INIT_LIST_HEAD(&tr.tr_list_buf);
55 gfs2_log_reserve(sdp, tr.tr_reserved);
56 BUG_ON(current->journal_info);
57 current->journal_info = &tr;
Steven Whitehouseddacfaf2006-10-03 11:10:41 -040058
59 gfs2_log_lock(sdp);
60 while (!list_empty(head)) {
61 bd = list_entry(head->next, struct gfs2_bufdata,
62 bd_ail_gl_list);
63 bh = bd->bd_bh;
Steven Whitehousef91a0d32007-10-15 16:29:05 +010064 gfs2_remove_from_ail(bd);
Steven Whitehouse1ad38c42007-09-03 11:01:33 +010065 bd->bd_bh = NULL;
66 bh->b_private = NULL;
67 bd->bd_blkno = bh->b_blocknr;
68 gfs2_assert_withdraw(sdp, !buffer_busy(bh));
69 gfs2_trans_add_revoke(sdp, bd);
Steven Whitehouseddacfaf2006-10-03 11:10:41 -040070 }
71 gfs2_assert_withdraw(sdp, !atomic_read(&gl->gl_ail_count));
72 gfs2_log_unlock(sdp);
73
74 gfs2_trans_end(sdp);
75 gfs2_log_flush(sdp, NULL);
76}
Steven Whitehouseba7f7292006-07-26 11:27:10 -040077
78/**
79 * gfs2_pte_inval - Sync and invalidate all PTEs associated with a glock
80 * @gl: the glock
81 *
82 */
83
84static void gfs2_pte_inval(struct gfs2_glock *gl)
85{
86 struct gfs2_inode *ip;
87 struct inode *inode;
88
89 ip = gl->gl_object;
90 inode = &ip->i_inode;
Steven Whitehouseb60623c2006-11-01 12:22:46 -050091 if (!ip || !S_ISREG(inode->i_mode))
Steven Whitehouseba7f7292006-07-26 11:27:10 -040092 return;
93
Steven Whitehouseba7f7292006-07-26 11:27:10 -040094 unmap_shared_mapping_range(inode->i_mapping, 0, 0);
Steven Whitehouseba7f7292006-07-26 11:27:10 -040095 if (test_bit(GIF_SW_PAGED, &ip->i_flags))
96 set_bit(GLF_DIRTY, &gl->gl_flags);
97
Steven Whitehouseba7f7292006-07-26 11:27:10 -040098}
99
100/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000101 * meta_go_sync - sync out the metadata for this glock
102 * @gl: the glock
David Teiglandb3b94fa2006-01-16 16:50:04 +0000103 *
104 * Called when demoting or unlocking an EX glock. We must flush
105 * to disk all dirty buffers/pages relating to this glock, and must not
106 * not return to caller to demote/unlock the glock until I/O is complete.
107 */
108
Steven Whitehouse1a14d3a2006-11-20 10:37:45 -0500109static void meta_go_sync(struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000110{
Steven Whitehouseb5d32be2007-01-22 12:15:34 -0500111 if (gl->gl_state != LM_ST_EXCLUSIVE)
112 return;
113
David Teiglandb3b94fa2006-01-16 16:50:04 +0000114 if (test_and_clear_bit(GLF_DIRTY, &gl->gl_flags)) {
Steven Whitehouseb09e5932006-04-07 11:17:32 -0400115 gfs2_log_flush(gl->gl_sbd, gl);
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400116 gfs2_meta_sync(gl);
Steven Whitehouse1a14d3a2006-11-20 10:37:45 -0500117 gfs2_ail_empty_gl(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000118 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000119}
120
121/**
122 * meta_go_inval - invalidate the metadata for this glock
123 * @gl: the glock
124 * @flags:
125 *
126 */
127
128static void meta_go_inval(struct gfs2_glock *gl, int flags)
129{
130 if (!(flags & DIO_METADATA))
131 return;
132
133 gfs2_meta_inval(gl);
Bob Petersoncf45b752008-01-31 10:31:39 -0600134 if (gl->gl_object == GFS2_I(gl->gl_sbd->sd_rindex))
135 gl->gl_sbd->sd_rindex_uptodate = 0;
136 else if (gl->gl_ops == &gfs2_rgrp_glops && gl->gl_object) {
137 struct gfs2_rgrpd *rgd = (struct gfs2_rgrpd *)gl->gl_object;
138
139 rgd->rd_flags &= ~GFS2_RDF_UPTODATE;
140 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000141}
142
143/**
Steven Whitehouseb5d32be2007-01-22 12:15:34 -0500144 * inode_go_sync - Sync the dirty data and/or metadata for an inode glock
145 * @gl: the glock protecting the inode
146 *
147 */
148
149static void inode_go_sync(struct gfs2_glock *gl)
150{
151 struct gfs2_inode *ip = gl->gl_object;
Steven Whitehouse3042a2c2007-11-02 08:39:34 +0000152 struct address_space *metamapping = gl->gl_aspace->i_mapping;
153 int error;
154
155 if (gl->gl_state != LM_ST_UNLOCKED)
156 gfs2_pte_inval(gl);
157 if (gl->gl_state != LM_ST_EXCLUSIVE)
158 return;
Steven Whitehouseb5d32be2007-01-22 12:15:34 -0500159
160 if (ip && !S_ISREG(ip->i_inode.i_mode))
161 ip = NULL;
162
163 if (test_bit(GLF_DIRTY, &gl->gl_flags)) {
Benjamin Marzinskib524fe62007-05-02 09:44:03 -0500164 gfs2_log_flush(gl->gl_sbd, gl);
Steven Whitehouse3042a2c2007-11-02 08:39:34 +0000165 filemap_fdatawrite(metamapping);
Steven Whitehouseb5d32be2007-01-22 12:15:34 -0500166 if (ip) {
167 struct address_space *mapping = ip->i_inode.i_mapping;
Steven Whitehouse3042a2c2007-11-02 08:39:34 +0000168 filemap_fdatawrite(mapping);
169 error = filemap_fdatawait(mapping);
Guillaume Chazarain3e9f45b2007-05-08 00:23:25 -0700170 mapping_set_error(mapping, error);
Steven Whitehouseb5d32be2007-01-22 12:15:34 -0500171 }
Steven Whitehouse3042a2c2007-11-02 08:39:34 +0000172 error = filemap_fdatawait(metamapping);
173 mapping_set_error(metamapping, error);
Steven Whitehouseb5d32be2007-01-22 12:15:34 -0500174 clear_bit(GLF_DIRTY, &gl->gl_flags);
175 gfs2_ail_empty_gl(gl);
176 }
177}
178
179/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000180 * inode_go_inval - prepare a inode glock to be released
181 * @gl: the glock
182 * @flags:
183 *
184 */
185
186static void inode_go_inval(struct gfs2_glock *gl, int flags)
187{
Steven Whitehouseb0041572006-11-23 10:51:34 -0500188 struct gfs2_inode *ip = gl->gl_object;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000189 int meta = (flags & DIO_METADATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000190
191 if (meta) {
192 gfs2_meta_inval(gl);
Steven Whitehouseb0041572006-11-23 10:51:34 -0500193 if (ip)
194 set_bit(GIF_INVALID, &ip->i_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000195 }
Steven Whitehouseb0041572006-11-23 10:51:34 -0500196
Steven Whitehouse3cc3f712007-10-15 15:40:33 +0100197 if (ip && S_ISREG(ip->i_inode.i_mode))
Steven Whitehouseb0041572006-11-23 10:51:34 -0500198 truncate_inode_pages(ip->i_inode.i_mapping, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000199}
200
201/**
202 * inode_go_demote_ok - Check to see if it's ok to unlock an inode glock
203 * @gl: the glock
204 *
205 * Returns: 1 if it's ok
206 */
207
Steven Whitehouse97cc1022008-11-20 13:39:47 +0000208static int inode_go_demote_ok(const struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000209{
210 struct gfs2_sbd *sdp = gl->gl_sbd;
Steven Whitehouse97cc1022008-11-20 13:39:47 +0000211 if (sdp->sd_jindex == gl->gl_object || sdp->sd_rindex == gl->gl_object)
212 return 0;
213 return 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000214}
215
216/**
217 * inode_go_lock - operation done after an inode lock is locked by a process
218 * @gl: the glock
219 * @flags:
220 *
221 * Returns: errno
222 */
223
224static int inode_go_lock(struct gfs2_holder *gh)
225{
226 struct gfs2_glock *gl = gh->gh_gl;
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000227 struct gfs2_sbd *sdp = gl->gl_sbd;
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500228 struct gfs2_inode *ip = gl->gl_object;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000229 int error = 0;
230
Bob Peterson091806e2008-04-29 12:35:48 -0500231 if (!ip || (gh->gh_flags & GL_SKIP))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000232 return 0;
233
Steven Whitehousebfded272006-11-01 16:05:38 -0500234 if (test_bit(GIF_INVALID, &ip->i_flags)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000235 error = gfs2_inode_refresh(ip);
236 if (error)
237 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000238 }
239
Steven Whitehouse383f01f2008-11-04 10:05:22 +0000240 if ((ip->i_diskflags & GFS2_DIF_TRUNC_IN_PROG) &&
David Teiglandb3b94fa2006-01-16 16:50:04 +0000241 (gl->gl_state == LM_ST_EXCLUSIVE) &&
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000242 (gh->gh_state == LM_ST_EXCLUSIVE)) {
243 spin_lock(&sdp->sd_trunc_lock);
244 if (list_empty(&ip->i_trunc_list))
245 list_add(&sdp->sd_trunc_list, &ip->i_trunc_list);
246 spin_unlock(&sdp->sd_trunc_lock);
247 wake_up(&sdp->sd_quota_wait);
248 return 1;
249 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000250
251 return error;
252}
253
254/**
Steven Whitehouse6802e342008-05-21 17:03:22 +0100255 * inode_go_dump - print information about an inode
256 * @seq: The iterator
257 * @ip: the inode
258 *
259 * Returns: 0 on success, -ENOBUFS when we run out of space
260 */
261
262static int inode_go_dump(struct seq_file *seq, const struct gfs2_glock *gl)
263{
264 const struct gfs2_inode *ip = gl->gl_object;
265 if (ip == NULL)
266 return 0;
Steven Whitehousefa75ced2008-11-10 10:10:12 +0000267 gfs2_print_dbg(seq, " I: n:%llu/%llu t:%u f:0x%02lx d:0x%08x s:%llu/%llu\n",
Steven Whitehouse6802e342008-05-21 17:03:22 +0100268 (unsigned long long)ip->i_no_formal_ino,
269 (unsigned long long)ip->i_no_addr,
Steven Whitehousefa75ced2008-11-10 10:10:12 +0000270 IF2DT(ip->i_inode.i_mode), ip->i_flags,
271 (unsigned int)ip->i_diskflags,
272 (unsigned long long)ip->i_inode.i_size,
273 (unsigned long long)ip->i_disksize);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100274 return 0;
275}
276
277/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000278 * rgrp_go_demote_ok - Check to see if it's ok to unlock a RG's glock
279 * @gl: the glock
280 *
281 * Returns: 1 if it's ok
282 */
283
Steven Whitehouse97cc1022008-11-20 13:39:47 +0000284static int rgrp_go_demote_ok(const struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000285{
286 return !gl->gl_aspace->i_mapping->nrpages;
287}
288
289/**
290 * rgrp_go_lock - operation done after an rgrp lock is locked by
291 * a first holder on this node.
292 * @gl: the glock
293 * @flags:
294 *
295 * Returns: errno
296 */
297
298static int rgrp_go_lock(struct gfs2_holder *gh)
299{
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500300 return gfs2_rgrp_bh_get(gh->gh_gl->gl_object);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000301}
302
303/**
304 * rgrp_go_unlock - operation done before an rgrp lock is unlocked by
305 * a last holder on this node.
306 * @gl: the glock
307 * @flags:
308 *
309 */
310
311static void rgrp_go_unlock(struct gfs2_holder *gh)
312{
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500313 gfs2_rgrp_bh_put(gh->gh_gl->gl_object);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000314}
315
316/**
Steven Whitehouse6802e342008-05-21 17:03:22 +0100317 * rgrp_go_dump - print out an rgrp
318 * @seq: The iterator
319 * @gl: The glock in question
320 *
321 */
322
323static int rgrp_go_dump(struct seq_file *seq, const struct gfs2_glock *gl)
324{
325 const struct gfs2_rgrpd *rgd = gl->gl_object;
326 if (rgd == NULL)
327 return 0;
Steven Whitehousefa75ced2008-11-10 10:10:12 +0000328 gfs2_print_dbg(seq, " R: n:%llu f:%02x b:%u/%u i:%u\n",
329 (unsigned long long)rgd->rd_addr, rgd->rd_flags,
330 rgd->rd_free, rgd->rd_free_clone, rgd->rd_dinodes);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100331 return 0;
332}
333
334/**
Steven Whitehouse3042a2c2007-11-02 08:39:34 +0000335 * trans_go_sync - promote/demote the transaction glock
David Teiglandb3b94fa2006-01-16 16:50:04 +0000336 * @gl: the glock
337 * @state: the requested state
338 * @flags:
339 *
340 */
341
Steven Whitehouse3042a2c2007-11-02 08:39:34 +0000342static void trans_go_sync(struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000343{
344 struct gfs2_sbd *sdp = gl->gl_sbd;
345
346 if (gl->gl_state != LM_ST_UNLOCKED &&
347 test_bit(SDF_JOURNAL_LIVE, &sdp->sd_flags)) {
348 gfs2_meta_syncfs(sdp);
349 gfs2_log_shutdown(sdp);
350 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000351}
352
353/**
354 * trans_go_xmote_bh - After promoting/demoting the transaction glock
355 * @gl: the glock
356 *
357 */
358
Steven Whitehouse6802e342008-05-21 17:03:22 +0100359static int trans_go_xmote_bh(struct gfs2_glock *gl, struct gfs2_holder *gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000360{
361 struct gfs2_sbd *sdp = gl->gl_sbd;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400362 struct gfs2_inode *ip = GFS2_I(sdp->sd_jdesc->jd_inode);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500363 struct gfs2_glock *j_gl = ip->i_gl;
Al Viro55167622006-10-13 21:47:13 -0400364 struct gfs2_log_header_host head;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000365 int error;
366
Steven Whitehouse6802e342008-05-21 17:03:22 +0100367 if (test_bit(SDF_JOURNAL_LIVE, &sdp->sd_flags)) {
Steven Whitehouse1a14d3a2006-11-20 10:37:45 -0500368 j_gl->gl_ops->go_inval(j_gl, DIO_METADATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000369
370 error = gfs2_find_jhead(sdp->sd_jdesc, &head);
371 if (error)
372 gfs2_consist(sdp);
373 if (!(head.lh_flags & GFS2_LOG_HEAD_UNMOUNT))
374 gfs2_consist(sdp);
375
376 /* Initialize some head of the log stuff */
377 if (!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)) {
378 sdp->sd_log_sequence = head.lh_sequence + 1;
379 gfs2_log_pointers_init(sdp, head.lh_blkno);
380 }
381 }
Steven Whitehouse6802e342008-05-21 17:03:22 +0100382 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000383}
384
385/**
Steven Whitehouse97cc1022008-11-20 13:39:47 +0000386 * trans_go_demote_ok
387 * @gl: the glock
388 *
389 * Always returns 0
390 */
391
392static int trans_go_demote_ok(const struct gfs2_glock *gl)
393{
394 return 0;
395}
396
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400397const struct gfs2_glock_operations gfs2_meta_glops = {
Steven Whitehouseb5d32be2007-01-22 12:15:34 -0500398 .go_xmote_th = meta_go_sync,
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400399 .go_type = LM_TYPE_META,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000400};
401
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400402const struct gfs2_glock_operations gfs2_inode_glops = {
Steven Whitehouse3042a2c2007-11-02 08:39:34 +0000403 .go_xmote_th = inode_go_sync,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000404 .go_inval = inode_go_inval,
405 .go_demote_ok = inode_go_demote_ok,
406 .go_lock = inode_go_lock,
Steven Whitehouse6802e342008-05-21 17:03:22 +0100407 .go_dump = inode_go_dump,
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400408 .go_type = LM_TYPE_INODE,
Steven Whitehouse6802e342008-05-21 17:03:22 +0100409 .go_min_hold_time = HZ / 5,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000410};
411
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400412const struct gfs2_glock_operations gfs2_rgrp_glops = {
Steven Whitehousecad5b932007-02-28 14:03:00 +0000413 .go_xmote_th = meta_go_sync,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000414 .go_inval = meta_go_inval,
415 .go_demote_ok = rgrp_go_demote_ok,
416 .go_lock = rgrp_go_lock,
417 .go_unlock = rgrp_go_unlock,
Steven Whitehouse6802e342008-05-21 17:03:22 +0100418 .go_dump = rgrp_go_dump,
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400419 .go_type = LM_TYPE_RGRP,
Steven Whitehouse6802e342008-05-21 17:03:22 +0100420 .go_min_hold_time = HZ / 5,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000421};
422
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400423const struct gfs2_glock_operations gfs2_trans_glops = {
Steven Whitehouse3042a2c2007-11-02 08:39:34 +0000424 .go_xmote_th = trans_go_sync,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000425 .go_xmote_bh = trans_go_xmote_bh,
Steven Whitehouse97cc1022008-11-20 13:39:47 +0000426 .go_demote_ok = trans_go_demote_ok,
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400427 .go_type = LM_TYPE_NONDISK,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000428};
429
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400430const struct gfs2_glock_operations gfs2_iopen_glops = {
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400431 .go_type = LM_TYPE_IOPEN,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000432};
433
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400434const struct gfs2_glock_operations gfs2_flock_glops = {
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400435 .go_type = LM_TYPE_FLOCK,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000436};
437
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400438const struct gfs2_glock_operations gfs2_nondisk_glops = {
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400439 .go_type = LM_TYPE_NONDISK,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000440};
441
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400442const struct gfs2_glock_operations gfs2_quota_glops = {
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400443 .go_type = LM_TYPE_QUOTA,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000444};
445
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400446const struct gfs2_glock_operations gfs2_journal_glops = {
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400447 .go_type = LM_TYPE_JOURNAL,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000448};
449