Whamcloud - gitweb
obdfs/flushd.c: added constant for nr_free_buffer_pages() function call as
[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 struct obdfs_pgrq {
18         struct list_head         rq_plist;      /* linked list of req's */
19         unsigned long            rq_jiffies;
20         struct page             *rq_page;       /* page to be written */
21 };
22
23 struct list_head obdfs_super_list;       /* list of all OBDFS superblocks */
24
25 struct obdfs_sb_info {
26         struct list_head         osi_list;      /* list of supers */
27         struct obd_conn          osi_conn;
28         struct super_block      *osi_super;
29         struct obd_device       *osi_obd;
30         struct obd_ops          *osi_ops;
31         ino_t                    osi_rootino;   /* number of root inode */
32         int                      osi_minor;     /* minor of /dev/obdX */
33         struct list_head         osi_inodes;    /* list of dirty inodes */
34         unsigned long            osi_cache_count;
35         struct semaphore         osi_list_mutex;
36 };
37
38 struct obdfs_inode_info {
39         int              oi_flags;
40         struct list_head oi_inodes;
41         struct list_head oi_pages;
42         char             oi_inline[OBD_INLINESZ];
43 };
44
45 /* dir.c */
46 int obdfs_check_dir_entry (const char * function, struct inode * dir,
47                           struct ext2_dir_entry_2 * de, struct page * page,
48                           unsigned long offset);
49 extern struct file_operations obdfs_dir_operations;
50 extern struct inode_operations obdfs_dir_inode_operations;
51
52 /* file.c */
53 extern struct file_operations obdfs_file_operations;
54 extern struct inode_operations obdfs_file_inode_operations;
55
56 /* flush.c */
57 void obdfs_dequeue_pages(struct inode *inode);
58 int obdfs_flushd_init(void);
59 int obdfs_flushd_cleanup(void);
60 int obdfs_flush_reqs(struct list_head *inode_list, unsigned long check_time);
61 int obdfs_flush_dirty_pages(unsigned long check_time);
62
63 /* namei.c */
64 struct dentry *obdfs_lookup(struct inode * dir, struct dentry *dentry);
65 int obdfs_create (struct inode * dir, struct dentry * dentry, int mode);
66 int obdfs_mkdir(struct inode *dir, struct dentry *dentry, int mode);
67 int obdfs_rmdir(struct inode *dir, struct dentry *dentry);
68 int obdfs_unlink(struct inode *dir, struct dentry *dentry);
69 int obdfs_mknod(struct inode *dir, struct dentry *dentry, int mode, int rdev);
70 int obdfs_symlink(struct inode *dir, struct dentry *dentry,
71                   const char *symname);
72 int obdfs_link(struct dentry *old_dentry, struct inode *dir,
73                struct dentry *dentry);
74 int obdfs_rename(struct inode *old_dir, struct dentry *old_dentry,
75                  struct inode *new_dir, struct dentry *new_dentry);
76
77 /* rw.c */
78 int obdfs_do_writepage(struct inode *, struct page *, int sync);
79 int obdfs_init_pgrqcache(void);
80 void obdfs_cleanup_pgrqcache(void);
81 inline void obdfs_pgrq_del(struct obdfs_pgrq *pgrq);
82 int obdfs_readpage(struct dentry *dentry, struct page *page);
83 int obdfs_writepage(struct dentry *dentry, struct page *page);
84 struct page *obdfs_getpage(struct inode *inode, unsigned long offset,
85                            int create, int locked);
86 int obdfs_write_one_page(struct file *file, struct page *page,
87                          unsigned long offset, unsigned long bytes,
88                          const char * buf);
89 int obdfs_do_vec_wr(struct inode **inodes, obd_count num_io, obd_count num_oa,
90                     struct obdo **obdos, obd_count *oa_bufs,
91                     struct page **pages, char **bufs, obd_size *counts,
92                     obd_off *offsets, obd_flag *flags);
93 void obdfs_truncate(struct inode *inode);
94
95 /* super.c */
96 extern long obdfs_cache_count;
97
98 /* symlink.c */
99 extern struct inode_operations obdfs_fast_symlink_inode_operations;
100 extern struct inode_operations obdfs_symlink_inode_operations;
101
102 /* sysctl.c */
103 void obdfs_sysctl_init(void);
104 void obdfs_sysctl_clean(void);
105
106
107 static inline struct obdfs_inode_info *obdfs_i2info(struct inode *inode)
108 {
109         return (struct obdfs_inode_info *)&(inode->u.generic_ip);
110 }
111
112 static inline struct obdfs_sb_info *obdfs_i2sbi(struct inode *inode)
113 {
114         return (struct obdfs_sb_info *) &(inode->i_sb->u.generic_sbp);
115 }
116
117 static inline struct list_head *obdfs_iplist(struct inode *inode) 
118 {
119         struct obdfs_inode_info *info = obdfs_i2info(inode);
120
121         return &info->oi_pages;
122 }
123
124 static inline struct list_head *obdfs_islist(struct inode *inode) 
125 {
126         struct obdfs_inode_info *info = obdfs_i2info(inode);
127
128         return &info->oi_inodes;
129 }
130
131 static inline struct list_head *obdfs_slist(struct inode *inode) 
132 {
133         struct obdfs_sb_info *sbi = obdfs_i2sbi(inode);
134
135         return &sbi->osi_inodes;
136 }
137
138 #define obd_down(mutex) {\
139         /* CDEBUG(D_INFO, "get lock\n"); */ \
140         down(mutex);\
141 }
142
143 #define obd_up(mutex) {\
144         up(mutex);\
145         /* CDEBUG(D_INFO, "free lock\n"); */ \
146 }
147
148 /* We track if a page has been added to the OBD page cache by stting a
149  * flag on the page.  We have chosen a bit that will hopefully not be
150  * used for a while.
151  */
152 #define PG_obdcache 29
153 #define OBDAddCachePage(page)   test_and_set_bit(PG_obdcache, &(page)->flags)
154 #define OBDClearCachePage(page) clear_bit(PG_obdcache, &(page)->flags)
155
156 static inline void obdfs_print_plist(struct inode *inode) 
157 {
158         struct list_head *page_list = obdfs_iplist(inode);
159         struct list_head *tmp;
160
161         CDEBUG(D_INFO, "inode %ld: page", inode->i_ino);
162         /* obd_down(&obdfs_i2sbi(inode)->osi_list_mutex); */
163         if (list_empty(page_list)) {
164                 CDEBUG(D_INFO, " list empty\n");
165                 obd_up(&obdfs_i2sbi(inode)->osi_list_mutex);
166                 return;
167         }
168
169         tmp = page_list;
170         while ( (tmp = tmp->next) != page_list) {
171                 struct obdfs_pgrq *pgrq;
172                 pgrq = list_entry(tmp, struct obdfs_pgrq, rq_plist);
173                 CDEBUG(D_INFO, " %p", pgrq->rq_page);
174         }
175         CDEBUG(D_INFO, "\n");
176         /* obd_up(&obdfs_i2sbi(inode)->osi_list_mutex); */
177 }
178
179 static inline int obdfs_has_inline(struct inode *inode)
180 {
181         return (obdfs_i2info(inode)->oi_flags & OBD_FL_INLINEDATA);
182 }
183
184 static void inline obdfs_from_inode(struct obdo *oa, struct inode *inode)
185 {
186         struct obdfs_inode_info *oinfo = obdfs_i2info(inode);
187
188         CDEBUG(D_INFO, "src inode %ld, dst obdo %ld valid 0x%08x\n",
189                inode->i_ino, (long)oa->o_id, oa->o_valid);
190         obdo_from_inode(oa, inode);
191         if (obdfs_has_inline(inode)) {
192                 CDEBUG(D_INFO, "copying inline data from inode to obdo\n");
193                 memcpy(oa->o_inline, oinfo->oi_inline, OBD_INLINESZ);
194                 oa->o_obdflags |= OBD_FL_INLINEDATA;
195                 oa->o_valid |= OBD_MD_FLINLINE;
196         }
197 } /* obdfs_from_inode */
198
199 static void inline obdfs_to_inode(struct inode *inode, struct obdo *oa)
200 {
201         struct obdfs_inode_info *oinfo = obdfs_i2info(inode);
202
203         CDEBUG(D_INFO, "src obdo %ld valid 0x%08x, dst inode %ld\n",
204                (long)oa->o_id, oa->o_valid, inode->i_ino);
205         /* If the inode is dirty, we won't overwrite the data there, as it
206          * is newer than the data on the disk.  The ext2obd side only will
207          * change the block count, so we are guaranteed that is safe.
208          */
209         if (inode->i_state & I_DIRTY) {
210                 CDEBUG(D_INODE, "dirty inode %ld, only copying blocks\n",
211                        inode->i_ino);
212                 oa->o_valid = OBD_MD_FLBLOCKS;
213         }
214
215         obdo_to_inode(inode, oa);
216
217         if (obdo_has_inline(oa)) {
218                 CDEBUG(D_INFO, "copying inline data from obdo to inode\n");
219                 memcpy(oinfo->oi_inline, oa->o_inline, OBD_INLINESZ);
220                 oinfo->oi_flags |= OBD_FL_INLINEDATA;
221         }
222 } /* obdfs_to_inode */
223
224 #define NOLOCK 0
225 #define LOCKED 1
226
227 #ifdef OPS
228 #warning "*** WARNING redefining OPS"
229 #else
230 #define OPS(sb,op) ((struct obdfs_sb_info *)(& ## sb ## ->u.generic_sbp))->osi_ops->o_ ## op
231 #define IOPS(inode,op) ((struct obdfs_sb_info *)(& ## inode->i_sb ## ->u.generic_sbp))->osi_ops->o_ ## op
232 #endif
233
234 #ifdef ID
235 #warning "*** WARNING redefining ID"
236 #else
237 #define ID(sb) (&((struct obdfs_sb_info *)( & ## sb ## ->u.generic_sbp))->osi_conn)
238 #define IID(inode) (&((struct obdfs_sb_info *)( & ## inode->i_sb ## ->u.generic_sbp))->osi_conn)
239 #endif
240
241 #define OBDFS_SUPER_MAGIC 0x4711
242
243 #endif
244