Whamcloud - gitweb
land b_gns onto HEAD. If you are working on CMD, you MUST UPDATE YOUR
[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 <linux/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 <linux/obd_class.h>
33 #include <linux/obd.h>
34 #endif
35 #include <linux/lprocfs_status.h>
36
37
38 int mea_name2idx(struct mea *mea, char *name, int namelen)
39 {
40         unsigned int c;
41
42         /* just to simplify caller code */
43         if (mea == NULL)
44                 return 0;
45
46         if (mea->mea_count == 0)
47                 return 0;
48
49         /* FIXME: real hash calculation here */
50         c = name[namelen - 1];
51         if (c == 0)
52                 CWARN("looks like wrong len is passed\n");
53         c = c % mea->mea_count;
54         
55         LASSERT(c < mea->mea_count);
56         return c;
57 }
58
59 int raw_name2idx(int count, const char *name, int namelen)
60 {
61         unsigned int c;
62
63         LASSERT(namelen > 0);
64         if (count <= 1)
65                 return 0;
66
67
68         /* FIXME: real hash calculation here */
69         c = name[namelen - 1];
70         if (c == 0)
71                 CWARN("looks like wrong len is passed\n");
72         c = c % count;
73         
74         return c;
75 }
76