]> git.karo-electronics.de Git - linux-beck.git/blob - drivers/staging/lustre/lustre/lmv/lmv_internal.h
iio: adc: ina2xx: Fix incorrect report of data endianness to userspace.
[linux-beck.git] / drivers / staging / lustre / 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, 2012, 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 "../include/lustre/lustre_idl.h"
41 #include "../include/obd.h"
42
43 #define LMV_MAX_TGT_COUNT 128
44
45 #define lmv_init_lock(lmv)   mutex_lock(&lmv->init_mutex)
46 #define lmv_init_unlock(lmv) mutex_unlock(&lmv->init_mutex)
47
48 #define LL_IT2STR(it)                                   \
49         ((it) ? ldlm_it2str((it)->it_op) : "0")
50
51 int lmv_check_connect(struct obd_device *obd);
52
53 int lmv_intent_lock(struct obd_export *exp, struct md_op_data *op_data,
54                     void *lmm, int lmmsize, struct lookup_intent *it,
55                     int flags, struct ptlrpc_request **reqp,
56                     ldlm_blocking_callback cb_blocking,
57                     __u64 extra_lock_flags);
58
59 int lmv_fld_lookup(struct lmv_obd *lmv, const struct lu_fid *fid, u32 *mds);
60 int __lmv_fid_alloc(struct lmv_obd *lmv, struct lu_fid *fid, u32 mds);
61 int lmv_fid_alloc(struct obd_export *exp, struct lu_fid *fid,
62                   struct md_op_data *op_data);
63
64 static inline struct lmv_stripe_md *lmv_get_mea(struct ptlrpc_request *req)
65 {
66         struct mdt_body  *body;
67         struct lmv_stripe_md    *mea;
68
69         LASSERT(req != NULL);
70
71         body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
72
73         if (!body || !S_ISDIR(body->mode) || !body->eadatasize)
74                 return NULL;
75
76         mea = req_capsule_server_sized_get(&req->rq_pill, &RMF_MDT_MD,
77                                            body->eadatasize);
78         LASSERT(mea != NULL);
79
80         if (mea->mea_count == 0)
81                 return NULL;
82         if (mea->mea_magic != MEA_MAGIC_LAST_CHAR &&
83                 mea->mea_magic != MEA_MAGIC_ALL_CHARS &&
84                 mea->mea_magic != MEA_MAGIC_HASH_SEGMENT)
85                 return NULL;
86
87         return mea;
88 }
89
90 static inline int lmv_get_easize(struct lmv_obd *lmv)
91 {
92         return sizeof(struct lmv_stripe_md) +
93                 lmv->desc.ld_tgt_count *
94                 sizeof(struct lu_fid);
95 }
96
97 static inline struct lmv_tgt_desc *
98 lmv_get_target(struct lmv_obd *lmv, u32 mds)
99 {
100         int count = lmv->desc.ld_tgt_count;
101         int i;
102
103         for (i = 0; i < count; i++) {
104                 if (lmv->tgts[i] == NULL)
105                         continue;
106
107                 if (lmv->tgts[i]->ltd_idx == mds)
108                         return lmv->tgts[i];
109         }
110
111         return ERR_PTR(-ENODEV);
112 }
113
114 static inline struct lmv_tgt_desc *
115 lmv_find_target(struct lmv_obd *lmv, const struct lu_fid *fid)
116 {
117         u32 mds = 0;
118         int rc;
119
120         if (lmv->desc.ld_tgt_count > 1) {
121                 rc = lmv_fld_lookup(lmv, fid, &mds);
122                 if (rc)
123                         return ERR_PTR(rc);
124         }
125
126         return lmv_get_target(lmv, mds);
127 }
128
129 struct lmv_tgt_desc
130 *lmv_locate_mds(struct lmv_obd *lmv, struct md_op_data *op_data,
131                 struct lu_fid *fid);
132 /* lproc_lmv.c */
133 void lprocfs_lmv_init_vars(struct lprocfs_static_vars *lvars);
134
135 extern struct file_operations lmv_proc_target_fops;
136
137 #endif