Whamcloud - gitweb
086ee58103b1ed44013504fb4f907a59f80fb65a
[fs/lustre-release.git] / lustre / include / linux / obd_class.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (C) 2001-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
23 #ifndef __LINUX_CLASS_OBD_H
24 #define __LINUX_CLASS_OBD_H
25
26 #ifndef __CLASS_OBD_H
27 #error Do not #include this file directly. #include <obd_class.h> instead
28 #endif
29
30 #ifndef __KERNEL__
31 #include <sys/types.h>
32 #include <libcfs/list.h>
33 #else
34 #ifdef HAVE_SEGMENT_H
35 # include <asm/segment.h>
36 #endif
37 #include <asm/uaccess.h>
38 #include <linux/types.h>
39 #include <linux/fs.h>
40 #include <linux/time.h>
41 #include <linux/timer.h>
42 #endif
43
44 #ifdef __KERNEL__
45 # ifndef HAVE_SERVER_SUPPORT
46
47 /* hash info structure used by the directory hash */
48 #  define LDISKFS_DX_HASH_LEGACY        0
49 #  define LDISKFS_DX_HASH_HALF_MD4      1
50 #  define LDISKFS_DX_HASH_TEA           2
51 #  define LDISKFS_DX_HASH_R5            3
52 #  define LDISKFS_DX_HASH_SAME          4
53 #  define LDISKFS_DX_HASH_MAX           4
54
55 /* hash info structure used by the directory hash */
56 struct ldiskfs_dx_hash_info
57 {
58         u32     hash;
59         u32     minor_hash;
60         int     hash_version;
61         u32     *seed;
62 };
63
64 #  define LDISKFS_HTREE_EOF     0x7fffffff
65
66 int ldiskfsfs_dirhash(const char *name, int len, struct ldiskfs_dx_hash_info *hinfo);
67
68 # endif /* HAVE_SERVER_SUPPORT */
69 #endif /* __KERNEL__ */
70
71 void obd_zombie_impexp_init(void);
72 void obd_zombie_impexp_cull(void);
73 extern void (*obd_zombie_impexp_notify)(void);
74
75 /* obdo.c */
76 #ifdef __KERNEL__
77 void obdo_from_inode(struct obdo *dst, struct inode *src, obd_flag valid);
78 void obdo_from_la(struct obdo *dst, struct lu_attr *la, obd_flag valid);
79 void obdo_refresh_inode(struct inode *dst, struct obdo *src, obd_flag valid);
80 void obdo_to_inode(struct inode *dst, struct obdo *src, obd_flag valid);
81 #endif
82
83 #if !defined(__KERNEL__)
84 #define to_kdev_t(dev) dev
85 #define kdev_t_to_nr(dev) dev
86 #endif
87
88 #endif /* __LINUX_OBD_CLASS_H */