Whamcloud - gitweb
Hooks for intent-based locks
[fs/lustre-release.git] / lustre / llite / dcache.c
1 /*
2  *
3  * This code is issued under the GNU General Public License.
4  * See the file COPYING in this distribution
5  *
6  *  Copyright (C) 2001, Cluster File Systems, Inc.
7  * 
8  */
9
10 #include <linux/fs.h>
11 #include <linux/locks.h>
12 #include <linux/quotaops.h>
13
14 #define DEBUG_SUBSYSTEM S_LLITE
15
16 #include <linux/obd_support.h>
17 #include <linux/lustre_lite.h>
18
19 extern struct address_space_operations ll_aops;
20
21 int ll_revalidate2(struct dentry *de, int flags, struct lookup_intent *it)
22 {
23         ENTRY;
24         
25
26         RETURN(1);
27 }
28
29
30 struct dentry_operations ll_d_ops = { 
31         d_revalidate2: ll_revalidate2
32 };