Whamcloud - gitweb
LU-3105 mdc: remove capa support
[fs/lustre-release.git] / lustre / mdc / mdc_internal.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2014, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #ifndef _MDC_INTERNAL_H
38 #define _MDC_INTERNAL_H
39
40 #include <lustre_mdc.h>
41
42 #ifdef CONFIG_PROC_FS
43 extern struct lprocfs_vars lprocfs_mdc_obd_vars[];
44 #endif
45
46 void mdc_pack_body(struct ptlrpc_request *req, const struct lu_fid *fid,
47                    u64 valid, size_t ea_size, u32 suppgid, u32 flags);
48 void mdc_swap_layouts_pack(struct ptlrpc_request *req,
49                            struct md_op_data *op_data);
50 void mdc_readdir_pack(struct ptlrpc_request *req, __u64 pgoff, size_t size,
51                       const struct lu_fid *fid);
52 void mdc_getattr_pack(struct ptlrpc_request *req, __u64 valid, __u32 flags,
53                       struct md_op_data *data, size_t ea_size);
54 void mdc_setattr_pack(struct ptlrpc_request *req, struct md_op_data *op_data,
55                       void *ea, size_t ealen);
56 void mdc_create_pack(struct ptlrpc_request *req, struct md_op_data *op_data,
57                      const void *data, size_t datalen, umode_t mode,
58                      uid_t uid, gid_t gid, cfs_cap_t capability, __u64 rdev);
59 void mdc_open_pack(struct ptlrpc_request *req, struct md_op_data *op_data,
60                    umode_t mode, __u64 rdev, __u64 flags,
61                    const void *data, size_t datalen);
62 void mdc_unlink_pack(struct ptlrpc_request *req, struct md_op_data *op_data);
63 void mdc_getxattr_pack(struct ptlrpc_request *req, struct md_op_data *op_data);
64 void mdc_link_pack(struct ptlrpc_request *req, struct md_op_data *op_data);
65 void mdc_rename_pack(struct ptlrpc_request *req, struct md_op_data *op_data,
66                      const char *old, size_t oldlen,
67                      const char *new, size_t newlen);
68 void mdc_close_pack(struct ptlrpc_request *req, struct md_op_data *op_data);
69
70 /* mdc/mdc_locks.c */
71 int mdc_set_lock_data(struct obd_export *exp,
72                       __u64 *lockh, void *data, __u64 *bits);
73
74 int mdc_null_inode(struct obd_export *exp, const struct lu_fid *fid);
75
76 int mdc_find_cbdata(struct obd_export *exp, const struct lu_fid *fid,
77                     ldlm_iterator_t it, void *data);
78
79 int mdc_intent_lock(struct obd_export *exp,
80                     struct md_op_data *op_data,
81                     struct lookup_intent *it,
82                     struct ptlrpc_request **reqp,
83                     ldlm_blocking_callback cb_blocking,
84                     __u64 extra_lock_flags);
85
86 int mdc_enqueue(struct obd_export *exp, struct ldlm_enqueue_info *einfo,
87                 const union ldlm_policy_data *policy,
88                 struct lookup_intent *it, struct md_op_data *op_data,
89                 struct lustre_handle *lockh, __u64 extra_lock_flags);
90
91 int mdc_resource_get_unused(struct obd_export *exp, const struct lu_fid *fid,
92                             struct list_head *cancels, ldlm_mode_t mode,
93                             __u64 bits);
94 /* mdc/mdc_request.c */
95 int mdc_fid_alloc(const struct lu_env *env, struct obd_export *exp,
96                   struct lu_fid *fid, struct md_op_data *op_data);
97
98 struct obd_client_handle;
99
100 int mdc_get_lustre_md(struct obd_export *md_exp, struct ptlrpc_request *req,
101                       struct obd_export *dt_exp, struct obd_export *lmv_exp,
102                       struct lustre_md *md);
103
104 int mdc_free_lustre_md(struct obd_export *exp, struct lustre_md *md);
105
106 int mdc_set_open_replay_data(struct obd_export *exp,
107                              struct obd_client_handle *och,
108                              struct lookup_intent *it);
109
110 int mdc_clear_open_replay_data(struct obd_export *exp,
111                                struct obd_client_handle *och);
112 void mdc_commit_open(struct ptlrpc_request *req);
113 void mdc_replay_open(struct ptlrpc_request *req);
114
115 int mdc_create(struct obd_export *exp, struct md_op_data *op_data,
116                 const void *data, size_t datalen,
117                 umode_t mode, uid_t uid, gid_t gid,
118                 cfs_cap_t capability, __u64 rdev,
119                 struct ptlrpc_request **request);
120 int mdc_link(struct obd_export *exp, struct md_op_data *op_data,
121              struct ptlrpc_request **request);
122 int mdc_rename(struct obd_export *exp, struct md_op_data *op_data,
123                 const char *old, size_t oldlen, const char *new, size_t newlen,
124                 struct ptlrpc_request **request);
125 int mdc_setattr(struct obd_export *exp, struct md_op_data *op_data,
126                 void *ea, size_t ealen, struct ptlrpc_request **request);
127 int mdc_unlink(struct obd_export *exp, struct md_op_data *op_data,
128                struct ptlrpc_request **request);
129 int mdc_cancel_unused(struct obd_export *exp, const struct lu_fid *fid,
130                       ldlm_policy_data_t *policy, ldlm_mode_t mode,
131                       ldlm_cancel_flags_t flags, void *opaque);
132
133 int mdc_revalidate_lock(struct obd_export *exp, struct lookup_intent *it,
134                         struct lu_fid *fid, __u64 *bits);
135
136 int mdc_intent_getattr_async(struct obd_export *exp,
137                              struct md_enqueue_info *minfo,
138                              struct ldlm_enqueue_info *einfo);
139
140 ldlm_mode_t mdc_lock_match(struct obd_export *exp, __u64 flags,
141                            const struct lu_fid *fid, ldlm_type_t type,
142                            ldlm_policy_data_t *policy, ldlm_mode_t mode,
143                            struct lustre_handle *lockh);
144
145 static inline int mdc_prep_elc_req(struct obd_export *exp,
146                                    struct ptlrpc_request *req, int opc,
147                                    struct list_head *cancels, int count)
148 {
149         return ldlm_prep_elc_req(exp, req, LUSTRE_MDS_VERSION, opc, 0, cancels,
150                                  count);
151 }
152
153 static inline unsigned long hash_x_index(__u64 hash, int hash64)
154 {
155         if (BITS_PER_LONG == 32 && hash64)
156                 hash >>= 32;
157         /* save hash 0 with hash 1 */
158         return ~0UL - (hash + !hash);
159 }
160
161 #endif