Whamcloud - gitweb
b=16098
[fs/lustre-release.git] / lustre / include / lustre_mdc.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/include/lustre_mdc.h
37  *
38  * MDS data structures.
39  * See also lustre_idl.h for wire formats of requests.
40  */
41
42 #ifndef _LUSTRE_MDC_H
43 #define _LUSTRE_MDC_H
44
45 #ifdef __KERNEL__
46 # include <linux/fs.h>
47 # include <linux/dcache.h>
48 # ifdef CONFIG_FS_POSIX_ACL
49 #  ifdef HAVE_XATTR_ACL
50 #   include <linux/xattr_acl.h>
51 #  endif /*HAVE_XATTR_ACL */
52 #  ifdef HAVE_LINUX_POSIX_ACL_XATTR_H
53 #   include <linux/posix_acl_xattr.h>
54 #  endif /* HAVE_LINUX_POSIX_ACL_XATTR_H */
55 # endif /* CONFIG_FS_POSIX_ACL */
56 # ifndef HAVE_VFS_INTENT_PATCHES
57 # include <linux/lustre_intent.h>
58 # endif /* HAVE_VFS_INTENT_PATCHES */
59 #endif /* __KERNEL__ */
60 #include <lustre_handles.h>
61 #include <libcfs/libcfs.h>
62 #include <lustre/lustre_idl.h>
63 #include <lustre_lib.h>
64 #include <lustre_dlm.h>
65 #include <lustre_log.h>
66 #include <lustre_export.h>
67
68 struct ptlrpc_client;
69 struct obd_export;
70 struct ptlrpc_request;
71 struct obd_device;
72
73 struct mdc_rpc_lock {
74         struct semaphore rpcl_sem;
75         struct lookup_intent *rpcl_it;
76 };
77
78 static inline void mdc_init_rpc_lock(struct mdc_rpc_lock *lck)
79 {
80         sema_init(&lck->rpcl_sem, 1);
81         lck->rpcl_it = NULL;
82 }
83
84 static inline void mdc_get_rpc_lock(struct mdc_rpc_lock *lck,
85                                     struct lookup_intent *it)
86 {
87         ENTRY;
88         if (!it || (it->it_op != IT_GETATTR && it->it_op != IT_LOOKUP)) {
89                 down(&lck->rpcl_sem);
90                 LASSERT(lck->rpcl_it == NULL);
91                 lck->rpcl_it = it;
92         }
93 }
94
95 static inline void mdc_put_rpc_lock(struct mdc_rpc_lock *lck,
96                                     struct lookup_intent *it)
97 {
98         if (!it || (it->it_op != IT_GETATTR && it->it_op != IT_LOOKUP)) {
99                 LASSERT(it == lck->rpcl_it);
100                 lck->rpcl_it = NULL;
101                 up(&lck->rpcl_sem);
102         }
103         EXIT;
104 }
105
106 struct mdc_cache_waiter {       
107         struct list_head        mcw_entry;
108         cfs_waitq_t             mcw_waitq;
109 };
110
111 /* mdc/mdc_locks.c */
112 int it_disposition(struct lookup_intent *it, int flag);
113 void it_clear_disposition(struct lookup_intent *it, int flag);
114 void it_set_disposition(struct lookup_intent *it, int flag);
115 int it_open_error(int phase, struct lookup_intent *it);
116 #ifdef HAVE_SPLIT_SUPPORT
117 int mdc_sendpage(struct obd_export *exp, const struct lu_fid *fid,
118                  const struct page *page, int offset);
119 #endif
120 #endif