Whamcloud - gitweb
Branch: HEAD
[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  * Copyright (C) 2003 Cluster File Systems, Inc.
5  *
6  * This code is issued under the GNU General Public License.
7  * See the file COPYING in this distribution
8  */
9
10 #ifndef LOV_INTERNAL_H
11 #define LOV_INTERNAL_H
12
13 #include <lustre/lustre_user.h>
14
15 struct lov_lock_handles {
16         struct portals_handle   llh_handle;
17         atomic_t                llh_refcount;
18         int                     llh_stripe_count;
19         struct lustre_handle    llh_handles[0];
20 };
21
22 struct lov_request {
23         struct list_head         rq_link;
24         struct ldlm_extent       rq_extent;
25         int                      rq_idx;        /* index in lov->tgts array */
26         int                      rq_gen;        /* lov target generation # */
27         int                      rq_stripe;     /* stripe number */
28         int                      rq_complete;
29         int                      rq_rc;
30         int                      rq_buflen;     /* length of sub_md */
31         struct obdo             *rq_oa;
32         struct lov_stripe_md    *rq_md;
33         obd_count                rq_oabufs;
34         obd_count                rq_pgaidx;
35 };
36
37 struct lov_request_set {
38         atomic_t                 set_refcount;
39         struct obd_export       *set_exp;
40         int                      set_count;
41         int                      set_completes;
42         int                      set_success;
43         struct llog_cookie      *set_cookies;
44         int                      set_cookie_sent;
45         struct lov_stripe_md    *set_md;
46         struct obdo             *set_oa;
47         struct obd_trans_info   *set_oti;
48         obd_count                set_oabufs;
49         struct brw_page         *set_pga;
50         struct lov_lock_handles *set_lockh;
51         struct list_head         set_list;
52 };
53
54 #define LAP_MAGIC 8200
55
56 #define LOV_MAX_TGT_COUNT 1024
57
58 #define lov_tgts_lock(lov)      spin_lock(&lov->lov_lock);
59 #define lov_tgts_unlock(lov)    spin_unlock(&lov->lov_lock);
60
61 static inline void
62 lov_tgt_set_flags(struct lov_obd *lov, struct lov_tgt_desc *tgt, int flags)
63 {
64         lov_tgts_lock(lov);
65         if ((flags & LTD_ACTIVE) && ((tgt->ltd_flags & LTD_ACTIVE) == 0))
66                 lov->desc.ld_active_tgt_count++;
67         tgt->ltd_flags |= flags;
68         lov_tgts_unlock(lov);
69 }
70
71 static inline void
72 lov_tgt_clear_flags(struct lov_obd *lov, struct lov_tgt_desc *tgt, int flags)
73 {
74         ENTRY;
75
76         lov_tgts_lock(lov);
77         if ((flags & LTD_ACTIVE) && (tgt->ltd_flags & LTD_ACTIVE))
78                 lov->desc.ld_active_tgt_count--;
79         tgt->ltd_flags &= ~flags;
80         lov_tgts_unlock(lov);
81         EXIT;
82 }
83
84 static inline int
85 lov_tgt_changed(struct lov_obd *lov, struct lov_oinfo *loi)
86 {
87         int changed;
88
89         lov_tgts_lock(lov);
90         changed = lov->tgts[loi->loi_ost_idx].ltd_gen != loi->loi_ost_gen;
91         lov_tgts_unlock(lov);
92
93         return changed;
94 }
95
96 static inline int
97 lov_tgt_active(struct lov_obd *lov, struct lov_tgt_desc *tgt, int gen)
98 {
99         int rc = 0;
100         lov_tgts_lock(lov);
101
102         if (((gen == 0) || (gen == tgt->ltd_gen)) &&
103             ((tgt->ltd_flags &(LTD_ACTIVE|LTD_DEL_PENDING)) == LTD_ACTIVE)) {
104                 tgt->ltd_refcount++;
105                 rc = 1;
106         }
107
108         lov_tgts_unlock(lov);
109         return rc;
110 }
111
112 static inline int
113 lov_tgt_ready(struct lov_obd *lov, struct lov_tgt_desc *tgt, int gen)
114 {
115         int rc = 0;
116
117         lov_tgts_lock(lov);
118
119         if (((gen == 0) || (gen == tgt->ltd_gen)) &&
120             (tgt->ltd_flags & LTD_ACTIVE)) {
121                 tgt->ltd_refcount++;
122                 rc = 1;
123         }
124
125         lov_tgts_unlock(lov);
126         return rc;
127 }
128
129 static inline void
130 lov_tgt_decref(struct lov_obd *lov, struct lov_tgt_desc *tgt)
131 {
132         int do_wakeup = 0;
133
134         lov_tgts_lock(lov);
135
136         if ((--tgt->ltd_refcount == 0) && (tgt->ltd_flags & LTD_DEL_PENDING)) {
137                 do_wakeup = 1;
138         } 
139
140         lov_tgts_unlock(lov);
141         if (do_wakeup)
142                 wake_up(&lov->lov_tgt_waitq);
143 }
144
145 struct lov_async_page {
146         int                             lap_magic;
147         int                             lap_stripe;
148         obd_off                         lap_sub_offset;
149         void                            *lap_sub_cookie;
150         struct obd_async_page_ops       *lap_caller_ops;
151         void                            *lap_caller_data;
152         obd_id                          lap_loi_id;
153 };
154
155 #define LAP_FROM_COOKIE(c)                                                      \
156         (LASSERT(((struct lov_async_page *)(c))->lap_magic == LAP_MAGIC),       \
157          (struct lov_async_page *)(c))
158
159 static inline void lov_llh_addref(void *llhp)
160 {
161         struct lov_lock_handles *llh = llhp;
162         atomic_inc(&llh->llh_refcount);
163         CDEBUG(D_INFO, "GETting llh %p : new refcount %d\n", llh,
164                atomic_read(&llh->llh_refcount));
165 }
166
167 static inline struct lov_lock_handles *lov_llh_new(struct lov_stripe_md *lsm)
168 {
169         struct lov_lock_handles *llh;
170
171         OBD_ALLOC(llh, sizeof *llh +
172                   sizeof(*llh->llh_handles) * lsm->lsm_stripe_count);
173         if (llh == NULL) 
174                 return NULL;
175         atomic_set(&llh->llh_refcount, 2);
176         llh->llh_stripe_count = lsm->lsm_stripe_count;
177         INIT_LIST_HEAD(&llh->llh_handle.h_link);
178         class_handle_hash(&llh->llh_handle, lov_llh_addref);
179         return llh;
180 }
181
182 static inline struct lov_lock_handles *
183 lov_handle2llh(struct lustre_handle *handle)
184 {
185         LASSERT(handle != NULL);
186         return(class_handle2object(handle->cookie));
187 }
188
189 static inline void lov_llh_put(struct lov_lock_handles *llh)
190 {
191         CDEBUG(D_INFO, "PUTting llh %p : new refcount %d\n", llh,
192                atomic_read(&llh->llh_refcount) - 1);
193         LASSERT(atomic_read(&llh->llh_refcount) > 0 &&
194                 atomic_read(&llh->llh_refcount) < 0x5a5a);
195         if (atomic_dec_and_test(&llh->llh_refcount)) {
196                 class_handle_unhash(&llh->llh_handle);
197                 LASSERT(list_empty(&llh->llh_handle.h_link));
198                 OBD_FREE(llh, sizeof *llh +
199                          sizeof(*llh->llh_handles) * llh->llh_stripe_count);
200         }
201 }
202
203 /* lov_merge.c */
204 void lov_merge_attrs(struct obdo *tgt, struct obdo *src, obd_flags valid,
205                      struct lov_stripe_md *lsm, int stripeno, int *set);
206
207 int lov_adjust_kms(struct obd_export *exp, struct lov_stripe_md *lsm,
208                    obd_off size, int shrink);
209 /* lov_offset.c */
210 obd_size lov_stripe_size(struct lov_stripe_md *lsm, obd_size ost_size, 
211                          int stripeno);
212 int lov_stripe_offset(struct lov_stripe_md *lsm, obd_off lov_off,
213                       int stripeno, obd_off *obd_off);
214 obd_off lov_size_to_stripe(struct lov_stripe_md *lsm, obd_off file_size,
215                            int stripeno);
216 int lov_stripe_intersects(struct lov_stripe_md *lsm, int stripeno,
217                           obd_off start, obd_off end,
218                           obd_off *obd_start, obd_off *obd_end);
219 int lov_stripe_number(struct lov_stripe_md *lsm, obd_off lov_off);
220
221 /* lov_qos.c */
222 void qos_shrink_lsm(struct lov_request_set *set);
223 int qos_prep_create(struct lov_obd *lov, struct lov_request_set *set, 
224                     int newea);
225
226 /* lov_request.c */
227 void lov_set_add_req(struct lov_request *req, struct lov_request_set *set);
228 int lov_update_common_set(struct lov_request_set *set, 
229                           struct lov_request *req, int rc);
230 int lov_prep_create_set(struct obd_export *exp, struct lov_stripe_md **ea, 
231                         struct obdo *src_oa, struct obd_trans_info *oti,
232                         struct lov_request_set **reqset);
233 int lov_update_create_set(struct lov_request_set *set,
234                           struct lov_request *req, int rc);
235 int lov_fini_create_set(struct lov_request_set *set, struct lov_stripe_md **ea);
236 int lov_prep_brw_set(struct obd_export *exp, struct obdo *src_oa, 
237                      struct lov_stripe_md *lsm, obd_count oa_bufs,
238                      struct brw_page *pga, struct obd_trans_info *oti,
239                      struct lov_request_set **reqset);
240 int lov_fini_brw_set(struct lov_request_set *set);
241 int lov_prep_getattr_set(struct obd_export *exp, struct obdo *src_oa, 
242                          struct lov_stripe_md *lsm, 
243                          struct lov_request_set **reqset);
244 int lov_fini_getattr_set(struct lov_request_set *set);
245 int lov_prep_destroy_set(struct obd_export *exp, struct obdo *src_oa,
246                          struct lov_stripe_md *lsm, 
247                          struct obd_trans_info *oti, 
248                          struct lov_request_set **reqset);
249 int lov_update_destroy_set(struct lov_request_set *set,
250                            struct lov_request *req, int rc);
251 int lov_fini_destroy_set(struct lov_request_set *set);
252 int lov_prep_setattr_set(struct obd_export *exp, struct obdo *src_oa,
253                          struct lov_stripe_md *lsm, struct obd_trans_info *oti,
254                          struct lov_request_set **reqset);
255 int lov_fini_setattr_set(struct lov_request_set *set);
256 int lov_prep_punch_set(struct obd_export *exp, struct obdo *src_oa,
257                        struct lov_stripe_md *lsm, obd_off start,
258                        obd_off end, struct obd_trans_info *oti,
259                        struct lov_request_set **reqset);
260 int lov_update_punch_set(struct lov_request_set *set, struct lov_request *req,
261                          int rc);
262 int lov_fini_punch_set(struct lov_request_set *set);
263 int lov_prep_sync_set(struct obd_export *exp, struct obdo *src_oa,
264                       struct lov_stripe_md *lsm, obd_off start,
265                       obd_off end, struct lov_request_set **reqset);
266 int lov_fini_sync_set(struct lov_request_set *set);
267 int lov_prep_enqueue_set(struct obd_export *exp, struct lov_stripe_md *lsm, 
268                          ldlm_policy_data_t *policy, __u32 mode,
269                          struct lustre_handle *lockh,
270                          struct lov_request_set **reqset);
271 int lov_update_enqueue_set(struct lov_request_set *set, 
272                            struct lov_request *req, int rc, int flags);
273 int lov_fini_enqueue_set(struct lov_request_set *set, __u32 mode);
274 int lov_prep_match_set(struct obd_export *exp, struct lov_stripe_md *lsm,
275                        ldlm_policy_data_t *policy, __u32 mode,
276                        struct lustre_handle *lockh,
277                        struct lov_request_set **reqset);
278 int lov_update_match_set(struct lov_request_set *set, struct lov_request *req,
279                          int rc);
280 int lov_fini_match_set(struct lov_request_set *set, __u32 mode, int flags); 
281 int lov_prep_cancel_set(struct obd_export *exp, struct lov_stripe_md *lsm,
282                         __u32 mode, struct lustre_handle *lockh,
283                         struct lov_request_set **reqset);
284 int lov_fini_cancel_set(struct lov_request_set *set);
285
286 /* lov_obd.c */
287 int lov_get_stripecnt(struct lov_obd *lov, int stripe_count);
288 int lov_alloc_memmd(struct lov_stripe_md **lsmp, int stripe_count, int pattern);
289 void lov_free_memmd(struct lov_stripe_md **lsmp);
290
291 /* lov_log.c */
292 int lov_llog_init(struct obd_device *, struct obd_llogs *,
293                   struct obd_device *, int, struct llog_catid *);
294 int lov_llog_finish(struct obd_device *, struct obd_llogs *, int);
295
296 /* lov_pack.c */
297 int lov_packmd(struct obd_export *exp, struct lov_mds_md **lmm,
298                struct lov_stripe_md *lsm);
299 int lov_unpackmd(struct obd_export *exp, struct lov_stripe_md **lsmp,
300                  struct lov_mds_md *lmm, int lmm_bytes);
301 int lov_setstripe(struct obd_export *exp,
302                   struct lov_stripe_md **lsmp, struct lov_user_md *lump);
303 int lov_setea(struct obd_export *exp, struct lov_stripe_md **lsmp,
304               struct lov_user_md *lump);
305 int lov_getstripe(struct obd_export *exp,
306                   struct lov_stripe_md *lsm, struct lov_user_md *lump);
307
308 /* lproc_lov.c */
309 extern struct file_operations lov_proc_target_fops;
310
311 #endif