Whamcloud - gitweb
land b1_5 onto 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 void obd_zombie_impexp_init(void);
43 void obd_zombie_impexp_cull(void);
44 extern void (*obd_zombie_impexp_notify)(void);
45
46 /* obdo.c */
47 #ifdef __KERNEL__
48 void obdo_from_iattr(struct obdo *oa, struct iattr *attr, unsigned ia_valid);
49 void iattr_from_obdo(struct iattr *attr, struct obdo *oa, obd_flag valid);
50 void obdo_from_inode(struct obdo *dst, struct inode *src, obd_flag valid);
51 void obdo_refresh_inode(struct inode *dst, struct obdo *src, obd_flag valid);
52 void obdo_to_inode(struct inode *dst, struct obdo *src, obd_flag valid);
53 #endif
54
55 #if !defined(__KERNEL__) || (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
56 #define to_kdev_t(dev) dev
57 #define kdev_t_to_nr(dev) dev
58 #endif
59
60 #endif /* __LINUX_OBD_CLASS_H */