Whamcloud - gitweb
land b_ost_amd onto 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 #define LAP_MAGIC 8200
16
17 static inline int lov_tgt_changed(struct lov_obd *lov, struct lov_oinfo *loi)
18 {
19         return lov->tgts[loi->loi_ost_idx].ltd_gen != loi->loi_ost_gen;
20 }
21
22 struct lov_async_page {
23         int                             lap_magic;
24         int                             lap_stripe;
25         obd_off                         lap_sub_offset;
26         void                            *lap_sub_cookie;
27         struct obd_async_page_ops       *lap_caller_ops;
28         struct obd_async_page_ops       *lap_caller_data;
29         obd_id                          lap_loi_id;
30 };
31
32 /* lov_obd.c */
33 int lov_get_stripecnt(struct lov_obd *lov, int stripe_count);
34 int lov_alloc_memmd(struct lov_stripe_md **lsmp, int stripe_count, int pattern);
35 void lov_free_memmd(struct lov_stripe_md **lsmp);
36
37 /* lov_log.c */
38 int lov_llog_init(struct obd_device *, struct obd_llogs *,
39                   struct obd_device *, int, struct llog_catid *);
40 int lov_llog_finish(struct obd_device *, struct obd_llogs *, int);
41
42 /* lov_pack.c */
43 int lov_packmd(struct obd_export *exp, struct lov_mds_md **lmm,
44                struct lov_stripe_md *lsm);
45 int lov_unpackmd(struct obd_export *exp, struct lov_stripe_md **lsmp,
46                  struct lov_mds_md *lmm, int lmm_bytes);
47 int lov_setstripe(struct obd_export *exp,
48                   struct lov_stripe_md **lsmp, struct lov_user_md *lump);
49 int lov_setea(struct obd_export *exp, struct lov_stripe_md **lsmp,
50               struct lov_user_md *lump);
51 int lov_getstripe(struct obd_export *exp,
52                   struct lov_stripe_md *lsm, struct lov_user_md *lump);
53
54 /* lproc_lov.c */
55 extern struct file_operations lov_proc_target_fops;
56
57 #endif