Whamcloud - gitweb
Add assertion to LL_GET_INTENT(), because we aren't very non-intent friendly
[fs/lustre-release.git] / lustre / include / linux / lustre_lite.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * lustre lite cluster file system
5  *
6  * This code is issued under the GNU General Public License.
7  * See the file COPYING in this distribution
8  *
9  * Copyright (C) 2002 Cluster File Systems, Inc. <info@clusterfs.com>
10  */
11
12
13
14 #ifndef _LL_H
15 #define _LL_H
16
17 #ifdef __KERNEL__
18
19 #include <linux/fs.h>
20 #include <linux/ext2_fs.h>
21 #include <linux/proc_fs.h>
22
23 #include <linux/obd_class.h>
24 #include <linux/lustre_net.h>
25 #include <linux/lustre_mds.h>
26 #include <linux/lustre_ha.h>
27
28 extern kmem_cache_t *ll_file_data_slab;
29 struct ll_file_data {
30         struct lustre_handle fd_mdshandle;
31         struct lustre_handle fd_osthandle;
32         struct ptlrpc_request *fd_req;
33         __u32 fd_flags;
34 };
35
36 struct lustre_intent_data { 
37         __u64 it_lock_handle[2];
38         __u32 it_disposition;
39         __u32 it_status;
40         __u32 it_lock_mode;
41 };
42
43 struct ll_dentry_data {
44         struct semaphore      lld_it_sem;
45 };
46
47 #define ll_d2d(dentry) ((struct ll_dentry_data*) dentry->d_fsdata)
48
49 struct ll_read_inode2_cookie {
50         struct mds_body *lic_body;
51         struct lov_mds_md *lic_lmm;
52 };
53
54 #define LL_INLINESZ      60
55 struct ll_inode_info {
56         struct lov_stripe_md *lli_smd;
57         char                 *lli_symlink_name;
58         struct lustre_handle  lli_intent_lock_handle;
59         struct semaphore      lli_open_sem;
60         atomic_t              lli_open_count; /* see ll_file_release */
61 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
62         struct inode          lli_vfs_inode;
63 #endif
64 };
65
66
67
68 #define LL_SUPER_MAGIC 0x0BD00BD0
69
70 #define LL_COMMITCBD_STOPPING  0x1
71 #define LL_COMMITCBD_STOPPED   0x2
72 #define LL_COMMITCBD_RUNNING   0x4
73
74 #define LL_SBI_NOLCK   0x1
75
76 struct ll_sb_info {
77         obd_uuid_t                ll_sb_uuid;
78         struct lustre_handle      ll_mdc_conn;
79         struct lustre_handle      ll_osc_conn;
80         struct proc_dir_entry*    ll_mnt_root;
81         obd_id                    ll_rootino; /* number of root inode */
82
83         int                       ll_flags;
84         wait_queue_head_t         ll_commitcbd_waitq;
85         wait_queue_head_t         ll_commitcbd_ctl_waitq;
86         int                       ll_commitcbd_flags;
87         struct task_struct       *ll_commitcbd_thread;
88         time_t                    ll_commitcbd_waketime;
89         time_t                    ll_commitcbd_timeout;
90         spinlock_t                ll_commitcbd_lock;
91         struct list_head          ll_conn_chain; /* per-conn chain of SBs */
92
93         struct list_head          ll_orphan_dentry_list; /*please don't ask -p*/
94 };
95
96 static inline struct ll_sb_info *ll_s2sbi(struct super_block *sb)
97 {
98 #if  (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
99         return (struct ll_sb_info *)(sb->s_fs_info);
100 #else
101         return (struct ll_sb_info *)(sb->u.generic_sbp);
102 #endif
103 }
104
105 static inline struct lustre_handle *ll_s2obdconn(struct super_block *sb)
106 {
107         return &(ll_s2sbi(sb))->ll_osc_conn;
108 }
109
110 static inline struct client_obd *sbi2mdc(struct ll_sb_info *sbi)
111 {
112         struct obd_device *obd = class_conn2obd(&sbi->ll_mdc_conn);
113         if (obd == NULL)
114                 LBUG();
115         return &obd->u.cli;
116 }
117
118 // FIXME: replace the name of this with LL_SB to conform to kernel stuff
119 static inline struct ll_sb_info *ll_i2sbi(struct inode *inode)
120 {
121         return ll_s2sbi(inode->i_sb);
122 }
123
124
125 // FIXME: replace the name of this with LL_I to conform to kernel stuff
126 // static inline struct ll_inode_info *LL_I(struct inode *inode)
127 static inline struct ll_inode_info *ll_i2info(struct inode *inode)
128 {
129 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
130         return container_of(inode, struct ll_inode_info, lli_vfs_inode);
131 #else
132         return (struct ll_inode_info *)&(inode->u.generic_ip);
133 #endif
134 }
135
136 static inline struct lustre_handle *ll_i2obdconn(struct inode *inode)
137 {
138         return ll_s2obdconn(inode->i_sb);
139 }
140
141 static inline void ll_ino2fid(struct ll_fid *fid, obd_id ino, __u32 generation,
142                               int type)
143 {
144         fid->id = ino;
145         fid->generation = generation;
146         fid->f_type = type;
147 }
148
149 static inline void ll_inode2fid(struct ll_fid *fid, struct inode *inode)
150 {
151         ll_ino2fid(fid, inode->i_ino, inode->i_generation,
152                    inode->i_mode & S_IFMT);
153 }
154
155 static inline int ll_mds_easize(struct super_block *sb)
156 {
157         return sbi2mdc(ll_s2sbi(sb))->cl_max_mds_easize;
158 }
159
160 static inline int ll_ost_easize(struct super_block *sb)
161 {
162         return sbi2mdc(ll_s2sbi(sb))->cl_max_ost_easize;
163 }
164
165 /* namei.c */
166 int ll_lock(struct inode *dir, struct dentry *dentry,
167             struct lookup_intent *it, struct lustre_handle *lockh);
168 int ll_unlock(__u32 mode, struct lustre_handle *lockh);
169
170 typedef int (*intent_finish_cb)(int flag, struct ptlrpc_request *,
171                                 struct dentry **, struct lookup_intent *,
172                                 int offset, obd_id ino);
173 int ll_intent_lock(struct inode *parent, struct dentry **,
174                    struct lookup_intent *, intent_finish_cb);
175
176 /* dcache.c */
177 void ll_intent_release(struct dentry *, struct lookup_intent *);
178 int ll_set_dd(struct dentry *de);
179
180 /****
181
182 I originally implmented these as functions, then realized a macro
183 would be more helpful for debugging, so the CDEBUG messages show
184 the current calling function.  The orignal functions are in llite/dcache.c
185
186 int ll_save_intent(struct dentry * de, struct lookup_intent * it);
187 struct lookup_intent * ll_get_intent(struct dentry * de);
188 ****/
189
190 #define IT_RELEASED_MAGIC 0xDEADCAFE
191
192 #define LL_SAVE_INTENT(de, it)                                                 \
193 do {                                                                           \
194         LASSERT(ll_d2d(de) != NULL);                                           \
195                                                                                \
196         down(&ll_d2d(de)->lld_it_sem);                                         \
197         LASSERT(de->d_it == NULL);                               \
198         de->d_it = it;                                                         \
199         CDEBUG(D_DENTRY, "D_IT DOWN dentry %p fsdata %p intent: %s sem %d\n",  \
200                de, ll_d2d(de), ldlm_it2str(de->d_it->it_op),                   \
201                atomic_read(&(ll_d2d(de)->lld_it_sem.count)));                  \
202 } while(0)
203
204 #define LL_GET_INTENT(de, it)                                                  \
205 do {                                                                           \
206         it = de->d_it;                                                         \
207                                                                                \
208         LASSERT(ll_d2d(de) != NULL);                                           \
209         LASSERT(it);                                                           \
210         LASSERT(it->it_op != IT_RELEASED_MAGIC);                               \
211                                                                                \
212         CDEBUG(D_DENTRY, "D_IT UP dentry %p fsdata %p intent: %s\n",           \
213                de, ll_d2d(de), ldlm_it2str(de->d_it->it_op));                  \
214         de->d_it = NULL;                                                       \
215         it->it_op = IT_RELEASED_MAGIC;                                         \
216         up(&ll_d2d(de)->lld_it_sem);                                           \
217 } while(0)
218
219 /* dir.c */
220 extern struct file_operations ll_dir_operations;
221 extern struct inode_operations ll_dir_inode_operations;
222
223 /* file.c */
224 extern struct file_operations ll_file_operations;
225 extern struct inode_operations ll_file_inode_operations;
226 struct ldlm_lock;
227 int ll_lock_callback(struct ldlm_lock *, struct ldlm_lock_desc *, void *data,
228                      __u32 data_len, int flag);
229 int ll_size_lock(struct inode *, struct lov_stripe_md *, obd_off start,
230                  int mode, struct lustre_handle **);
231 int ll_size_unlock(struct inode *, struct lov_stripe_md *, int mode,
232                    struct lustre_handle *);
233 int ll_file_size(struct inode *inode, struct lov_stripe_md *md);
234 int ll_create_objects(struct super_block *sb, obd_id id, uid_t uid,
235                       gid_t gid, struct lov_stripe_md **lsmp);
236
237 /* rw.c */
238 struct page *ll_getpage(struct inode *inode, unsigned long offset,
239                         int create, int locked);
240 void ll_truncate(struct inode *inode);
241
242 /* super.c */
243 void ll_update_inode(struct inode *, struct mds_body *);
244
245 /* symlink.c */
246 extern struct inode_operations ll_fast_symlink_inode_operations;
247 extern struct inode_operations ll_symlink_inode_operations;
248
249 /* sysctl.c */
250 void ll_sysctl_init(void);
251 void ll_sysctl_clean(void);
252
253 #endif /* __KERNEL__ */
254
255 #include <asm/types.h>
256
257 #define LL_IOC_GETFLAGS                 _IOR ('f', 151, long)
258 #define LL_IOC_SETFLAGS                 _IOW ('f', 152, long)
259 #define LL_IOC_CLRFLAGS                 _IOW ('f', 153, long)
260 #define LL_IOC_LOV_SETSTRIPE            _IOW ('f', 154, long)
261 #define LL_IOC_LOV_GETSTRIPE            _IOW ('f', 155, long)
262
263 struct lov_user_oinfo {
264         __u64 luo_id;   /* object ID on the target OBD */
265         __u32 luo_idx;  /* OBD stripe index in lmd_objects array */
266         __u32 luo_pad;
267 };
268
269 struct lov_user_md {
270         __u64 lum_stripe_size;
271         __u32 lum_stripe_pattern;
272         __u32 lum_stripe_offset;
273         __u32 lum_stripe_count;
274         struct lov_user_oinfo lum_luoinfo[0];
275 };
276
277 #define O_LOV_DELAY_CREATE 0100000000  /* hopefully this does not conflict */
278
279 #define LL_FILE_IGNORE_LOCK             0x00000001
280
281 #endif