Whamcloud - gitweb
LU-4691 lmv: honor MDT index when creating volatile file
[fs/lustre-release.git] / lustre / lmv / lmv_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) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2013, 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 _LMV_INTERNAL_H_
38 #define _LMV_INTERNAL_H_
39
40 #include <lustre/lustre_idl.h>
41 #include <obd.h>
42 #include <lustre_lmv.h>
43
44 #define LMV_MAX_TGT_COUNT 128
45
46 #define lmv_init_lock(lmv)   mutex_lock(&lmv->init_mutex);
47 #define lmv_init_unlock(lmv) mutex_unlock(&lmv->init_mutex);
48
49 #define LL_IT2STR(it)                                   \
50         ((it) ? ldlm_it2str((it)->it_op) : "0")
51
52 int lmv_check_connect(struct obd_device *obd);
53
54 int lmv_intent_lock(struct obd_export *exp, struct md_op_data *op_data,
55                     struct lookup_intent *it, struct ptlrpc_request **reqp,
56                     ldlm_blocking_callback cb_blocking,
57                     __u64 extra_lock_flags);
58
59 int lmv_blocking_ast(struct ldlm_lock *, struct ldlm_lock_desc *,
60                      void *, int);
61 int lmv_fld_lookup(struct lmv_obd *lmv, const struct lu_fid *fid,
62                    mdsno_t *mds);
63 int __lmv_fid_alloc(struct lmv_obd *lmv, struct lu_fid *fid,
64                     mdsno_t mds);
65 int lmv_fid_alloc(const struct lu_env *env, struct obd_export *exp,
66                   struct lu_fid *fid, struct md_op_data *op_data);
67
68 int lmv_unpack_md(struct obd_export *exp, struct lmv_stripe_md **lsmp,
69                   const union lmv_mds_md *lmm, int stripe_count);
70
71 int lmv_revalidate_slaves(struct obd_export *exp, struct mdt_body *mbody,
72                           struct lmv_stripe_md *lsm,
73                           ldlm_blocking_callback cb_blocking,
74                           int extra_lock_flags);
75
76 static inline struct obd_device *lmv2obd_dev(struct lmv_obd *lmv)
77 {
78         return container_of0(lmv, struct obd_device, u.lmv);
79 }
80
81 static inline struct lmv_tgt_desc *
82 lmv_get_target(struct lmv_obd *lmv, mdsno_t mdt_idx, int *index)
83 {
84         int i;
85
86         for (i = 0; i < lmv->desc.ld_tgt_count; i++) {
87                 if (lmv->tgts[i] == NULL)
88                         continue;
89
90                 if (lmv->tgts[i]->ltd_idx == mdt_idx) {
91                         if (index != NULL)
92                                 *index = i;
93                         return lmv->tgts[i];
94                 }
95         }
96
97         return ERR_PTR(-ENODEV);
98 }
99
100 static inline int
101 lmv_find_target_index(struct lmv_obd *lmv, const struct lu_fid *fid)
102 {
103         struct lmv_tgt_desc     *ltd;
104         mdsno_t                 mdt_idx = 0;
105         int                     index = 0;
106
107         if (lmv->desc.ld_tgt_count > 1) {
108                 int rc;
109                 rc = lmv_fld_lookup(lmv, fid, &mdt_idx);
110                 if (rc < 0)
111                         return rc;
112         }
113
114         ltd = lmv_get_target(lmv, mdt_idx, &index);
115         if (IS_ERR(ltd))
116                 return PTR_ERR(ltd);
117
118         return index;
119 }
120
121 static inline struct lmv_tgt_desc *
122 lmv_find_target(struct lmv_obd *lmv, const struct lu_fid *fid)
123 {
124         int index;
125
126         index = lmv_find_target_index(lmv, fid);
127         if (index < 0)
128                 return ERR_PTR(index);
129
130         return lmv->tgts[index];
131 }
132
133 static inline int lmv_stripe_md_size(int stripe_count)
134 {
135         struct lmv_stripe_md *lsm;
136
137         return sizeof(*lsm) + stripe_count * sizeof(lsm->lsm_md_oinfo[0]);
138 }
139
140 int lmv_name_to_stripe_index(enum lmv_hash_type hashtype,
141                              unsigned int max_mdt_index,
142                              const char *name, int namelen);
143
144 static inline const struct lmv_oinfo *
145 lsm_name_to_stripe_info(const struct lmv_stripe_md *lsm, const char *name,
146                         int namelen)
147 {
148         int stripe_index;
149
150         stripe_index = lmv_name_to_stripe_index(lsm->lsm_md_hash_type,
151                                                 lsm->lsm_md_stripe_count,
152                                                 name, namelen);
153         if (stripe_index < 0)
154                 return ERR_PTR(stripe_index);
155
156         LASSERTF(stripe_index < lsm->lsm_md_stripe_count,
157                  "stripe_index = %d, stripe_count = %d hash_type = %x"
158                  "name = %.*s\n", stripe_index, lsm->lsm_md_stripe_count,
159                  lsm->lsm_md_hash_type, namelen, name);
160
161         return &lsm->lsm_md_oinfo[stripe_index];
162 }
163
164 static inline bool lmv_is_known_hash_type(const struct lmv_stripe_md *lsm)
165 {
166         return lsm->lsm_md_hash_type == LMV_HASH_TYPE_FNV_1A_64 ||
167                lsm->lsm_md_hash_type == LMV_HASH_TYPE_ALL_CHARS;
168 }
169
170 static inline bool lmv_need_try_all_stripes(const struct lmv_stripe_md *lsm)
171 {
172         return !lmv_is_known_hash_type(lsm) ||
173                lsm->lsm_md_hash_type & LMV_HASH_FLAG_MIGRATION;
174 }
175
176 struct lmv_tgt_desc
177 *lmv_locate_mds(struct lmv_obd *lmv, struct md_op_data *op_data,
178                 struct lu_fid *fid);
179 /* lproc_lmv.c */
180 #ifdef LPROCFS
181 extern struct lprocfs_seq_vars lprocfs_lmv_obd_vars[];
182 #endif
183 extern struct file_operations lmv_proc_target_fops;
184
185 #endif