Whamcloud - gitweb
LU-1146 build: batch update copyright messages
[fs/lustre-release.git] / lustre / include / obd_lov.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
30  * Use is subject to license terms.
31  *
32  * Copyright (c) 2012, Whamcloud, Inc.
33  */
34 /*
35  * This file is part of Lustre, http://www.lustre.org/
36  * Lustre is a trademark of Sun Microsystems, Inc.
37  */
38
39 #ifndef _OBD_LOV_H__
40 #define _OBD_LOV_H__
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 static inline __u32 lov_mds_md_size(__u16 stripes, __u32 lmm_magic)
48 {
49         if (lmm_magic == LOV_MAGIC_V3)
50                 return sizeof(struct lov_mds_md_v3) +
51                         stripes * sizeof(struct lov_ost_data_v1);
52         else
53                 return sizeof(struct lov_mds_md_v1) +
54                         stripes * sizeof(struct lov_ost_data_v1);
55 }
56
57 struct lov_version_size {
58         __u32   lvs_magic;
59         size_t  lvs_lmm_size;
60         size_t  lvs_lod_size;
61 };
62
63 static inline __u32 lov_mds_md_stripecnt(int ea_size, __u32 lmm_magic)
64 {
65         static const struct lov_version_size lmm_ver_size[] = {
66                         { .lvs_magic = LOV_MAGIC_V3,
67                           .lvs_lmm_size = sizeof(struct lov_mds_md_v3),
68                           .lvs_lod_size = sizeof(struct lov_ost_data_v1) },
69                         { .lvs_magic = LOV_MAGIC_V1,
70                           .lvs_lmm_size = sizeof(struct lov_mds_md_v1),
71                           .lvs_lod_size = sizeof(struct lov_ost_data_v1)} };
72         int i;
73
74         for (i = 0; i < ARRAY_SIZE(lmm_ver_size); i++) {
75                 if (lmm_magic == lmm_ver_size[i].lvs_magic) {
76                         if (ea_size <= lmm_ver_size[i].lvs_lmm_size)
77                                 return 0;
78                         return (ea_size - lmm_ver_size[i].lvs_lmm_size) /
79                                 lmm_ver_size[i].lvs_lod_size;
80                 }
81         }
82
83         /* Invalid LOV magic, so no stripes could fit */
84         return 0;
85 }
86
87 #define IOC_LOV_TYPE                   'g'
88 #define IOC_LOV_MIN_NR                 50
89 #define IOC_LOV_SET_OSC_ACTIVE         _IOWR('g', 50, long)
90 #define IOC_LOV_MAX_NR                 50
91
92 #define QOS_DEFAULT_THRESHOLD           10 /* MB */
93 #define QOS_DEFAULT_MAXAGE              5  /* Seconds */
94
95 #endif