Whamcloud - gitweb
LU-2914 lfsck: split LFSCK code from mdd to lfsck
[fs/lustre-release.git] / lustre / include / obd_lov.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) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 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 _OBD_LOV_H__
38 #define _OBD_LOV_H__
39
40 #define LOV_DEFAULT_STRIPE_SIZE (1 << LNET_MTU_BITS)
41
42 static inline int lov_stripe_md_size(__u16 stripes)
43 {
44         return sizeof(struct lov_stripe_md) + stripes*sizeof(struct lov_oinfo*);
45 }
46
47 struct lov_version_size {
48         __u32   lvs_magic;
49         size_t  lvs_lmm_size;
50         size_t  lvs_lod_size;
51 };
52
53 static inline __u32 lov_mds_md_stripecnt(int ea_size, __u32 lmm_magic)
54 {
55         static const struct lov_version_size lmm_ver_size[] = {
56                         { .lvs_magic = LOV_MAGIC_V3,
57                           .lvs_lmm_size = sizeof(struct lov_mds_md_v3),
58                           .lvs_lod_size = sizeof(struct lov_ost_data_v1) },
59                         { .lvs_magic = LOV_MAGIC_V1,
60                           .lvs_lmm_size = sizeof(struct lov_mds_md_v1),
61                           .lvs_lod_size = sizeof(struct lov_ost_data_v1)} };
62         int i;
63
64         for (i = 0; i < ARRAY_SIZE(lmm_ver_size); i++) {
65                 if (lmm_magic == lmm_ver_size[i].lvs_magic) {
66                         if (ea_size <= lmm_ver_size[i].lvs_lmm_size)
67                                 return 0;
68                         return (ea_size - lmm_ver_size[i].lvs_lmm_size) /
69                                 lmm_ver_size[i].lvs_lod_size;
70                 }
71         }
72
73         /* Invalid LOV magic, so no stripes could fit */
74         return 0;
75 }
76
77 /* lov_do_div64(a, b) returns a % b, and a = a / b.
78  * The 32-bit code is LOV-specific due to knowing about stripe limits in
79  * order to reduce the divisor to a 32-bit number.  If the divisor is
80  * already a 32-bit value the compiler handles this directly. */
81 #if BITS_PER_LONG > 32
82 # define lov_do_div64(n,base) ({                                        \
83         uint64_t __base = (base);                                       \
84         uint64_t __rem;                                                 \
85         __rem = ((uint64_t)(n)) % __base;                               \
86         (n) = ((uint64_t)(n)) / __base;                                 \
87         __rem;                                                          \
88   })
89 #else
90 # define lov_do_div64(n,base) ({                                        \
91         uint64_t __rem;                                                 \
92         if ((sizeof(base) > 4) && (((base) & 0xffffffff00000000ULL) != 0)) {  \
93                 int __remainder;                                              \
94                 LASSERTF(!((base) & (LOV_MIN_STRIPE_SIZE - 1)), "64 bit lov " \
95                          "division %llu / %llu\n", (n), (uint64_t)(base));    \
96                 __remainder = (n) & (LOV_MIN_STRIPE_SIZE - 1);          \
97                 (n) >>= LOV_MIN_STRIPE_BITS;                            \
98                 __rem = do_div(n, (base) >> LOV_MIN_STRIPE_BITS);       \
99                 __rem <<= LOV_MIN_STRIPE_BITS;                          \
100                 __rem += __remainder;                                   \
101         } else {                                                        \
102                 __rem = do_div(n, base);                                \
103         }                                                               \
104         __rem;                                                          \
105   })
106 #endif
107
108 #define IOC_LOV_TYPE                   'g'
109 #define IOC_LOV_MIN_NR                 50
110 #define IOC_LOV_SET_OSC_ACTIVE         _IOWR('g', 50, long)
111 #define IOC_LOV_MAX_NR                 50
112
113 #define QOS_DEFAULT_THRESHOLD           10 /* MB */
114 #define QOS_DEFAULT_MAXAGE              5  /* Seconds */
115
116 #endif