Whamcloud - gitweb
Land b_recovery (other than WIP lock-replay work).
[fs/lustre-release.git] / lustre / include / linux / obd_lov.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  */
4
5 #ifndef _OBD_LOV_H__
6 #define _OBD_LOV_H__
7
8 #ifdef __KERNEL__
9
10 #define OBD_LOV_DEVICENAME "lov"
11
12 void lov_unpackdesc(struct lov_desc *ld);
13 void lov_packdesc(struct lov_desc *ld);
14
15 static inline int lov_stripe_md_size(int stripes)
16 {
17         return sizeof(struct lov_stripe_md) + stripes*sizeof(struct lov_oinfo);
18 }
19 #endif
20
21 static inline int lov_mds_md_size(int stripes)
22 {
23         return sizeof(struct lov_mds_md) + stripes*sizeof(struct lov_object_id);
24 }
25
26 #define IOC_LOV_TYPE                   'g'
27 #define IOC_LOV_MIN_NR                 50
28 #define IOC_LOV_SET_OSC_ACTIVE         _IOWR('g', 50, long)
29 #define IOC_LOV_MAX_NR                 50
30
31 #endif