blob: 6d80ecc7834f55ff2e7151b38cc6540ad1b08b51 [file] [log] [blame]
Mark Fashehccd979b2005-12-15 14:31:24 -08001/* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
3 *
4 * dcache.c
5 *
6 * dentry cache handling code
7 *
8 * Copyright (C) 2002, 2004 Oracle. All rights reserved.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public
12 * License as published by the Free Software Foundation; either
13 * version 2 of the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public
21 * License along with this program; if not, write to the
22 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 * Boston, MA 021110-1307, USA.
24 */
25
26#include <linux/fs.h>
27#include <linux/types.h>
28#include <linux/slab.h>
29#include <linux/namei.h>
30
31#define MLOG_MASK_PREFIX ML_DCACHE
32#include <cluster/masklog.h>
33
34#include "ocfs2.h"
35
36#include "alloc.h"
37#include "dcache.h"
Mark Fasheh80c05842006-09-08 14:43:18 -070038#include "dlmglue.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080039#include "file.h"
40#include "inode.h"
Jan Karaea455f82009-01-12 23:20:31 +010041#include "super.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080042
Goldwyn Rodrigues5e98d492010-06-28 10:04:32 -050043void ocfs2_dentry_attach_gen(struct dentry *dentry)
44{
45 unsigned long gen =
46 OCFS2_I(dentry->d_parent->d_inode)->ip_dir_lock_gen;
47 BUG_ON(dentry->d_inode);
48 dentry->d_fsdata = (void *)gen;
49}
50
Mark Fasheh80c05842006-09-08 14:43:18 -070051
Mark Fashehccd979b2005-12-15 14:31:24 -080052static int ocfs2_dentry_revalidate(struct dentry *dentry,
53 struct nameidata *nd)
54{
Nick Piggin34286d62011-01-07 17:49:57 +110055 struct inode *inode;
Mark Fashehccd979b2005-12-15 14:31:24 -080056 int ret = 0; /* if all else fails, just return false */
Nick Piggin34286d62011-01-07 17:49:57 +110057 struct ocfs2_super *osb;
58
59 if (nd->flags & LOOKUP_RCU)
60 return -ECHILD;
61
62 inode = dentry->d_inode;
63 osb = OCFS2_SB(dentry->d_sb);
Mark Fashehccd979b2005-12-15 14:31:24 -080064
65 mlog_entry("(0x%p, '%.*s')\n", dentry,
66 dentry->d_name.len, dentry->d_name.name);
67
Goldwyn Rodrigues5e98d492010-06-28 10:04:32 -050068 /* For a negative dentry -
69 * check the generation number of the parent and compare with the
70 * one stored in the inode.
71 */
Mark Fashehccd979b2005-12-15 14:31:24 -080072 if (inode == NULL) {
Goldwyn Rodrigues5e98d492010-06-28 10:04:32 -050073 unsigned long gen = (unsigned long) dentry->d_fsdata;
74 unsigned long pgen =
75 OCFS2_I(dentry->d_parent->d_inode)->ip_dir_lock_gen;
76 mlog(0, "negative dentry: %.*s parent gen: %lu "
77 "dentry gen: %lu\n",
78 dentry->d_name.len, dentry->d_name.name, pgen, gen);
79 if (gen != pgen)
80 goto bail;
81 goto valid;
Mark Fashehccd979b2005-12-15 14:31:24 -080082 }
83
Mark Fashehccd979b2005-12-15 14:31:24 -080084 BUG_ON(!osb);
85
Mark Fasheh80c05842006-09-08 14:43:18 -070086 if (inode == osb->root_inode || is_bad_inode(inode))
87 goto bail;
Mark Fashehccd979b2005-12-15 14:31:24 -080088
Mark Fasheh80c05842006-09-08 14:43:18 -070089 spin_lock(&OCFS2_I(inode)->ip_lock);
90 /* did we or someone else delete this inode? */
91 if (OCFS2_I(inode)->ip_flags & OCFS2_INODE_DELETED) {
92 spin_unlock(&OCFS2_I(inode)->ip_lock);
93 mlog(0, "inode (%llu) deleted, returning false\n",
94 (unsigned long long)OCFS2_I(inode)->ip_blkno);
95 goto bail;
96 }
97 spin_unlock(&OCFS2_I(inode)->ip_lock);
98
99 /*
100 * We don't need a cluster lock to test this because once an
101 * inode nlink hits zero, it never goes back.
102 */
103 if (inode->i_nlink == 0) {
104 mlog(0, "Inode %llu orphaned, returning false "
105 "dir = %d\n",
106 (unsigned long long)OCFS2_I(inode)->ip_blkno,
107 S_ISDIR(inode->i_mode));
108 goto bail;
Mark Fashehccd979b2005-12-15 14:31:24 -0800109 }
110
Tao Maa1b08e72009-08-27 14:46:56 +0800111 /*
112 * If the last lookup failed to create dentry lock, let us
113 * redo it.
114 */
115 if (!dentry->d_fsdata) {
116 mlog(0, "Inode %llu doesn't have dentry lock, "
117 "returning false\n",
118 (unsigned long long)OCFS2_I(inode)->ip_blkno);
119 goto bail;
120 }
121
Goldwyn Rodrigues5e98d492010-06-28 10:04:32 -0500122valid:
Mark Fashehccd979b2005-12-15 14:31:24 -0800123 ret = 1;
124
125bail:
126 mlog_exit(ret);
127
128 return ret;
129}
130
Mark Fasheh80c05842006-09-08 14:43:18 -0700131static int ocfs2_match_dentry(struct dentry *dentry,
132 u64 parent_blkno,
133 int skip_unhashed)
134{
135 struct inode *parent;
136
137 /*
138 * ocfs2_lookup() does a d_splice_alias() _before_ attaching
139 * to the lock data, so we skip those here, otherwise
140 * ocfs2_dentry_attach_lock() will get its original dentry
141 * back.
142 */
143 if (!dentry->d_fsdata)
144 return 0;
145
146 if (!dentry->d_parent)
147 return 0;
148
149 if (skip_unhashed && d_unhashed(dentry))
150 return 0;
151
152 parent = dentry->d_parent->d_inode;
153 /* Negative parent dentry? */
154 if (!parent)
155 return 0;
156
157 /* Name is in a different directory. */
158 if (OCFS2_I(parent)->ip_blkno != parent_blkno)
159 return 0;
160
161 return 1;
162}
163
164/*
165 * Walk the inode alias list, and find a dentry which has a given
166 * parent. ocfs2_dentry_attach_lock() wants to find _any_ alias as it
Mark Fasheh34d024f2007-09-24 15:56:19 -0700167 * is looking for a dentry_lock reference. The downconvert thread is
168 * looking to unhash aliases, so we allow it to skip any that already
169 * have that property.
Mark Fasheh80c05842006-09-08 14:43:18 -0700170 */
171struct dentry *ocfs2_find_local_alias(struct inode *inode,
172 u64 parent_blkno,
173 int skip_unhashed)
174{
175 struct list_head *p;
176 struct dentry *dentry = NULL;
177
Nick Piggin873feea2011-01-07 17:50:06 +1100178 spin_lock(&inode->i_lock);
Mark Fasheh80c05842006-09-08 14:43:18 -0700179 list_for_each(p, &inode->i_dentry) {
180 dentry = list_entry(p, struct dentry, d_alias);
181
Nick Pigginda502952011-01-07 17:49:33 +1100182 spin_lock(&dentry->d_lock);
Mark Fasheh80c05842006-09-08 14:43:18 -0700183 if (ocfs2_match_dentry(dentry, parent_blkno, skip_unhashed)) {
184 mlog(0, "dentry found: %.*s\n",
185 dentry->d_name.len, dentry->d_name.name);
186
Nick Piggindc0474b2011-01-07 17:49:43 +1100187 dget_dlock(dentry);
Nick Pigginda502952011-01-07 17:49:33 +1100188 spin_unlock(&dentry->d_lock);
Mark Fasheh80c05842006-09-08 14:43:18 -0700189 break;
190 }
Nick Pigginda502952011-01-07 17:49:33 +1100191 spin_unlock(&dentry->d_lock);
Mark Fasheh80c05842006-09-08 14:43:18 -0700192
193 dentry = NULL;
194 }
195
Nick Piggin873feea2011-01-07 17:50:06 +1100196 spin_unlock(&inode->i_lock);
Mark Fasheh80c05842006-09-08 14:43:18 -0700197
198 return dentry;
199}
200
Mark Fashehd680efe2006-09-08 14:14:34 -0700201DEFINE_SPINLOCK(dentry_attach_lock);
202
Mark Fasheh80c05842006-09-08 14:43:18 -0700203/*
204 * Attach this dentry to a cluster lock.
205 *
206 * Dentry locks cover all links in a given directory to a particular
207 * inode. We do this so that ocfs2 can build a lock name which all
208 * nodes in the cluster can agree on at all times. Shoving full names
209 * in the cluster lock won't work due to size restrictions. Covering
210 * links inside of a directory is a good compromise because it still
211 * allows us to use the parent directory lock to synchronize
212 * operations.
213 *
214 * Call this function with the parent dir semaphore and the parent dir
215 * cluster lock held.
216 *
217 * The dir semaphore will protect us from having to worry about
218 * concurrent processes on our node trying to attach a lock at the
219 * same time.
220 *
221 * The dir cluster lock (held at either PR or EX mode) protects us
222 * from unlink and rename on other nodes.
223 *
Mark Fasheh80c05842006-09-08 14:43:18 -0700224 * A dput() can happen asynchronously due to pruning, so we cover
225 * attaching and detaching the dentry lock with a
226 * dentry_attach_lock.
227 *
228 * A node which has done lookup on a name retains a protected read
229 * lock until final dput. If the user requests and unlink or rename,
230 * the protected read is upgraded to an exclusive lock. Other nodes
231 * who have seen the dentry will then be informed that they need to
232 * downgrade their lock, which will involve d_delete on the
233 * dentry. This happens in ocfs2_dentry_convert_worker().
234 */
235int ocfs2_dentry_attach_lock(struct dentry *dentry,
236 struct inode *inode,
Mark Fasheh0027dd52006-09-21 16:51:28 -0700237 u64 parent_blkno)
Mark Fasheh80c05842006-09-08 14:43:18 -0700238{
239 int ret;
240 struct dentry *alias;
241 struct ocfs2_dentry_lock *dl = dentry->d_fsdata;
242
Mark Fasheh0027dd52006-09-21 16:51:28 -0700243 mlog(0, "Attach \"%.*s\", parent %llu, fsdata: %p\n",
Mark Fasheh80c05842006-09-08 14:43:18 -0700244 dentry->d_name.len, dentry->d_name.name,
Mark Fasheh0027dd52006-09-21 16:51:28 -0700245 (unsigned long long)parent_blkno, dl);
Mark Fasheh80c05842006-09-08 14:43:18 -0700246
247 /*
248 * Negative dentry. We ignore these for now.
249 *
250 * XXX: Could we can improve ocfs2_dentry_revalidate() by
251 * tracking these?
252 */
253 if (!inode)
254 return 0;
255
Goldwyn Rodrigues5e98d492010-06-28 10:04:32 -0500256 if (!dentry->d_inode && dentry->d_fsdata) {
257 /* Converting a negative dentry to positive
258 Clear dentry->d_fsdata */
259 dentry->d_fsdata = dl = NULL;
260 }
261
Mark Fasheh80c05842006-09-08 14:43:18 -0700262 if (dl) {
263 mlog_bug_on_msg(dl->dl_parent_blkno != parent_blkno,
264 " \"%.*s\": old parent: %llu, new: %llu\n",
265 dentry->d_name.len, dentry->d_name.name,
266 (unsigned long long)parent_blkno,
267 (unsigned long long)dl->dl_parent_blkno);
268 return 0;
269 }
270
271 alias = ocfs2_find_local_alias(inode, parent_blkno, 0);
272 if (alias) {
273 /*
274 * Great, an alias exists, which means we must have a
275 * dentry lock already. We can just grab the lock off
276 * the alias and add it to the list.
277 *
278 * We're depending here on the fact that this dentry
279 * was found and exists in the dcache and so must have
280 * a reference to the dentry_lock because we can't
281 * race creates. Final dput() cannot happen on it
282 * since we have it pinned, so our reference is safe.
283 */
284 dl = alias->d_fsdata;
Mark Fasheh0027dd52006-09-21 16:51:28 -0700285 mlog_bug_on_msg(!dl, "parent %llu, ino %llu\n",
Mark Fasheh80c05842006-09-08 14:43:18 -0700286 (unsigned long long)parent_blkno,
Mark Fasheh0027dd52006-09-21 16:51:28 -0700287 (unsigned long long)OCFS2_I(inode)->ip_blkno);
Mark Fasheh80c05842006-09-08 14:43:18 -0700288
289 mlog_bug_on_msg(dl->dl_parent_blkno != parent_blkno,
290 " \"%.*s\": old parent: %llu, new: %llu\n",
291 dentry->d_name.len, dentry->d_name.name,
292 (unsigned long long)parent_blkno,
293 (unsigned long long)dl->dl_parent_blkno);
294
295 mlog(0, "Found: %s\n", dl->dl_lockres.l_name);
296
297 goto out_attach;
298 }
299
300 /*
301 * There are no other aliases
302 */
303 dl = kmalloc(sizeof(*dl), GFP_NOFS);
304 if (!dl) {
305 ret = -ENOMEM;
306 mlog_errno(ret);
307 return ret;
308 }
309
310 dl->dl_count = 0;
311 /*
312 * Does this have to happen below, for all attaches, in case
Mark Fasheh34d024f2007-09-24 15:56:19 -0700313 * the struct inode gets blown away by the downconvert thread?
Mark Fasheh80c05842006-09-08 14:43:18 -0700314 */
315 dl->dl_inode = igrab(inode);
316 dl->dl_parent_blkno = parent_blkno;
317 ocfs2_dentry_lock_res_init(dl, parent_blkno, inode);
318
319out_attach:
320 spin_lock(&dentry_attach_lock);
321 dentry->d_fsdata = dl;
322 dl->dl_count++;
323 spin_unlock(&dentry_attach_lock);
324
325 /*
Mark Fasheh80c05842006-09-08 14:43:18 -0700326 * This actually gets us our PRMODE level lock. From now on,
327 * we'll have a notification if one of these names is
328 * destroyed on another node.
329 */
330 ret = ocfs2_dentry_lock(dentry, 0);
Mark Fasheh0027dd52006-09-21 16:51:28 -0700331 if (!ret)
332 ocfs2_dentry_unlock(dentry, 0);
333 else
Mark Fasheh80c05842006-09-08 14:43:18 -0700334 mlog_errno(ret);
Mark Fasheh80c05842006-09-08 14:43:18 -0700335
Sunil Mushrana5a0a632009-04-20 21:34:18 -0700336 /*
337 * In case of error, manually free the allocation and do the iput().
338 * We need to do this because error here means no d_instantiate(),
339 * which means iput() will not be called during dput(dentry).
340 */
341 if (ret < 0 && !alias) {
342 ocfs2_lock_res_free(&dl->dl_lockres);
343 BUG_ON(dl->dl_count != 1);
344 spin_lock(&dentry_attach_lock);
345 dentry->d_fsdata = NULL;
346 spin_unlock(&dentry_attach_lock);
347 kfree(dl);
348 iput(inode);
349 }
350
Mark Fasheh80c05842006-09-08 14:43:18 -0700351 dput(alias);
352
353 return ret;
354}
355
Jan Karaf7b1aa62009-07-20 12:12:36 +0200356DEFINE_SPINLOCK(dentry_list_lock);
Jan Karaea455f82009-01-12 23:20:31 +0100357
358/* We limit the number of dentry locks to drop in one go. We have
359 * this limit so that we don't starve other users of ocfs2_wq. */
360#define DL_INODE_DROP_COUNT 64
361
362/* Drop inode references from dentry locks */
Jan Karaf7b1aa62009-07-20 12:12:36 +0200363static void __ocfs2_drop_dl_inodes(struct ocfs2_super *osb, int drop_count)
Jan Karaea455f82009-01-12 23:20:31 +0100364{
Jan Karaea455f82009-01-12 23:20:31 +0100365 struct ocfs2_dentry_lock *dl;
Jan Karaea455f82009-01-12 23:20:31 +0100366
367 spin_lock(&dentry_list_lock);
Jan Karaf7b1aa62009-07-20 12:12:36 +0200368 while (osb->dentry_lock_list && (drop_count < 0 || drop_count--)) {
Jan Karaea455f82009-01-12 23:20:31 +0100369 dl = osb->dentry_lock_list;
370 osb->dentry_lock_list = dl->dl_next;
371 spin_unlock(&dentry_list_lock);
372 iput(dl->dl_inode);
373 kfree(dl);
374 spin_lock(&dentry_list_lock);
375 }
Jan Karaf7b1aa62009-07-20 12:12:36 +0200376 spin_unlock(&dentry_list_lock);
377}
378
379void ocfs2_drop_dl_inodes(struct work_struct *work)
380{
381 struct ocfs2_super *osb = container_of(work, struct ocfs2_super,
382 dentry_lock_work);
383
384 __ocfs2_drop_dl_inodes(osb, DL_INODE_DROP_COUNT);
385 /*
386 * Don't queue dropping if umount is in progress. We flush the
387 * list in ocfs2_dismount_volume
388 */
389 spin_lock(&dentry_list_lock);
390 if (osb->dentry_lock_list &&
391 !ocfs2_test_osb_flag(osb, OCFS2_OSB_DROP_DENTRY_LOCK_IMMED))
Jan Karaea455f82009-01-12 23:20:31 +0100392 queue_work(ocfs2_wq, &osb->dentry_lock_work);
393 spin_unlock(&dentry_list_lock);
394}
395
Jan Karaf7b1aa62009-07-20 12:12:36 +0200396/* Flush the whole work queue */
397void ocfs2_drop_all_dl_inodes(struct ocfs2_super *osb)
398{
399 __ocfs2_drop_dl_inodes(osb, -1);
400}
401
Mark Fasheh80c05842006-09-08 14:43:18 -0700402/*
403 * ocfs2_dentry_iput() and friends.
404 *
405 * At this point, our particular dentry is detached from the inodes
406 * alias list, so there's no way that the locking code can find it.
407 *
408 * The interesting stuff happens when we determine that our lock needs
409 * to go away because this is the last subdir alias in the
410 * system. This function needs to handle a couple things:
411 *
412 * 1) Synchronizing lock shutdown with the downconvert threads. This
413 * is already handled for us via the lockres release drop function
414 * called in ocfs2_release_dentry_lock()
415 *
416 * 2) A race may occur when we're doing our lock shutdown and
417 * another process wants to create a new dentry lock. Right now we
418 * let them race, which means that for a very short while, this
419 * node might have two locks on a lock resource. This should be a
420 * problem though because one of them is in the process of being
421 * thrown out.
422 */
423static void ocfs2_drop_dentry_lock(struct ocfs2_super *osb,
424 struct ocfs2_dentry_lock *dl)
425{
426 ocfs2_simple_drop_lockres(osb, &dl->dl_lockres);
427 ocfs2_lock_res_free(&dl->dl_lockres);
Jan Karaea455f82009-01-12 23:20:31 +0100428
429 /* We leave dropping of inode reference to ocfs2_wq as that can
430 * possibly lead to inode deletion which gets tricky */
431 spin_lock(&dentry_list_lock);
Jan Karaf7b1aa62009-07-20 12:12:36 +0200432 if (!osb->dentry_lock_list &&
433 !ocfs2_test_osb_flag(osb, OCFS2_OSB_DROP_DENTRY_LOCK_IMMED))
Jan Karaea455f82009-01-12 23:20:31 +0100434 queue_work(ocfs2_wq, &osb->dentry_lock_work);
435 dl->dl_next = osb->dentry_lock_list;
436 osb->dentry_lock_list = dl;
437 spin_unlock(&dentry_list_lock);
Mark Fasheh80c05842006-09-08 14:43:18 -0700438}
439
440void ocfs2_dentry_lock_put(struct ocfs2_super *osb,
441 struct ocfs2_dentry_lock *dl)
442{
Jan Karaea455f82009-01-12 23:20:31 +0100443 int unlock;
Mark Fasheh80c05842006-09-08 14:43:18 -0700444
445 BUG_ON(dl->dl_count == 0);
446
447 spin_lock(&dentry_attach_lock);
448 dl->dl_count--;
449 unlock = !dl->dl_count;
450 spin_unlock(&dentry_attach_lock);
451
452 if (unlock)
453 ocfs2_drop_dentry_lock(osb, dl);
454}
455
456static void ocfs2_dentry_iput(struct dentry *dentry, struct inode *inode)
457{
458 struct ocfs2_dentry_lock *dl = dentry->d_fsdata;
459
Mark Fashehbccb9da2007-11-07 16:35:14 -0800460 if (!dl) {
461 /*
462 * No dentry lock is ok if we're disconnected or
463 * unhashed.
464 */
465 if (!(dentry->d_flags & DCACHE_DISCONNECTED) &&
466 !d_unhashed(dentry)) {
467 unsigned long long ino = 0ULL;
468 if (inode)
469 ino = (unsigned long long)OCFS2_I(inode)->ip_blkno;
470 mlog(ML_ERROR, "Dentry is missing cluster lock. "
471 "inode: %llu, d_flags: 0x%x, d_name: %.*s\n",
472 ino, dentry->d_flags, dentry->d_name.len,
473 dentry->d_name.name);
474 }
Mark Fasheh80c05842006-09-08 14:43:18 -0700475
Mark Fasheh80c05842006-09-08 14:43:18 -0700476 goto out;
Mark Fashehbccb9da2007-11-07 16:35:14 -0800477 }
Mark Fasheh80c05842006-09-08 14:43:18 -0700478
479 mlog_bug_on_msg(dl->dl_count == 0, "dentry: %.*s, count: %u\n",
480 dentry->d_name.len, dentry->d_name.name,
481 dl->dl_count);
482
483 ocfs2_dentry_lock_put(OCFS2_SB(dentry->d_sb), dl);
484
485out:
486 iput(inode);
487}
488
489/*
490 * d_move(), but keep the locks in sync.
491 *
492 * When we are done, "dentry" will have the parent dir and name of
493 * "target", which will be thrown away.
494 *
495 * We manually update the lock of "dentry" if need be.
496 *
497 * "target" doesn't have it's dentry lock touched - we allow the later
498 * dput() to handle this for us.
499 *
500 * This is called during ocfs2_rename(), while holding parent
501 * directory locks. The dentries have already been deleted on other
502 * nodes via ocfs2_remote_dentry_delete().
503 *
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200504 * Normally, the VFS handles the d_move() for the file system, after
Mark Fasheh80c05842006-09-08 14:43:18 -0700505 * the ->rename() callback. OCFS2 wants to handle this internally, so
506 * the new lock can be created atomically with respect to the cluster.
507 */
508void ocfs2_dentry_move(struct dentry *dentry, struct dentry *target,
509 struct inode *old_dir, struct inode *new_dir)
510{
511 int ret;
512 struct ocfs2_super *osb = OCFS2_SB(old_dir->i_sb);
513 struct inode *inode = dentry->d_inode;
514
515 /*
516 * Move within the same directory, so the actual lock info won't
517 * change.
518 *
519 * XXX: Is there any advantage to dropping the lock here?
520 */
521 if (old_dir == new_dir)
Mark Fasheh1ba9da22006-09-08 14:22:54 -0700522 goto out_move;
Mark Fasheh80c05842006-09-08 14:43:18 -0700523
524 ocfs2_dentry_lock_put(osb, dentry->d_fsdata);
525
526 dentry->d_fsdata = NULL;
Mark Fasheh0027dd52006-09-21 16:51:28 -0700527 ret = ocfs2_dentry_attach_lock(dentry, inode, OCFS2_I(new_dir)->ip_blkno);
Mark Fasheh80c05842006-09-08 14:43:18 -0700528 if (ret)
529 mlog_errno(ret);
Mark Fasheh1ba9da22006-09-08 14:22:54 -0700530
531out_move:
532 d_move(dentry, target);
Mark Fasheh80c05842006-09-08 14:43:18 -0700533}
534
Al Virod8fba0f2009-02-20 06:00:26 +0000535const struct dentry_operations ocfs2_dentry_ops = {
Mark Fashehccd979b2005-12-15 14:31:24 -0800536 .d_revalidate = ocfs2_dentry_revalidate,
Mark Fasheh80c05842006-09-08 14:43:18 -0700537 .d_iput = ocfs2_dentry_iput,
Mark Fashehccd979b2005-12-15 14:31:24 -0800538};