Whamcloud - gitweb
- make HEAD from b_post_cmd3
[fs/lustre-release.git] / lustre / obdclass / mea.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * Copyright (C) 2002, 2003 Cluster File Systems, Inc.
5  *
6  *   This file is part of Lustre, http://www.lustre.org.
7  *
8  *   Lustre is free software; you can redistribute it and/or
9  *   modify it under the terms of version 2 of the GNU General Public
10  *   License as published by the Free Software Foundation.
11  *
12  *   Lustre is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *   GNU General Public License for more details.
16  *
17  *   You should have received a copy of the GNU General Public License
18  *   along with Lustre; if not, write to the Free Software
19  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  */
21
22 #define DEBUG_SUBSYSTEM S_CLASS
23 #ifdef __KERNEL__
24 #include <linux/kmod.h>   /* for request_module() */
25 #include <linux/module.h>
26 #include <obd_class.h>
27 #include <linux/random.h>
28 #include <linux/slab.h>
29 #include <linux/pagemap.h>
30 #else
31 #include <liblustre.h>
32 #include <obd_class.h>
33 #include <obd.h>
34 #endif
35 #include <lprocfs_status.h>
36 #include <lustre/lustre_idl.h>
37
38 #ifdef __KERNEL__
39 #include <linux/jbd.h>
40 /* LDISKFS_SB() */
41 #include <linux/ldiskfs_fs.h>
42 #endif
43 static int mea_last_char_hash(int count, char *name, int namelen)
44 {
45         unsigned int c;
46
47         c = name[namelen - 1];
48         if (c == 0)
49                 CWARN("looks like wrong len is passed\n");
50         c = c % count;
51         return c;
52 }
53
54 static int mea_all_chars_hash(int count, char *name, int namelen)
55 {
56         unsigned int c = 0;
57
58         while (--namelen >= 0)
59                 c += name[namelen];
60         c = c % count;
61         return c;
62 }
63
64 #ifdef __KERNEL__
65 /* This hash calculate method must be same as the lvar hash method */
66
67 #define LVAR_HASH_SANDWICH  (0)
68 #define LVAR_HASH_TEA       (1)
69 #define LVAR_HASH_R5        (0)
70 #define LVAR_HASH_PREFIX    (0)
71
72 static __u32 hash_build0(const char *name, int namelen)
73 {
74         __u32 result;
75
76         if (namelen == 0)
77                 return 0;
78         if (strncmp(name, ".", 1) == 0 && namelen == 1)
79                 return 1;
80         if (strncmp(name, "..", 2) == 0 && namelen == 2)
81                 return 2;
82
83         if (LVAR_HASH_PREFIX) {
84                 result = 0;
85                 strncpy((void *)&result,
86                         name, min(namelen, (int)sizeof result));
87         } else {
88                 struct ldiskfs_dx_hash_info hinfo;
89
90                 if (LVAR_HASH_TEA)
91                         hinfo.hash_version = LDISKFS_DX_HASH_TEA;
92                 else
93                         hinfo.hash_version = LDISKFS_DX_HASH_R5;
94                 hinfo.seed = 0;
95                 ldiskfsfs_dirhash(name, namelen, &hinfo);
96                 result = hinfo.hash;
97                 if (LVAR_HASH_SANDWICH) {
98                         __u32 result2;
99
100                         hinfo.hash_version = LDISKFS_DX_HASH_TEA;
101                         hinfo.seed = 0;
102                         ldiskfsfs_dirhash(name, namelen, &hinfo);
103                         result2 = hinfo.hash;
104                         result = (0xfc000000 & result2) | (0x03ffffff & result);
105                 }
106         }
107
108         return result;
109 }
110
111 enum {
112         HASH_GRAY_AREA = 1024
113 };
114
115 static __u32 hash_build(const char *name, int namelen)
116 {
117         __u32 hash;
118
119         hash = (hash_build0(name, namelen) << 1) & MAX_HASH_SIZE;
120         if (hash > MAX_HASH_SIZE - HASH_GRAY_AREA)
121                 hash &= HASH_GRAY_AREA - 1;
122         return hash;
123 }
124
125 static int mea_hash_segment(int count, const char *name, int namelen)
126 {
127         __u32 hash;
128
129         LASSERT(IS_PO2(MAX_HASH_SIZE + 1));
130
131         hash = hash_build(name, namelen) / (MAX_HASH_SIZE / count);
132         LASSERTF(hash < count, "hash %x count %d \n", hash, count);
133
134         return hash;
135 }
136 #else
137 static int mea_hash_segment(int count, char *name, int namelen)
138 {
139 #warning "fix for liblustre"
140         return 0;
141 }
142 #endif
143 int raw_name2idx(int hashtype, int count, const char *name, int namelen)
144 {
145         unsigned int c = 0;
146
147         LASSERT(namelen > 0);
148         if (count <= 1)
149                 return 0;
150
151         switch (hashtype) {
152                 case MEA_MAGIC_LAST_CHAR:
153                         c = mea_last_char_hash(count, (char *)name, namelen);
154                         break;
155                 case MEA_MAGIC_ALL_CHARS:
156                         c = mea_all_chars_hash(count, (char *)name, namelen);
157                         break;
158                 case MEA_MAGIC_HASH_SEGMENT:
159                         c = mea_hash_segment(count, (char *)name, namelen);
160                         break;
161                 default:
162                         CERROR("Unknown hash type 0x%x\n", hashtype);
163         }
164         
165         LASSERT(c < count);
166         return c;
167 }
168
169 int mea_name2idx(struct lmv_stripe_md *mea, const char *name, int namelen)
170 {
171         unsigned int c;
172
173         LASSERT(mea && mea->mea_count);
174
175         c = raw_name2idx(mea->mea_magic, mea->mea_count, name, namelen);
176
177         LASSERT(c < mea->mea_count);
178         return c;
179 }
180