Whamcloud - gitweb
- make all "getters" name correspond to naming paradigm module-object-action.
[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 static int mea_last_char_hash(int count, char *name, int namelen)
39 {
40         unsigned int c;
41         
42         c = name[namelen - 1];
43         if (c == 0)
44                 CWARN("looks like wrong len is passed\n");
45         c = c % count;
46         return c;
47 }
48
49 static int mea_all_chars_hash(int count, char *name, int namelen)
50 {
51         unsigned int c = 0;
52
53         while (--namelen >= 0)
54                 c += name[namelen];
55         c = c % count;
56         return c;
57 }
58
59 /* This hash calculate method must be same as the lvar hash method */
60 static int mea_hash_segment(int count, char *name, int namelen)
61 {
62         __u32 result = 0;
63         __u32 hash_segment = MAX_HASH_SIZE / count;
64         
65         strncpy((void *)&result, name, min(namelen, (int)sizeof result));
66
67         result = (result << 1) & 0x7fffffff;
68
69         return result / hash_segment;
70 }
71
72 int raw_name2idx(int hashtype, int count, const char *name, int namelen)
73 {
74         unsigned int c = 0;
75
76         LASSERT(namelen > 0);
77         if (count <= 1)
78                 return 0;
79
80         switch (hashtype) {
81                 case MEA_MAGIC_LAST_CHAR:
82                         c = mea_last_char_hash(count, (char *) name, namelen);
83                         break;
84                 case MEA_MAGIC_ALL_CHARS:
85                         c = mea_all_chars_hash(count, (char *) name, namelen);
86                         break;
87                 case MEA_MAGIC_HASH_SEGMENT:
88                         c = mea_hash_segment(count, (char *) name, namelen);
89                         break;
90                 default:
91                         CERROR("unknown hash type 0x%x\n", hashtype);
92         }
93         
94         return c;
95 }
96
97 int mea_name2idx(struct lmv_stripe_md *mea, char *name, int namelen)
98 {
99         unsigned int c;
100         
101         LASSERT(mea && mea->mea_count);
102
103         c = raw_name2idx(mea->mea_magic, mea->mea_count, name, namelen);
104
105         LASSERT(c < mea->mea_count);
106         return c;
107 }
108