Whamcloud - gitweb
smash the HEAD with the contents of b_cmd. HEAD_PRE_CMD_SMASH and
[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         spinlock_t                ll_pglist_lock;
42         unsigned long             ll_pglist_gen;
43         struct list_head          ll_pglist;
44 };
45
46 struct ll_readahead_state {
47         spinlock_t      ras_lock;
48         unsigned long   ras_last, ras_window, ras_next_index;
49 };
50
51 extern kmem_cache_t *ll_file_data_slab;
52 struct lustre_handle;
53 struct ll_file_data {
54         struct obd_client_handle fd_mds_och;
55         struct ll_readahead_state fd_ras;
56         __u32 fd_flags;
57         struct lustre_handle fd_cwlockh;
58         unsigned long fd_gid;
59 };
60
61 struct lov_stripe_md;
62
63 extern spinlock_t inode_lock;
64
65 extern void lprocfs_unregister_mountpoint(struct ll_sb_info *sbi);
66 extern struct proc_dir_entry *proc_lustre_fs_root;
67
68 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
69 # define hlist_del_init list_del_init
70 #endif
71
72 static inline struct inode *ll_info2i(struct ll_inode_info *lli)
73 {
74 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
75         return &lli->lli_vfs_inode;
76 #else
77         return list_entry(lli, struct inode, u.generic_ip);
78 #endif
79 }
80
81 static inline void ll_i2uctxt(struct ll_uctxt *ctxt, struct inode *i1,
82                               struct inode *i2)
83 {
84         LASSERT(i1);
85         LASSERT(ctxt);
86
87         if (in_group_p(i1->i_gid))
88                 ctxt->gid1 = i1->i_gid;
89         else
90                 ctxt->gid1 = -1;
91
92         if (i2) {
93                 if (in_group_p(i2->i_gid))
94                         ctxt->gid2 = i2->i_gid;
95                 else
96                         ctxt->gid2 = -1;
97         } else
98                 ctxt->gid2 = 0;
99 }
100
101 struct it_cb_data {
102         struct inode *icbd_parent;
103         struct dentry **icbd_childp;
104         obd_id hash;
105 };
106
107 #define LLAP_MAGIC 98764321
108
109 struct ll_async_page {
110         int             llap_magic;
111         void            *llap_cookie;
112         struct page     *llap_page;
113         struct list_head llap_pending_write;
114          /* only trust these if the page lock is providing exclusion */
115         int              llap_write_queued:1,
116                          llap_defer_uptodate:1;
117         struct list_head llap_proc_item;
118 };
119
120 #define LL_CDEBUG_PAGE(mask, page, fmt, arg...)                         \
121         CDEBUG(mask, "page %p map %p ind %lu priv %0lx: " fmt,          \
122                page, page->mapping, page->index, page->private, ## arg)
123
124 /* llite/lproc_llite.c */
125 int lprocfs_register_mountpoint(struct proc_dir_entry *parent,
126                                 struct super_block *sb, char *osc, char *mdc);
127 void lprocfs_unregister_mountpoint(struct ll_sb_info *sbi);
128
129 /* llite/dir.c */
130 extern struct file_operations ll_dir_operations;
131 extern struct inode_operations ll_dir_inode_operations;
132
133 /* llite/namei.c */
134 int ll_objects_destroy(struct ptlrpc_request *request, struct inode *dir);
135 struct inode *ll_iget(struct super_block *sb, ino_t hash,
136                       struct lustre_md *lic);
137 struct dentry *ll_find_alias(struct inode *, struct dentry *);
138 int ll_mdc_cancel_unused(struct lustre_handle *, struct inode *, int flags,
139                          void *opaque);
140 int ll_mdc_blocking_ast(struct ldlm_lock *, struct ldlm_lock_desc *,
141                         void *data, int flag);
142 void ll_prepare_mdc_op_data(struct mdc_op_data *,
143                             struct inode *i1, struct inode *i2,
144                             const char *name, int namelen, int mode);
145
146 /* llite/rw.c */
147 int ll_prepare_write(struct file *, struct page *, unsigned from, unsigned to);
148 int ll_commit_write(struct file *, struct page *, unsigned from, unsigned to);
149 void ll_inode_fill_obdo(struct inode *inode, int cmd, struct obdo *oa);
150 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
151 #define ll_ap_completion ll_ap_completion_24
152 void ll_ap_completion_24(void *data, int cmd, int rc);
153 #else
154 #define ll_ap_completion ll_ap_completion_26
155 void ll_ap_completion_26(void *data, int cmd, int rc);
156 #endif
157 void ll_removepage(struct page *page);
158 int ll_sync_page(struct page *page);
159 int ll_readpage(struct file *file, struct page *page);
160 struct ll_async_page *llap_from_cookie(void *cookie);
161 struct ll_async_page *llap_from_page(struct page *page);
162 void ll_readahead_init(struct inode *inode, struct ll_readahead_state *ras);
163
164 void ll_truncate(struct inode *inode);
165
166 /* llite/file.c */
167 extern struct file_operations ll_file_operations;
168 extern struct inode_operations ll_file_inode_operations;
169 extern struct inode_operations ll_special_inode_operations;
170 extern int ll_inode_revalidate_it(struct dentry *, struct lookup_intent *);
171 int ll_extent_lock(struct ll_file_data *, struct inode *,
172                    struct lov_stripe_md *, int mode, ldlm_policy_data_t *,
173                    struct lustre_handle *, int ast_flags);
174 int ll_extent_unlock(struct ll_file_data *, struct inode *,
175                      struct lov_stripe_md *, int mode, struct lustre_handle *);
176 int ll_file_open(struct inode *inode, struct file *file);
177 int ll_file_release(struct inode *inode, struct file *file);
178 int ll_lsm_getattr(struct obd_export *, struct lov_stripe_md *, struct obdo *);
179 int ll_glimpse_size(struct inode *inode, struct ost_lvb *lvb);
180 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0))
181 int ll_getattr(struct vfsmount *mnt, struct dentry *de,
182                struct lookup_intent *it, struct kstat *stat);
183 #endif
184
185 /* llite/dcache.c */
186 void ll_intent_drop_lock(struct lookup_intent *);
187 void ll_intent_release(struct lookup_intent *);
188 extern void ll_set_dd(struct dentry *de);
189 void ll_unhash_aliases(struct inode *);
190 void ll_frob_intent(struct lookup_intent **itp, struct lookup_intent *deft);
191 void ll_lookup_finish_locks(struct lookup_intent *it, struct dentry *dentry);
192
193 /* llite/llite_lib.c */
194
195 extern struct super_operations ll_super_operations;
196 extern struct super_operations lustre_super_operations;
197
198 char *ll_read_opt(const char *opt, char *data);
199 int ll_set_opt(const char *opt, char *data, int fl);
200 void ll_options(char *options, char **ost, char **mds, int *flags);
201 void ll_lli_init(struct ll_inode_info *lli);
202 int ll_fill_super(struct super_block *sb, void *data, int silent);
203 int lustre_fill_super(struct super_block *sb, void *data, int silent);
204 void lustre_put_super(struct super_block *sb);
205 void ll_put_super(struct super_block *sb);
206 struct inode *ll_inode_from_lock(struct ldlm_lock *lock);
207 void ll_clear_inode(struct inode *inode);
208 int ll_attr2inode(struct inode *inode, struct iattr *attr, int trunc);
209 int ll_setattr_raw(struct inode *inode, struct iattr *attr);
210 int ll_setattr(struct dentry *de, struct iattr *attr);
211 int ll_statfs(struct super_block *sb, struct kstatfs *sfs);
212 int ll_statfs_internal(struct super_block *sb, struct obd_statfs *osfs,
213                        unsigned long maxage);
214 void ll_update_inode(struct inode *inode, struct lustre_md *);
215 int it_disposition(struct lookup_intent *it, int flag);
216 void it_set_disposition(struct lookup_intent *it, int flag);
217 void ll_read_inode2(struct inode *inode, void *opaque);
218 int ll_iocontrol(struct inode *inode, struct file *file,
219                  unsigned int cmd, unsigned long arg);
220 void ll_umount_begin(struct super_block *sb);
221 int ll_prep_inode(struct obd_export *, struct obd_export *, struct inode **inode,
222                   struct ptlrpc_request *req, int offset, struct super_block *);
223 __u32 get_uuid2int(const char *name, int len);
224 struct dentry *ll_fh_to_dentry(struct super_block *sb, __u32 *data, int len,
225                                int fhtype, int parent);
226 int ll_dentry_to_fh(struct dentry *, __u32 *datap, int *lenp, int need_parent);
227 int null_if_equal(struct ldlm_lock *lock, void *data);
228
229 /* llite/symlink.c */
230 extern struct inode_operations ll_fast_symlink_inode_operations;
231
232 /* llite/llite_close.c */
233 struct ll_close_queue {
234         spinlock_t              lcq_lock;
235         struct list_head        lcq_list;
236         wait_queue_head_t       lcq_waitq;
237         struct completion       lcq_comp;
238 };
239
240 void llap_write_pending(struct inode *inode, struct ll_async_page *llap);
241 void llap_write_complete(struct inode *inode, struct ll_async_page *llap);
242 void ll_open_complete(struct inode *inode);
243 int ll_is_inode_dirty(struct inode *inode);
244 void ll_try_done_writing(struct inode *inode);
245 void ll_queue_done_writing(struct inode *inode);
246 void ll_close_thread_shutdown(struct ll_close_queue *lcq);
247 int ll_close_thread_start(struct ll_close_queue **lcq_ret);
248
249 /* generic */
250 #define LL_SUPER_MAGIC 0x0BD00BD0
251
252 #define LL_SBI_NOLCK            0x1
253 #define LL_SBI_READAHEAD        0x2
254
255 #define LL_MAX_BLKSIZE          (4UL * 1024 * 1024)
256
257 #if  (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
258 #define    ll_s2sbi(sb)     ((struct ll_sb_info *)((sb)->s_fs_info))
259 void __d_rehash(struct dentry * entry, int lock);
260 static inline __u64 ll_ts2u64(struct timespec *time)
261 {
262         __u64 t = time->tv_sec;
263         return t;
264 }
265 #else  /* 2.4 here */
266 #define    ll_s2sbi(sb)     ((struct ll_sb_info *)((sb)->u.generic_sbp))
267 static inline __u64 ll_ts2u64(time_t *time)
268 {
269         return *time;
270 }
271 #endif
272
273 /* don't need an addref as the sb_info should be holding one */
274 static inline struct obd_export *ll_s2obdexp(struct super_block *sb)
275 {
276         return ll_s2sbi(sb)->ll_osc_exp;
277 }
278
279 /* don't need an addref as the sb_info should be holding one */
280 static inline struct obd_export *ll_s2mdcexp(struct super_block *sb)
281 {
282         return ll_s2sbi(sb)->ll_mdc_exp;
283 }
284
285 static inline struct client_obd *sbi2mdc(struct ll_sb_info *sbi)
286 {
287         struct obd_device *obd = sbi->ll_mdc_exp->exp_obd;
288         if (obd == NULL)
289                 LBUG();
290         return &obd->u.cli;
291 }
292
293 // FIXME: replace the name of this with LL_SB to conform to kernel stuff
294 static inline struct ll_sb_info *ll_i2sbi(struct inode *inode)
295 {
296         return ll_s2sbi(inode->i_sb);
297 }
298
299 static inline struct obd_export *ll_i2obdexp(struct inode *inode)
300 {
301         return ll_s2obdexp(inode->i_sb);
302 }
303
304 static inline struct obd_export *ll_i2mdcexp(struct inode *inode)
305 {
306         return ll_s2mdcexp(inode->i_sb);
307 }
308
309 static inline void ll_inode2fid(struct ll_fid *fid, struct inode *inode)
310 {
311         mdc_pack_fid(fid, inode->i_ino, inode->i_generation,
312                      inode->i_mode & S_IFMT);
313         LASSERT(ll_i2info(inode));
314         fid->mds = ll_i2info(inode)->lli_mds;
315 }
316
317 static inline int ll_mds_max_easize(struct super_block *sb)
318 {
319         return sbi2mdc(ll_s2sbi(sb))->cl_max_mds_easize;
320 }
321
322 static inline __u64 ll_file_maxbytes(struct inode *inode)
323 {
324         return ll_i2info(inode)->lli_maxbytes;
325 }
326
327 #endif /* LLITE_INTERNAL_H */