Whamcloud - gitweb
Numerous patches and fixes to Phil's initial attack.
[fs/lustre-release.git] / lustre / include / linux / obdfs.h
1 /* object based disk file system
2  * 
3  * This software is licensed under the GPL.  See the file COPYING in the
4  * top directory of this distribution for details.
5  * 
6  * Copyright (C), 1999, Stelias Computing Inc
7  *
8  *
9  */
10
11
12 #ifndef _OBDFS_H
13 #define OBDFS_H
14 #include <../obd/linux/sim_obd.h>
15
16
17 struct obdfs_sb_info {
18         struct obd_conn_info osi_conn_info;
19         struct super_block *osi_super;
20         int osi_obd_minor;
21 };
22
23
24
25 void obdfs_sysctl_init(void);
26 void obdfs_sysctl_clean(void);
27
28 struct obdfs_inode_info;
29
30 #define OBDFS_SUPER_MAGIC 0x4711
31
32 #endif
33