Whamcloud - gitweb
Branch: b_new_cmd
[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 static int mea_hash_segment(int count, char *name, int namelen)
67 {
68         struct ldiskfs_dx_hash_info hinfo;
69         int result;
70         __u64 hash;
71         __u64 hash_segment = MAX_HASH_SIZE;
72
73         if (namelen == 0)
74                 return 0;
75         if (strncmp(name, ".", 1) == 0 && namelen == 1)
76                 return 2;
77         if (strncmp(name, "..", 2) == 0 && namelen == 2)
78                 return 4;
79
80         hinfo.hash_version = LDISKFS_DX_HASH_TEA;
81         hinfo.seed = 0;
82         result = ldiskfsfs_dirhash(name, namelen, &hinfo);
83         LASSERT(result == 0);
84         hash = (hinfo.hash << 1) & 0x7fffffff;
85         do_div(hash_segment, count);
86         do_div(hash, hash_segment);
87         LASSERTF(hash <= count, "hash "LPU64" count %d \n", hash, count);
88
89         return hash;
90 }
91 #else
92 static int mea_hash_segment(int count, char *name, int namelen)
93 {
94 #warning "fix for liblustre"
95         return 0;
96 }
97 #endif
98 int raw_name2idx(int hashtype, int count, const char *name, int namelen)
99 {
100         unsigned int c = 0;
101
102         LASSERT(namelen > 0);
103         if (count <= 1)
104                 return 0;
105
106         switch (hashtype) {
107                 case MEA_MAGIC_LAST_CHAR:
108                         c = mea_last_char_hash(count, (char *) name, namelen);
109                         break;
110                 case MEA_MAGIC_ALL_CHARS:
111                         c = mea_all_chars_hash(count, (char *) name, namelen);
112                         break;
113                 case MEA_MAGIC_HASH_SEGMENT:
114                         c = mea_hash_segment(count, (char *) name, namelen);
115                         break;
116                 default:
117                         CERROR("unknown hash type 0x%x\n", hashtype);
118         }
119         
120         return c;
121 }
122
123 int mea_name2idx(struct lmv_stripe_md *mea, char *name, int namelen)
124 {
125         unsigned int c;
126
127         LASSERT(mea && mea->mea_count);
128
129         c = raw_name2idx(mea->mea_magic, mea->mea_count, name, namelen);
130
131         LASSERT(c < mea->mea_count);
132         return c;
133 }
134