Whamcloud - gitweb
Branch HEAD
[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 #include <asm/segment.h>
35 #include <asm/uaccess.h>
36 #include <linux/types.h>
37 #include <linux/fs.h>
38 #include <linux/time.h>
39 #include <linux/timer.h>
40 #endif
41
42 #ifdef __KERNEL__
43 # ifndef HAVE_SERVER_SUPPORT
44
45 /* hash info structure used by the directory hash */
46 #  define LDISKFS_DX_HASH_LEGACY        0
47 #  define LDISKFS_DX_HASH_HALF_MD4      1
48 #  define LDISKFS_DX_HASH_TEA           2
49 #  define LDISKFS_DX_HASH_R5            3
50 #  define LDISKFS_DX_HASH_SAME          4
51 #  define LDISKFS_DX_HASH_MAX           4
52
53 /* hash info structure used by the directory hash */
54 struct ldiskfs_dx_hash_info
55 {
56         u32     hash;
57         u32     minor_hash;
58         int     hash_version;
59         u32     *seed;
60 };
61
62 #  define LDISKFS_HTREE_EOF     0x7fffffff
63
64 int ldiskfsfs_dirhash(const char *name, int len, struct ldiskfs_dx_hash_info *hinfo);
65
66 # endif /* HAVE_SERVER_SUPPORT */
67 #endif /* __KERNEL__ */
68
69 void obd_zombie_impexp_init(void);
70 void obd_zombie_impexp_cull(void);
71 extern void (*obd_zombie_impexp_notify)(void);
72
73 /* obdo.c */
74 #ifdef __KERNEL__
75 void obdo_from_inode(struct obdo *dst, struct inode *src, obd_flag valid);
76 void obdo_from_la(struct obdo *dst, struct lu_attr *la, obd_flag valid);
77 void obdo_refresh_inode(struct inode *dst, struct obdo *src, obd_flag valid);
78 void obdo_to_inode(struct inode *dst, struct obdo *src, obd_flag valid);
79 #endif
80
81 #if !defined(__KERNEL__)
82 #define to_kdev_t(dev) dev
83 #define kdev_t_to_nr(dev) dev
84 #endif
85
86 #endif /* __LINUX_OBD_CLASS_H */