Whamcloud - gitweb
b=1557/2316
[fs/lustre-release.git] / lustre / llite / llite_internal.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * Copyright (C) 2003 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 #ifndef LLITE_INTERNAL_H
11 #define LLITE_INTERNAL_H
12
13 struct ll_sb_info {
14         struct obd_uuid           ll_sb_uuid;
15 //        struct lustre_handle      ll_mdc_conn;
16         struct obd_export        *ll_mdc_exp;
17         struct obd_export        *ll_osc_exp;
18         struct proc_dir_entry*    ll_proc_root;
19         obd_id                    ll_rootino; /* number of root inode */
20
21         struct obd_uuid           ll_mds_uuid;
22         struct obd_uuid           ll_mds_peer_uuid;
23         struct lustre_mount_data *ll_lmd;
24         char                     *ll_instance; 
25
26         int                       ll_flags;
27         wait_queue_head_t         ll_commitcbd_waitq;
28         wait_queue_head_t         ll_commitcbd_ctl_waitq;
29         int                       ll_commitcbd_flags;
30         struct task_struct       *ll_commitcbd_thread;
31         time_t                    ll_commitcbd_waketime;
32         time_t                    ll_commitcbd_timeout;
33         spinlock_t                ll_commitcbd_lock;
34         struct list_head          ll_conn_chain; /* per-conn chain of SBs */
35
36         struct hlist_head         ll_orphan_dentry_list; /*please don't ask -p*/
37         struct ll_close_queue    *ll_lcq;
38
39         struct lprocfs_stats     *ll_stats; /* lprocfs stats counter */
40 };
41
42 struct lustre_handle;
43 struct lov_stripe_md;
44
45 extern spinlock_t inode_lock;
46
47 extern void lprocfs_unregister_mountpoint(struct ll_sb_info *sbi);
48 extern struct proc_dir_entry *proc_lustre_fs_root;
49
50 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
51 # define hlist_del_init list_del_init
52 #endif 
53
54 static inline struct inode *ll_info2i(struct ll_inode_info *lli)
55 {
56 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
57         return &lli->lli_vfs_inode;
58 #else
59         return list_entry(lli, struct inode, u.generic_ip);
60 #endif
61 }
62
63 static inline void ll_i2uctxt(struct ll_uctxt *ctxt, struct inode *i1,
64                               struct inode *i2)
65 {
66         LASSERT(i1);
67         LASSERT(ctxt);
68
69         if (in_group_p(i1->i_gid))
70                 ctxt->gid1 = i1->i_gid;
71         else
72                 ctxt->gid1 = -1;
73
74         if (i2) {
75                 if (in_group_p(i2->i_gid))
76                         ctxt->gid2 = i2->i_gid;
77                 else
78                         ctxt->gid2 = -1;
79         } else 
80                 ctxt->gid2 = 0;
81 }
82
83 struct it_cb_data {
84         struct inode *icbd_parent;
85         struct dentry **icbd_childp;
86         obd_id hash;
87 };
88
89 #define LLAP_MAGIC 98764321
90
91 struct ll_async_page {
92         int             llap_magic;
93         void            *llap_cookie;
94         int             llap_queued;
95         struct page     *llap_page;
96         struct list_head llap_pending_write;
97 };
98
99 #define LL_CDEBUG_PAGE(page, STR)                                       \
100         CDEBUG(D_PAGE, "page %p map %p ind %lu priv %0lx: " STR,        \
101                page, page->mapping, page->index, page->private)
102
103 /* llite/lproc_llite.c */
104 int lprocfs_register_mountpoint(struct proc_dir_entry *parent,
105                                 struct super_block *sb, char *osc, char *mdc);
106 void lprocfs_unregister_mountpoint(struct ll_sb_info *sbi);
107
108 /* llite/dir.c */
109 extern struct file_operations ll_dir_operations;
110 extern struct inode_operations ll_dir_inode_operations;
111
112 /* llite/namei.c */
113 int ll_objects_destroy(struct ptlrpc_request *request, struct inode *dir);
114 struct inode *ll_iget(struct super_block *sb, ino_t hash,
115                       struct lustre_md *lic);
116 struct dentry *ll_find_alias(struct inode *, struct dentry *);
117 int ll_mdc_cancel_unused(struct lustre_handle *, struct inode *, int flags,
118                          void *opaque);
119 int ll_mdc_blocking_ast(struct ldlm_lock *, struct ldlm_lock_desc *,
120                         void *data, int flag);
121 void ll_prepare_mdc_op_data(struct mdc_op_data *,
122                             struct inode *i1, struct inode *i2,
123                             const char *name, int namelen, int mode);
124
125 /* llite/rw.c */
126 int ll_prepare_write(struct file *, struct page *, unsigned from, unsigned to);
127 int ll_commit_write(struct file *, struct page *, unsigned from, unsigned to);
128 void ll_inode_fill_obdo(struct inode *inode, int cmd, struct obdo *oa);
129 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
130 #define ll_ap_completion ll_ap_completion_24
131 void ll_ap_completion_24(void *data, int cmd, int rc);
132 #else 
133 #define ll_ap_completion ll_ap_completion_26
134 void ll_ap_completion_26(void *data, int cmd, int rc);
135 #endif
136 int ll_ocp_update_obdo(struct obd_client_page *ocp, int cmd, struct obdo *oa);
137 int ll_ocp_set_io_ready(struct obd_client_page *ocp, int cmd);
138 int ll_ocp_update_io_args(struct obd_client_page *ocp, int cmd);
139 void ll_removepage(struct page *page);
140 int ll_readpage(struct file *file, struct page *page);
141 struct ll_async_page *llap_from_cookie(void *cookie);
142 struct ll_async_page *llap_from_page(struct page *page);
143
144 void ll_truncate(struct inode *inode);
145
146 /* llite/file.c */
147 extern struct file_operations ll_file_operations;
148 extern struct inode_operations ll_file_inode_operations;
149 extern struct inode_operations ll_special_inode_operations;
150 extern int ll_inode_revalidate_it(struct dentry *, struct lookup_intent *);
151 int ll_extent_lock(struct ll_file_data *, struct inode *,
152                    struct lov_stripe_md *, int mode, struct ldlm_extent *,
153                    struct lustre_handle *);
154 int ll_extent_unlock(struct ll_file_data *, struct inode *,
155                      struct lov_stripe_md *, int mode, struct lustre_handle *);
156 int ll_file_open(struct inode *inode, struct file *file);
157 int ll_file_release(struct inode *inode, struct file *file);
158 int ll_lsm_getattr(struct obd_export *, struct lov_stripe_md *, struct obdo *);
159 int ll_extent_lock_no_validate(struct ll_file_data *, struct inode *,
160                                struct lov_stripe_md *, int mode,
161                                struct ldlm_extent *, struct lustre_handle *,
162                                int ast_flags);
163 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0))
164 int ll_getattr(struct vfsmount *mnt, struct dentry *de,
165                struct lookup_intent *it, struct kstat *stat);
166 #endif
167
168 /* llite/dcache.c */
169 void ll_intent_drop_lock(struct lookup_intent *);
170 void ll_intent_release(struct lookup_intent *);
171 extern void ll_set_dd(struct dentry *de);
172 void ll_unhash_aliases(struct inode *);
173 void ll_frob_intent(struct lookup_intent **itp, struct lookup_intent *deft);
174 void ll_lookup_finish_locks(struct lookup_intent *it, struct dentry *dentry);
175
176 /* llite/llite_lib.c */
177
178 extern struct super_operations ll_super_operations;
179 extern struct super_operations lustre_super_operations;
180
181 char *ll_read_opt(const char *opt, char *data);
182 int ll_set_opt(const char *opt, char *data, int fl);
183 void ll_options(char *options, char **ost, char **mds, int *flags);
184 void ll_lli_init(struct ll_inode_info *lli);
185 int ll_fill_super(struct super_block *sb, void *data, int silent);
186 int lustre_fill_super(struct super_block *sb, void *data, int silent);
187 void lustre_put_super(struct super_block *sb);
188 void ll_put_super(struct super_block *sb);
189 struct inode *ll_inode_from_lock(struct ldlm_lock *lock);
190 void ll_clear_inode(struct inode *inode);
191 int ll_attr2inode(struct inode *inode, struct iattr *attr, int trunc);
192 int ll_setattr_raw(struct inode *inode, struct iattr *attr);
193 int ll_setattr(struct dentry *de, struct iattr *attr);
194 int ll_statfs(struct super_block *sb, struct kstatfs *sfs);
195 int ll_statfs_internal(struct super_block *sb, struct obd_statfs *osfs,
196                        unsigned long maxage);
197 void ll_update_inode(struct inode *inode, struct mds_body *body,
198                      struct lov_stripe_md *lsm);
199 int it_disposition(struct lookup_intent *it, int flag);
200 void it_set_disposition(struct lookup_intent *it, int flag);
201 void ll_read_inode2(struct inode *inode, void *opaque);
202 int ll_iocontrol(struct inode *inode, struct file *file,
203                  unsigned int cmd, unsigned long arg);
204 void ll_umount_begin(struct super_block *sb);
205 int ll_prep_inode(struct obd_export *exp, struct inode **inode, 
206                   struct ptlrpc_request *req, int offset, struct super_block *);
207 __u32 get_uuid2int(const char *name, int len);
208 struct dentry *ll_fh_to_dentry(struct super_block *sb, __u32 *data, int len,
209                                int fhtype, int parent);
210 int ll_dentry_to_fh(struct dentry *, __u32 *datap, int *lenp, int need_parent);
211 /* llite/symlink.c */
212 extern struct inode_operations ll_fast_symlink_inode_operations;
213
214 /* llite/llite_close.c */
215 struct ll_close_queue {
216         spinlock_t              lcq_lock;
217         struct list_head        lcq_list;
218         wait_queue_head_t       lcq_waitq;
219         struct completion       lcq_comp;
220 };
221
222 void llap_write_pending(struct inode *inode, struct ll_async_page *llap);
223 void llap_write_complete(struct inode *inode, struct ll_async_page *llap);
224 void ll_open_complete(struct inode *inode);
225 int ll_is_inode_dirty(struct inode *inode);
226 void ll_try_done_writing(struct inode *inode);
227 void ll_queue_done_writing(struct inode *inode);
228 void ll_close_thread_shutdown(struct ll_close_queue *lcq);
229 int ll_close_thread_start(struct ll_close_queue **lcq_ret);
230
231 /* generic */
232 #define LL_SUPER_MAGIC 0x0BD00BD0
233
234 #define LL_SBI_NOLCK            0x1
235 #define LL_SBI_READAHEAD        0x2
236
237 #if  (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
238 #define    ll_s2sbi(sb)     ((struct ll_sb_info *)((sb)->s_fs_info))
239 void __d_rehash(struct dentry * entry, int lock);
240 static inline __u64 ll_ts2u64(struct timespec *time)
241 {
242         __u64 t = time->tv_sec;
243         return t;
244 }
245 #else  /* 2.4 here */
246 #define    ll_s2sbi(sb)     ((struct ll_sb_info *)((sb)->u.generic_sbp))
247 static inline __u64 ll_ts2u64(time_t *time)
248 {
249         return *time;
250 }
251 #endif 
252
253 /* don't need an addref as the sb_info should be holding one */
254 static inline struct obd_export *ll_s2obdexp(struct super_block *sb)
255 {
256         return ll_s2sbi(sb)->ll_osc_exp;
257 }
258
259 /* don't need an addref as the sb_info should be holding one */
260 static inline struct obd_export *ll_s2mdcexp(struct super_block *sb)
261 {
262         return ll_s2sbi(sb)->ll_mdc_exp;
263 }
264
265 static inline struct client_obd *sbi2mdc(struct ll_sb_info *sbi)
266 {
267         struct obd_device *obd = sbi->ll_mdc_exp->exp_obd;
268         if (obd == NULL)
269                 LBUG();
270         return &obd->u.cli;
271 }
272
273 // FIXME: replace the name of this with LL_SB to conform to kernel stuff
274 static inline struct ll_sb_info *ll_i2sbi(struct inode *inode)
275 {
276         return ll_s2sbi(inode->i_sb);
277 }
278
279 static inline struct obd_export *ll_i2obdexp(struct inode *inode)
280 {
281         return ll_s2obdexp(inode->i_sb);
282 }
283
284 static inline struct obd_export *ll_i2mdcexp(struct inode *inode)
285 {
286         return ll_s2mdcexp(inode->i_sb);
287 }
288
289 static inline void ll_inode2fid(struct ll_fid *fid, struct inode *inode)
290 {
291         mdc_pack_fid(fid, inode->i_ino, inode->i_generation,
292                      inode->i_mode & S_IFMT);
293 }
294
295 static inline int ll_mds_max_easize(struct super_block *sb)
296 {
297         return sbi2mdc(ll_s2sbi(sb))->cl_max_mds_easize;
298 }
299
300 static inline __u64 ll_file_maxbytes(struct inode *inode)
301 {
302         return ll_i2info(inode)->lli_maxbytes;
303 }
304
305 #endif /* LLITE_INTERNAL_H */