Whamcloud - gitweb
fixes for deliverables.
[fs/lustre-release.git] / lustre / include / linux / presto.h
1 #ifndef __PRESTO_H_
2 #define __PRESTO_H_ 1
3
4 struct bottomfs {
5         struct super_operations *bottom_sops;
6
7         struct inode_operations *bottom_dir_iops;
8         struct inode_operations *bottom_file_iops;
9         struct inode_operations *bottom_sym_iops;
10
11         struct file_operations *bottom_dir_fops;
12         struct file_operations *bottom_file_fops;
13         struct file_operations *bottom_sym_fops;
14         kdev_t bottom_dev;
15 };
16 extern struct bottomfs *the_bottom;
17
18 /* sysctl.c */
19 void presto_sysctl_init(void);
20 void presto_sysctl_clean(void);
21
22 #endif