1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2 * vim:expandtab:shiftwidth=8:tabstop=8:
6 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
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.
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).
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
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
29 * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
30 * Use is subject to license terms.
33 * This file is part of Lustre, http://www.lustre.org/
34 * Lustre is a trademark of Sun Microsystems, Inc.
36 * lustre/include/lustre_mdc.h
38 * MDS data structures.
39 * See also lustre_idl.h for wire formats of requests.
51 # include <linux/fs.h>
52 # include <linux/dcache.h>
53 # ifdef CONFIG_FS_POSIX_ACL
54 # ifdef HAVE_XATTR_ACL
55 # include <linux/xattr_acl.h>
56 # endif /*HAVE_XATTR_ACL */
57 # ifdef HAVE_LINUX_POSIX_ACL_XATTR_H
58 # include <linux/posix_acl_xattr.h>
59 # endif /* HAVE_LINUX_POSIX_ACL_XATTR_H */
60 # endif /* CONFIG_FS_POSIX_ACL */
61 #include <linux/lustre_intent.h>
62 #endif /* __KERNEL__ */
63 #include <lustre_handles.h>
64 #include <libcfs/libcfs.h>
65 #include <lustre/lustre_idl.h>
66 #include <lustre_lib.h>
67 #include <lustre_dlm.h>
68 #include <lustre_log.h>
69 #include <lustre_export.h>
73 struct ptlrpc_request;
77 cfs_semaphore_t rpcl_sem;
78 struct lookup_intent *rpcl_it;
81 static inline void mdc_init_rpc_lock(struct mdc_rpc_lock *lck)
83 cfs_sema_init(&lck->rpcl_sem, 1);
87 static inline void mdc_get_rpc_lock(struct mdc_rpc_lock *lck,
88 struct lookup_intent *it)
91 if (!it || (it->it_op != IT_GETATTR && it->it_op != IT_LOOKUP)) {
92 cfs_down(&lck->rpcl_sem);
93 LASSERT(lck->rpcl_it == NULL);
98 static inline void mdc_put_rpc_lock(struct mdc_rpc_lock *lck,
99 struct lookup_intent *it)
101 if (!it || (it->it_op != IT_GETATTR && it->it_op != IT_LOOKUP)) {
102 LASSERT(it == lck->rpcl_it);
104 cfs_up(&lck->rpcl_sem);
109 static inline void mdc_update_max_ea_from_body(struct obd_export *exp,
110 struct mdt_body *body)
112 if (body->valid & OBD_MD_FLMODEASIZE) {
113 if (exp->exp_obd->u.cli.cl_max_mds_easize < body->max_mdsize)
114 exp->exp_obd->u.cli.cl_max_mds_easize =
116 if (exp->exp_obd->u.cli.cl_max_mds_cookiesize <
117 body->max_cookiesize)
118 exp->exp_obd->u.cli.cl_max_mds_cookiesize =
119 body->max_cookiesize;
124 struct mdc_cache_waiter {
125 cfs_list_t mcw_entry;
126 cfs_waitq_t mcw_waitq;
129 /* mdc/mdc_locks.c */
130 int it_disposition(struct lookup_intent *it, int flag);
131 void it_clear_disposition(struct lookup_intent *it, int flag);
132 void it_set_disposition(struct lookup_intent *it, int flag);
133 int it_open_error(int phase, struct lookup_intent *it);
134 #ifdef HAVE_SPLIT_SUPPORT
135 int mdc_sendpage(struct obd_export *exp, const struct lu_fid *fid,
136 const struct page *page, int offset);