Whamcloud - gitweb
1. Replace i_mapping with the bottom inode imapping in mmap method according to peter...
[fs/lustre-release.git] / lustre / smfs / smfs_internal.h
1 #ifndef __LINUX_SMFS_H
2 #define __LINUX_SMFS_H
3
4 struct smfs_inode_info {
5         struct inode *smi_inode;
6 };
7
8 struct smfs_super_info {
9         struct super_block *smsi_sb;
10         struct vfsmount *smsi_mnt;      /* mount the cache kere with kern_do_mount (like MDS) */
11         int ops_check;
12 };
13
14 #define I2SMI(inode)  ((struct smfs_inode_info *) (&(inode->u.generic_ip)))
15 #define S2SMI(sb)   ((struct smfs_super_info *) (&(sb->u.generic_sbp)))
16 #define S2CSB(sb)   (((struct smfs_super_info *) (&(sb->u.generic_sbp)))->smsi_sb) 
17 #define I2CI(inode) (((struct smfs_inode_info*) (&(inode->u.generic_ip)))->smi_inode)
18
19 #define SB_OPS_CHECK            0x1
20 #define INODE_OPS_CHECK         0x2 
21 #define FILE_OPS_CHECK          0x4 
22 #define DENTRY_OPS_CHECK        0x8 
23 #define DEV_OPS_CHECK           0x10 
24 #define SYMLINK_OPS_CHECK       0x20 
25 #define DIR_OPS_CHECK           0x40 
26
27 #include "smfs_support.h"
28 struct sm_ops {
29         /* operations on the file store */
30         struct super_operations sm_sb_ops;
31                                                                                                                                                                                                      
32         struct inode_operations sm_dir_iops;
33         struct inode_operations sm_file_iops;
34         struct inode_operations sm_sym_iops;
35                                                                                                                                                                                                      
36         struct file_operations sm_dir_fops;
37         struct file_operations sm_file_fops;
38         struct file_operations sm_sym_fops;
39                                                                                                                                                                                                      
40         struct dentry_operations sm_dentry_ops;
41 };
42
43 struct option {
44         char *opt;
45         char *value;
46         struct list_head list;
47 };
48
49 extern int init_smfs_proc_sys(void);
50 /*options.c*/
51 extern int get_opt(struct option **option, char **pos);
52 extern void cleanup_option(void);
53 extern int init_option(char *data);
54 /*cache.c*/
55 void sm_set_inode_ops(struct inode *cache_inode, struct inode *inode);
56 void sm_set_sb_ops(struct super_block *cache_sb, struct super_block *sb);
57 void init_smfs_cache(void);
58 void cleanup_smfs_cache(void);
59 /*super.c*/
60 extern int init_smfs(void);
61 extern int cleanup_smfs(void);
62 extern void smfs_put_super(struct super_block *sb);
63 extern void duplicate_sb(struct super_block *csb, struct super_block *sb);
64 /*sysctl.c*/
65 extern int sm_debug_level;
66 extern int sm_inodes;
67 extern long sm_kmemory;
68 extern int sm_stack;
69 /*dir.c*/
70 extern struct inode_operations smfs_dir_iops; 
71 extern struct file_operations smfs_dir_fops; 
72 extern int smfs_prepare_dentry(struct dentry *dentry, 
73                                struct dentry *parent,
74                                struct qstr *name);
75
76 void smfs_clear_dentry(struct dentry *dentry);
77 /*inode.c*/
78 extern void duplicate_inode(struct inode *cache_inode, struct inode *inode);
79 /*file.c*/
80 extern void smfs_prepare_cachefile(struct inode *inode,
81                                    struct file *file, 
82                                    struct inode *cache_inode,
83                                    struct file *cache_file,
84                                    struct dentry *cache_dentry);
85 extern int smfs_ioctl(struct inode * inode, struct file * filp,  unsigned int cmd,
86                       unsigned long arg);
87 extern int smfs_fsync(struct file * file, struct dentry *dentry, int datasync);
88 extern int smfs_setattr(struct dentry *dentry, struct iattr *attr); 
89 extern int smfs_setxattr(struct dentry *dentry, const char *name,
90                          const void *value, size_t size, int flags);
91 extern int smfs_getxattr(struct dentry *dentry, const char *name,
92                          void *buffer, size_t size);
93 extern ssize_t smfs_listxattr(struct dentry *dentry, char *buffer, size_t size);
94 extern int smfs_removexattr(struct dentry *dentry, const char *name);
95 extern void smfs_update_file(struct file *file, struct file *cache_file);
96 #endif /* __LINUX_SMFS_H */