Whamcloud - gitweb
Update copyright and license information.
[fs/lustre-release.git] / lustre / include / linux / obd_ext2.h
1 #ifndef _OBD_EXT2
2 #define _OBD_EXT2
3 /*
4  * Copyright (C) 2001  Cluster File Systems, Inc.
5  *
6  * This code is issued under the GNU General Public License.
7  * See the file COPYING in this distribution
8  */
9
10 #define OBD_EXT2_RUNIT           _IOWR('f', 61, long)
11
12 #include <linux/iobuf.h>
13
14 #ifndef OBD_EXT2_DEVICENAME
15 #define OBD_EXT2_DEVICENAME "obdext2"
16 #endif
17
18 struct ext2_obd {
19         struct super_block * ext2_sb;
20 };
21
22
23 /* development definitions */
24 extern struct obdfs_sb_info *obd_sbi;
25 extern struct file_operations *obd_fso;
26
27 /* ext2_obd.c */
28 extern struct obd_ops ext2_obd_ops;
29
30
31 #include <linux/ext2_fs.h>
32
33 /* super.c */
34 #ifdef EXT2_OBD_DEBUG
35 #  undef ext2_debug
36 #  define ext2_debug(format, a...) CDEBUG(D_EXT2, format, ## a)
37 #  define ext2_error ext2_warning
38 #  define ext2_panic ext2_warning
39 #  define ext2_warning(sb, func, format, a...) CDEBUG(D_WARNING, format, ## a)
40 #else
41 #  undef ext2_debug
42 #  define ext2_debug(format, a...) {}
43 #  define ext2_error(sb, func, format, a...) printk(KERN_ERR "%s: " format, func, ## a)
44 #  define ext2_panic(sb, func, format, a...) printk(KERN_CRIT "%s: " format, func, ## a)
45 #  define ext2_warning(sb, func, format, a...) printk(KERN_WARNING "%s: " format, func, ## a)
46 #endif
47
48 extern struct super_operations ext2_sops;
49 int obd_remount (struct super_block * sb, int * flags, char * data);
50 struct super_block * ext2_read_super (struct super_block * sb, void * data,
51                                       int silent);
52
53 /* punch.c */
54 void ext2_truncate (struct inode * inode);
55 int ext2_punch (struct inode * inode, loff_t start, size_t count);
56
57 #endif