Whamcloud - gitweb
obdsync/*: added to CVS
[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 <linux/obd_class.h>
15 #include <linux/list.h>
16
17 /* super.c */
18 void obdfs_read_inode(struct inode *inode);
19
20
21 /* rw.c */
22 int obdfs_init_wreqcache(void);
23 int obdfs_readpage(struct dentry *dentry, struct page *page);
24 int obdfs_writepage(struct dentry *dentry, struct page *page);
25 struct page *obdfs_getpage(struct inode *inode, unsigned long offset, int create, int locked);
26 int obdfs_write_one_page(struct file *file, struct page *page, unsigned long offset, unsigned long bytes, const char * buf);
27
28 /* namei.c */
29 struct dentry *obdfs_lookup(struct inode * dir, struct dentry *dentry);
30 int obdfs_create (struct inode * dir, struct dentry * dentry, int mode);
31 int obdfs_mkdir(struct inode *dir, struct dentry *dentry, int mode);
32 int obdfs_rmdir(struct inode *dir, struct dentry *dentry);
33 int obdfs_unlink(struct inode *dir, struct dentry *dentry);
34 int obdfs_mknod(struct inode *dir, struct dentry *dentry, int mode, int rdev);
35 int obdfs_symlink(struct inode *dir, struct dentry *dentry, const char *symname);
36 int obdfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry);
37 int obdfs_rename(struct inode *old_dir, struct dentry *old_dentry, struct inode *new_dir, struct dentry *new_dentry);
38 /* dir.c */
39 int obdfs_check_dir_entry (const char * function, struct inode * dir,
40                           struct ext2_dir_entry_2 * de,
41                           struct page * page,
42                            unsigned long offset);
43 /* symlink.c */
44 int obdfs_readlink (struct dentry *, char *, int);
45 struct dentry *obdfs_follow_link(struct dentry *, struct dentry *, unsigned int); 
46
47 struct obdfs_wreq {
48         struct list_head         wb_list;       /* linked list of req's */
49         struct inode            *wb_inode;      /* dentry referenced */
50         struct page             *wb_page;       /* page to be written */
51 };
52
53 struct obdfs_sb_info {
54         struct obd_conn osi_conn;
55         struct super_block *osi_super;
56         struct obd_device *osi_obd;
57         struct obd_ops *osi_ops;     
58         ino_t           osi_rootino; /* which root inode */
59         int             osi_minor;   /* minor of /dev/obdX */
60         struct list_head osi_list;  /* linked list of pages to write */
61 };
62
63 #define WB_NEXT(req)    ((struct obdfs_wreq *) ((req)->wb_list.next))
64 /* XXX page list should go on each inode instead of supberblock */
65 #define OBD_LIST(inode) (((struct obdfs_sb_info *)(&(inode)->i_sb->u.generic_sbp))->osi_list)
66 #define WREQ(entry)     (list_entry(entry, struct obdfs_wreq, wb_list))
67
68 void obdfs_sysctl_init(void);
69 void obdfs_sysctl_clean(void);
70
71 struct obdfs_inode_info;
72
73 extern struct file_operations obdfs_file_operations;
74 extern struct inode_operations obdfs_file_inode_operations;
75 extern struct inode_operations obdfs_dir_inode_operations;
76 extern struct inode_operations obdfs_symlink_inode_operations;
77
78 static inline struct obd_ops *iops(struct inode *i)
79 {
80         struct obdfs_sb_info *sbi = (struct obdfs_sb_info *) &i->i_sb->u.generic_sbp;
81         return sbi->osi_ops;
82 }
83
84 static inline struct obd_conn *iid(struct inode *i)
85 {
86         struct obdfs_sb_info *sbi = (struct obdfs_sb_info *) &i->i_sb->u.generic_sbp;
87         return &sbi->osi_conn;
88 }
89
90 #define NOLOCK 0
91 #define LOCKED 1
92
93 #ifdef OPS
94 #warning "*** WARNING redefining OPS"
95 #else
96 #define OPS(sb,op) ((struct obdfs_sb_info *)(& ## sb ## ->u.generic_sbp))->osi_ops->o_ ## op
97 #define IOPS(inode,op) ((struct obdfs_sb_info *)(& ## inode->i_sb ## ->u.generic_sbp))->osi_ops->o_ ## op
98 #endif
99
100 #ifdef ID
101 #warning "*** WARNING redefining ID"
102 #else
103 #define ID(sb) (&((struct obdfs_sb_info *)( & ## sb ## ->u.generic_sbp))->osi_conn)
104 #define IID(inode) (&((struct obdfs_sb_info *)( & ## inode->i_sb ## ->u.generic_sbp))->osi_conn)
105 #endif
106
107 #define OBDFS_SUPER_MAGIC 0x4711
108
109 #endif
110