Whamcloud - gitweb
e76f4ec2f561066e34228ebbdb0d4a8b233af8a8
[fs/lustre-release.git] / lustre / lov / lov_internal.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
37 #ifndef LOV_INTERNAL_H
38 #define LOV_INTERNAL_H
39
40 #include <obd_class.h>
41 #include <lustre/lustre_user.h>
42
43 struct lov_lock_handles {
44         struct portals_handle   llh_handle;
45         atomic_t                llh_refcount;
46         int                     llh_stripe_count;
47         struct lustre_handle    llh_handles[0];
48 };
49
50 struct lov_request {
51         struct obd_info          rq_oi;
52         struct lov_request_set  *rq_rqset;
53
54         struct list_head         rq_link;
55
56         int                      rq_idx;        /* index in lov->tgts array */
57         int                      rq_stripe;     /* stripe number */
58         int                      rq_complete;
59         int                      rq_rc;
60         int                      rq_buflen;     /* length of sub_md */
61
62         obd_count                rq_oabufs;
63         obd_count                rq_pgaidx;
64 };
65
66 struct lov_request_set {
67         struct ldlm_enqueue_info*set_ei;
68         struct obd_info         *set_oi;
69         atomic_t                 set_refcount;
70         struct obd_export       *set_exp;
71         /* XXX: There is @set_exp already, however obd_statfs gets obd_device
72            only. */
73         struct obd_device       *set_obd;
74         int                      set_count;
75         int                      set_completes;
76         int                      set_success;
77         struct llog_cookie      *set_cookies;
78         int                      set_cookie_sent;
79         struct obd_trans_info   *set_oti;
80         obd_count                set_oabufs;
81         struct brw_page         *set_pga;
82         struct lov_lock_handles *set_lockh;
83         struct list_head         set_list;
84 };
85
86 extern cfs_mem_cache_t *lov_oinfo_slab;
87
88 static inline void lov_llh_addref(void *llhp)
89 {
90         struct lov_lock_handles *llh = llhp;
91         atomic_inc(&llh->llh_refcount);
92         CDEBUG(D_INFO, "GETting llh %p : new refcount %d\n", llh,
93                atomic_read(&llh->llh_refcount));
94 }
95
96 static inline struct lov_lock_handles *lov_llh_new(struct lov_stripe_md *lsm)
97 {
98         struct lov_lock_handles *llh;
99
100         OBD_ALLOC(llh, sizeof *llh +
101                   sizeof(*llh->llh_handles) * lsm->lsm_stripe_count);
102         if (llh == NULL)
103                 return NULL;
104         atomic_set(&llh->llh_refcount, 2);
105         llh->llh_stripe_count = lsm->lsm_stripe_count;
106         CFS_INIT_LIST_HEAD(&llh->llh_handle.h_link);
107         class_handle_hash(&llh->llh_handle, lov_llh_addref);
108         return llh;
109 }
110
111 static inline struct lov_lock_handles *
112 lov_handle2llh(struct lustre_handle *handle)
113 {
114         LASSERT(handle != NULL);
115         return(class_handle2object(handle->cookie));
116 }
117
118 static inline void lov_llh_put(struct lov_lock_handles *llh)
119 {
120         CDEBUG(D_INFO, "PUTting llh %p : new refcount %d\n", llh,
121                atomic_read(&llh->llh_refcount) - 1);
122         LASSERT(atomic_read(&llh->llh_refcount) > 0 &&
123                 atomic_read(&llh->llh_refcount) < 0x5a5a);
124         if (atomic_dec_and_test(&llh->llh_refcount)) {
125                 class_handle_unhash(&llh->llh_handle);
126                 /* The structure may be held by other threads because RCU.
127                  *   -jxiong */
128                 if (atomic_read(&llh->llh_refcount))
129                         return;
130
131                 OBD_FREE_RCU(llh, sizeof *llh +
132                              sizeof(*llh->llh_handles) * llh->llh_stripe_count,
133                              &llh->llh_handle);
134         }
135 }
136
137 #define lov_uuid2str(lv, index) \
138         (char *)((lv)->lov_tgts[index]->ltd_uuid.uuid)
139
140 /* lov_merge.c */
141 void lov_merge_attrs(struct obdo *tgt, struct obdo *src, obd_flag valid,
142                      struct lov_stripe_md *lsm, int stripeno, int *set);
143 int lov_merge_lvb(struct obd_export *exp, struct lov_stripe_md *lsm,
144                   struct ost_lvb *lvb, int kms_only);
145 int lov_adjust_kms(struct obd_export *exp, struct lov_stripe_md *lsm,
146                    obd_off size, int shrink);
147 int lov_merge_lvb_kms(struct lov_stripe_md *lsm,
148                       struct ost_lvb *lvb, __u64 *kms_place);
149
150 /* lov_offset.c */
151 obd_size lov_stripe_size(struct lov_stripe_md *lsm, obd_size ost_size,
152                          int stripeno);
153 int lov_stripe_offset(struct lov_stripe_md *lsm, obd_off lov_off,
154                       int stripeno, obd_off *obd_off);
155 obd_off lov_size_to_stripe(struct lov_stripe_md *lsm, obd_off file_size,
156                            int stripeno);
157 int lov_stripe_intersects(struct lov_stripe_md *lsm, int stripeno,
158                           obd_off start, obd_off end,
159                           obd_off *obd_start, obd_off *obd_end);
160 int lov_stripe_number(struct lov_stripe_md *lsm, obd_off lov_off);
161
162 /* lov_qos.c */
163 #define LOV_USES_ASSIGNED_STRIPE        0
164 #define LOV_USES_DEFAULT_STRIPE         1
165 int qos_add_tgt(struct obd_device *obd, __u32 index);
166 int qos_del_tgt(struct obd_device *obd, struct lov_tgt_desc *tgt);
167 void qos_shrink_lsm(struct lov_request_set *set);
168 int qos_prep_create(struct obd_export *exp, struct lov_request_set *set);
169 void qos_update(struct lov_obd *lov);
170 void qos_statfs_done(struct lov_obd *lov);
171 void qos_statfs_update(struct obd_device *obd, __u64 max_age, int wait);
172 int qos_remedy_create(struct lov_request_set *set, struct lov_request *req);
173
174 /* lov_request.c */
175 void lov_set_add_req(struct lov_request *req, struct lov_request_set *set);
176 void lov_update_set(struct lov_request_set *set,
177                     struct lov_request *req, int rc);
178 int lov_update_common_set(struct lov_request_set *set,
179                           struct lov_request *req, int rc);
180 int lov_prep_create_set(struct obd_export *exp, struct obd_info *oifo,
181                         struct lov_stripe_md **ea, struct obdo *src_oa,
182                         struct obd_trans_info *oti,
183                         struct lov_request_set **reqset);
184 int lov_update_create_set(struct lov_request_set *set,
185                           struct lov_request *req, int rc);
186 int lov_fini_create_set(struct lov_request_set *set, struct lov_stripe_md **ea);
187 int lov_prep_brw_set(struct obd_export *exp, struct obd_info *oinfo,
188                      obd_count oa_bufs, struct brw_page *pga,
189                      struct obd_trans_info *oti,
190                      struct lov_request_set **reqset);
191 int lov_fini_brw_set(struct lov_request_set *set);
192 int lov_prep_getattr_set(struct obd_export *exp, struct obd_info *oinfo,
193                          struct lov_request_set **reqset);
194 int lov_fini_getattr_set(struct lov_request_set *set);
195 int lov_prep_destroy_set(struct obd_export *exp, struct obd_info *oinfo,
196                          struct obdo *src_oa, struct lov_stripe_md *lsm,
197                          struct obd_trans_info *oti,
198                          struct lov_request_set **reqset);
199 int lov_update_destroy_set(struct lov_request_set *set,
200                            struct lov_request *req, int rc);
201 int lov_fini_destroy_set(struct lov_request_set *set);
202 int lov_prep_setattr_set(struct obd_export *exp, struct obd_info *oinfo,
203                          struct obd_trans_info *oti,
204                          struct lov_request_set **reqset);
205 int lov_update_setattr_set(struct lov_request_set *set,
206                            struct lov_request *req, int rc);
207 int lov_fini_setattr_set(struct lov_request_set *set);
208 int lov_prep_punch_set(struct obd_export *exp, struct obd_info *oinfo,
209                        struct obd_trans_info *oti,
210                        struct lov_request_set **reqset);
211 int lov_fini_punch_set(struct lov_request_set *set);
212 int lov_prep_sync_set(struct obd_export *exp, struct obd_info *obd_info,
213                       struct obdo *src_oa,
214                       struct lov_stripe_md *lsm, obd_off start,
215                       obd_off end, struct lov_request_set **reqset);
216 int lov_fini_sync_set(struct lov_request_set *set);
217 int lov_prep_enqueue_set(struct obd_export *exp, struct obd_info *oinfo,
218                          struct ldlm_enqueue_info *einfo,
219                          struct lov_request_set **reqset);
220 int lov_fini_enqueue_set(struct lov_request_set *set, __u32 mode, int rc,
221                          struct ptlrpc_request_set *rqset);
222 int lov_prep_match_set(struct obd_export *exp, struct obd_info *oinfo,
223                        struct lov_stripe_md *lsm,
224                        ldlm_policy_data_t *policy, __u32 mode,
225                        struct lustre_handle *lockh,
226                        struct lov_request_set **reqset);
227 int lov_update_match_set(struct lov_request_set *set, struct lov_request *req,
228                          int rc);
229 int lov_fini_match_set(struct lov_request_set *set, __u32 mode, int flags);
230 int lov_prep_cancel_set(struct obd_export *exp, struct obd_info *oinfo,
231                         struct lov_stripe_md *lsm,
232                         __u32 mode, struct lustre_handle *lockh,
233                         struct lov_request_set **reqset);
234 int lov_fini_cancel_set(struct lov_request_set *set);
235 int lov_prep_statfs_set(struct obd_device *obd, struct obd_info *oinfo,
236                         struct lov_request_set **reqset);
237 void lov_update_statfs(struct obd_statfs *osfs, struct obd_statfs *lov_sfs,
238                        int success);
239 int lov_fini_statfs(struct obd_device *obd, struct obd_statfs *osfs,
240                     int success);
241 int lov_fini_statfs_set(struct lov_request_set *set);
242 int lov_statfs_interpret(struct ptlrpc_request_set *rqset, void *data, int rc);
243
244 /* lov_obd.c */
245 void lov_fix_desc(struct lov_desc *desc);
246 void lov_fix_desc_stripe_size(__u64 *val);
247 void lov_fix_desc_stripe_count(__u32 *val);
248 void lov_fix_desc_pattern(__u32 *val);
249 void lov_fix_desc_qos_maxage(__u32 *val);
250 int lov_get_stripecnt(struct lov_obd *lov, __u32 stripe_count);
251 int lov_connect_obd(struct obd_device *obd, __u32 index, int activate,
252                     struct obd_connect_data *data);
253 int lov_setup(struct obd_device *obd, struct lustre_cfg *lcfg);
254 int lov_process_config_base(struct obd_device *obd, struct lustre_cfg *lcfg,
255                             __u32 *indexp, int *genp);
256 int lov_del_target(struct obd_device *obd, __u32 index,
257                    struct obd_uuid *uuidp, int gen);
258 /* lov_log.c */
259 int lov_llog_init(struct obd_device *obd, struct obd_llog_group *olg,
260                   struct obd_device *tgt, int count, struct llog_catid *logid,
261                   struct obd_uuid *uuid);
262 int lov_llog_finish(struct obd_device *obd, int count);
263
264 /* lov_pack.c */
265 int lov_packmd(struct obd_export *exp, struct lov_mds_md **lmm,
266                struct lov_stripe_md *lsm);
267 int lov_unpackmd(struct obd_export *exp, struct lov_stripe_md **lsmp,
268                  struct lov_mds_md *lmm, int lmm_bytes);
269 int lov_setstripe(struct obd_export *exp, int max_lmm_size,
270                   struct lov_stripe_md **lsmp, struct lov_user_md *lump);
271 int lov_setea(struct obd_export *exp, struct lov_stripe_md **lsmp,
272               struct lov_user_md *lump);
273 int lov_getstripe(struct obd_export *exp,
274                   struct lov_stripe_md *lsm, struct lov_user_md *lump);
275 int lov_alloc_memmd(struct lov_stripe_md **lsmp, int stripe_count,
276                       int pattern, int magic);
277 void lov_free_memmd(struct lov_stripe_md **lsmp);
278
279 void lov_dump_lmm_v1(int level, struct lov_mds_md_v1 *lmm);
280 void lov_dump_lmm_join(int level, struct lov_mds_md_join *lmmj);
281 void lov_dump_lmm_v3(int level, struct lov_mds_md_v3 *lmm);
282 void lov_dump_lmm(int level, void *lmm);
283
284 /* lov_ea.c */
285 int lov_unpackmd_join(struct lov_obd *lov, struct lov_stripe_md *lsm,
286                       struct lov_mds_md *lmm);
287 struct lov_stripe_md *lsm_alloc_plain(int stripe_count, int *size);
288 void lsm_free_plain(struct lov_stripe_md *lsm);
289
290 struct lov_extent *lovea_idx2le(struct lov_stripe_md *lsm, int stripe_no);
291 struct lov_extent *lovea_off2le(struct lov_stripe_md *lsm, obd_off lov_off);
292 int lovea_destroy_object(struct lov_obd *lov, struct lov_stripe_md *lsm,
293                          struct obdo *oa, void *data);
294 /* lproc_lov.c */
295 extern struct file_operations lov_proc_target_fops;
296 #ifdef LPROCFS
297 void lprocfs_lov_init_vars(struct lprocfs_static_vars *lvars);
298 #else
299 static inline void lprocfs_lov_init_vars(struct lprocfs_static_vars *lvars)
300 {
301         memset(lvars, 0, sizeof(*lvars));
302 }
303 #endif
304
305 /* lov_cl.c */
306 extern struct lu_device_type lov_device_type;
307
308 /* pools */
309 extern lustre_hash_ops_t pool_hash_operations;
310 /* ost_pool methods */
311 int lov_ost_pool_init(struct ost_pool *op, unsigned int count);
312 int lov_ost_pool_extend(struct ost_pool *op, unsigned int min_count);
313 int lov_ost_pool_add(struct ost_pool *op, __u32 idx, unsigned int min_count);
314 int lov_ost_pool_remove(struct ost_pool *op, __u32 idx);
315 int lov_ost_pool_free(struct ost_pool *op);
316
317 /* high level pool methods */
318 int lov_pool_new(struct obd_device *obd, char *poolname);
319 int lov_pool_del(struct obd_device *obd, char *poolname);
320 int lov_pool_add(struct obd_device *obd, char *poolname, char *ostname);
321 int lov_pool_remove(struct obd_device *obd, char *poolname, char *ostname);
322 void lov_dump_pool(int level, struct pool_desc *pool);
323 struct pool_desc *lov_find_pool(struct lov_obd *lov, char *poolname);
324 int lov_check_index_in_pool(__u32 idx, struct pool_desc *pool);
325 void lov_pool_putref(struct pool_desc *pool);
326
327 #if BITS_PER_LONG == 64
328 # define ll_do_div64(n,base) ({                                 \
329         uint64_t __base = (base);                               \
330         uint64_t __rem;                                         \
331         __rem = ((uint64_t)(n)) % __base;                       \
332         (n) = ((uint64_t)(n)) / __base;                         \
333         __rem;                                                  \
334   })
335 #elif BITS_PER_LONG == 32
336 # define ll_do_div64(n,base) ({                                 \
337         uint64_t __rem;                                         \
338         if ((sizeof(base) > 4) && (((base)&0xffffffff00000000ULL) != 0)) { \
339                 int __remainder;                                \
340                 LASSERTF(!((base) & (LOV_MIN_STRIPE_SIZE - 1)), "64 bit lov "\
341                           "division %llu / %llu\n", (n), (base)); \
342                 __remainder = (n) & (LOV_MIN_STRIPE_SIZE - 1);  \
343                 (n) >>= LOV_MIN_STRIPE_BITS;                    \
344                 (base) >>= LOV_MIN_STRIPE_BITS;                 \
345                 __rem = do_div(n, base);                        \
346                 __rem <<= LOV_MIN_STRIPE_BITS;                  \
347                 __rem += __remainder;                           \
348         } else {                                                \
349                 __rem = do_div(n, base);                        \
350         }                                                       \
351         __rem;                                                  \
352   })
353 #else
354 #error Unsupported architecture.
355 #endif
356
357 #endif