1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43#ifndef LCLIENT_H
44#define LCLIENT_H
45
46blkcnt_t dirty_cnt(struct inode *inode);
47
48int cl_glimpse_size0(struct inode *inode, int agl);
49int cl_glimpse_lock(const struct lu_env *env, struct cl_io *io,
50 struct inode *inode, struct cl_object *clob, int agl);
51
52static inline int cl_glimpse_size(struct inode *inode)
53{
54 return cl_glimpse_size0(inode, 0);
55}
56
57static inline int cl_agl(struct inode *inode)
58{
59 return cl_glimpse_size0(inode, 1);
60}
61
62
63
64
65enum ccc_setattr_lock_type {
66
67 SETATTR_NOLOCK,
68
69 SETATTR_EXTENT_LOCK,
70
71 SETATTR_MATCH_LOCK
72};
73
74
75
76
77
78struct ccc_io {
79
80 struct cl_io_slice cui_cl;
81 struct cl_io_lock_link cui_link;
82
83
84
85 struct iovec *cui_iov;
86 unsigned long cui_nrsegs;
87
88
89
90 unsigned long cui_tot_nrsegs;
91
92
93
94 size_t cui_iov_olen;
95
96
97
98 size_t cui_tot_count;
99
100 union {
101 struct {
102 enum ccc_setattr_lock_type cui_local_lock;
103 } setattr;
104 } u;
105
106
107
108 int cui_glimpse;
109
110
111
112 __u32 cui_layout_gen;
113
114
115
116 struct ll_file_data *cui_fd;
117 struct kiocb *cui_iocb;
118};
119
120
121
122
123
124int cl_is_normalio(const struct lu_env *env, const struct cl_io *io);
125
126extern struct lu_context_key ccc_key;
127extern struct lu_context_key ccc_session_key;
128
129struct ccc_thread_info {
130 struct cl_lock_descr cti_descr;
131 struct cl_io cti_io;
132 struct cl_attr cti_attr;
133};
134
135static inline struct ccc_thread_info *ccc_env_info(const struct lu_env *env)
136{
137 struct ccc_thread_info *info;
138
139 info = lu_context_key_get(&env->le_ctx, &ccc_key);
140 LASSERT(info != NULL);
141 return info;
142}
143
144static inline struct cl_attr *ccc_env_thread_attr(const struct lu_env *env)
145{
146 struct cl_attr *attr = &ccc_env_info(env)->cti_attr;
147 memset(attr, 0, sizeof(*attr));
148 return attr;
149}
150
151static inline struct cl_io *ccc_env_thread_io(const struct lu_env *env)
152{
153 struct cl_io *io = &ccc_env_info(env)->cti_io;
154 memset(io, 0, sizeof(*io));
155 return io;
156}
157
158struct ccc_session {
159 struct ccc_io cs_ios;
160};
161
162static inline struct ccc_session *ccc_env_session(const struct lu_env *env)
163{
164 struct ccc_session *ses;
165
166 ses = lu_context_key_get(env->le_ses, &ccc_session_key);
167 LASSERT(ses != NULL);
168 return ses;
169}
170
171static inline struct ccc_io *ccc_env_io(const struct lu_env *env)
172{
173 return &ccc_env_session(env)->cs_ios;
174}
175
176
177
178
179struct ccc_object {
180 struct cl_object_header cob_header;
181 struct cl_object cob_cl;
182 struct inode *cob_inode;
183
184
185
186
187
188
189
190 struct list_head cob_pending_list;
191
192
193
194
195
196
197 int cob_transient_pages;
198
199
200
201
202
203 atomic_t cob_mmap_cnt;
204
205
206
207
208
209
210
211
212
213
214
215 unsigned int cob_discard_page_warned:1;
216};
217
218
219
220
221struct ccc_page {
222 struct cl_page_slice cpg_cl;
223 int cpg_defer_uptodate;
224 int cpg_ra_used;
225 int cpg_write_queued;
226
227
228
229
230
231
232
233 struct list_head cpg_pending_linkage;
234
235 struct page *cpg_page;
236};
237
238static inline struct ccc_page *cl2ccc_page(const struct cl_page_slice *slice)
239{
240 return container_of(slice, struct ccc_page, cpg_cl);
241}
242
243struct cl_page *ccc_vmpage_page_transient(struct page *vmpage);
244
245struct ccc_device {
246 struct cl_device cdv_cl;
247 struct super_block *cdv_sb;
248 struct cl_device *cdv_next;
249};
250
251struct ccc_lock {
252 struct cl_lock_slice clk_cl;
253};
254
255struct ccc_req {
256 struct cl_req_slice crq_cl;
257};
258
259void *ccc_key_init (const struct lu_context *ctx,
260 struct lu_context_key *key);
261void ccc_key_fini (const struct lu_context *ctx,
262 struct lu_context_key *key, void *data);
263void *ccc_session_key_init(const struct lu_context *ctx,
264 struct lu_context_key *key);
265void ccc_session_key_fini(const struct lu_context *ctx,
266 struct lu_context_key *key, void *data);
267
268int ccc_device_init (const struct lu_env *env,
269 struct lu_device *d,
270 const char *name, struct lu_device *next);
271struct lu_device *ccc_device_fini (const struct lu_env *env,
272 struct lu_device *d);
273struct lu_device *ccc_device_alloc(const struct lu_env *env,
274 struct lu_device_type *t,
275 struct lustre_cfg *cfg,
276 const struct lu_device_operations *luops,
277 const struct cl_device_operations *clops);
278struct lu_device *ccc_device_free (const struct lu_env *env,
279 struct lu_device *d);
280struct lu_object *ccc_object_alloc(const struct lu_env *env,
281 const struct lu_object_header *hdr,
282 struct lu_device *dev,
283 const struct cl_object_operations *clops,
284 const struct lu_object_operations *luops);
285
286int ccc_req_init(const struct lu_env *env, struct cl_device *dev,
287 struct cl_req *req);
288void ccc_umount(const struct lu_env *env, struct cl_device *dev);
289int ccc_global_init(struct lu_device_type *device_type);
290void ccc_global_fini(struct lu_device_type *device_type);
291int ccc_object_init0(const struct lu_env *env,struct ccc_object *vob,
292 const struct cl_object_conf *conf);
293int ccc_object_init(const struct lu_env *env, struct lu_object *obj,
294 const struct lu_object_conf *conf);
295void ccc_object_free(const struct lu_env *env, struct lu_object *obj);
296int ccc_lock_init(const struct lu_env *env, struct cl_object *obj,
297 struct cl_lock *lock, const struct cl_io *io,
298 const struct cl_lock_operations *lkops);
299int ccc_attr_set(const struct lu_env *env, struct cl_object *obj,
300 const struct cl_attr *attr, unsigned valid);
301int ccc_object_glimpse(const struct lu_env *env,
302 const struct cl_object *obj, struct ost_lvb *lvb);
303int ccc_conf_set(const struct lu_env *env, struct cl_object *obj,
304 const struct cl_object_conf *conf);
305struct page *ccc_page_vmpage(const struct lu_env *env,
306 const struct cl_page_slice *slice);
307int ccc_page_is_under_lock(const struct lu_env *env,
308 const struct cl_page_slice *slice, struct cl_io *io);
309int ccc_fail(const struct lu_env *env, const struct cl_page_slice *slice);
310void ccc_transient_page_verify(const struct cl_page *page);
311int ccc_transient_page_own(const struct lu_env *env,
312 const struct cl_page_slice *slice,
313 struct cl_io *io, int nonblock);
314void ccc_transient_page_assume(const struct lu_env *env,
315 const struct cl_page_slice *slice,
316 struct cl_io *io);
317void ccc_transient_page_unassume(const struct lu_env *env,
318 const struct cl_page_slice *slice,
319 struct cl_io *io);
320void ccc_transient_page_disown(const struct lu_env *env,
321 const struct cl_page_slice *slice,
322 struct cl_io *io);
323void ccc_transient_page_discard(const struct lu_env *env,
324 const struct cl_page_slice *slice,
325 struct cl_io *io);
326int ccc_transient_page_prep(const struct lu_env *env,
327 const struct cl_page_slice *slice,
328 struct cl_io *io);
329void ccc_lock_delete(const struct lu_env *env,
330 const struct cl_lock_slice *slice);
331void ccc_lock_fini(const struct lu_env *env,struct cl_lock_slice *slice);
332int ccc_lock_enqueue(const struct lu_env *env,const struct cl_lock_slice *slice,
333 struct cl_io *io, __u32 enqflags);
334int ccc_lock_unuse(const struct lu_env *env,const struct cl_lock_slice *slice);
335int ccc_lock_wait(const struct lu_env *env,const struct cl_lock_slice *slice);
336int ccc_lock_fits_into(const struct lu_env *env,
337 const struct cl_lock_slice *slice,
338 const struct cl_lock_descr *need,
339 const struct cl_io *io);
340void ccc_lock_state(const struct lu_env *env,
341 const struct cl_lock_slice *slice,
342 enum cl_lock_state state);
343
344void ccc_io_fini(const struct lu_env *env, const struct cl_io_slice *ios);
345int ccc_io_one_lock_index(const struct lu_env *env, struct cl_io *io,
346 __u32 enqflags, enum cl_lock_mode mode,
347 pgoff_t start, pgoff_t end);
348int ccc_io_one_lock(const struct lu_env *env, struct cl_io *io,
349 __u32 enqflags, enum cl_lock_mode mode,
350 loff_t start, loff_t end);
351void ccc_io_end(const struct lu_env *env, const struct cl_io_slice *ios);
352void ccc_io_advance(const struct lu_env *env, const struct cl_io_slice *ios,
353 size_t nob);
354void ccc_io_update_iov(const struct lu_env *env, struct ccc_io *cio,
355 struct cl_io *io);
356int ccc_prep_size(const struct lu_env *env, struct cl_object *obj,
357 struct cl_io *io, loff_t start, size_t count, int *exceed);
358void ccc_req_completion(const struct lu_env *env,
359 const struct cl_req_slice *slice, int ioret);
360void ccc_req_attr_set(const struct lu_env *env,const struct cl_req_slice *slice,
361 const struct cl_object *obj,
362 struct cl_req_attr *oa, obd_valid flags);
363
364struct lu_device *ccc2lu_dev (struct ccc_device *vdv);
365struct lu_object *ccc2lu (struct ccc_object *vob);
366struct ccc_device *lu2ccc_dev (const struct lu_device *d);
367struct ccc_device *cl2ccc_dev (const struct cl_device *d);
368struct ccc_object *lu2ccc (const struct lu_object *obj);
369struct ccc_object *cl2ccc (const struct cl_object *obj);
370struct ccc_lock *cl2ccc_lock (const struct cl_lock_slice *slice);
371struct ccc_io *cl2ccc_io (const struct lu_env *env,
372 const struct cl_io_slice *slice);
373struct ccc_req *cl2ccc_req (const struct cl_req_slice *slice);
374struct page *cl2vm_page (const struct cl_page_slice *slice);
375struct inode *ccc_object_inode(const struct cl_object *obj);
376struct ccc_object *cl_inode2ccc (struct inode *inode);
377
378int cl_setattr_ost(struct inode *inode, const struct iattr *attr,
379 struct obd_capa *capa);
380
381struct cl_page *ccc_vmpage_page_transient(struct page *vmpage);
382int ccc_object_invariant(const struct cl_object *obj);
383int cl_file_inode_init(struct inode *inode, struct lustre_md *md);
384void cl_inode_fini(struct inode *inode);
385int cl_local_size(struct inode *inode);
386
387__u16 ll_dirent_type_get(struct lu_dirent *ent);
388__u64 cl_fid_build_ino(const struct lu_fid *fid, int api32);
389__u32 cl_fid_build_gen(const struct lu_fid *fid);
390
391# define CLOBINVRNT(env, clob, expr) \
392 ((void)sizeof(env), (void)sizeof(clob), (void)sizeof(!!(expr)))
393
394int cl_init_ea_size(struct obd_export *md_exp, struct obd_export *dt_exp);
395int cl_ocd_update(struct obd_device *host,
396 struct obd_device *watched,
397 enum obd_notify_event ev, void *owner, void *data);
398
399struct ccc_grouplock {
400 struct lu_env *cg_env;
401 struct cl_io *cg_io;
402 struct cl_lock *cg_lock;
403 unsigned long cg_gid;
404};
405
406int cl_get_grouplock(struct cl_object *obj, unsigned long gid, int nonblock,
407 struct ccc_grouplock *cg);
408void cl_put_grouplock(struct ccc_grouplock *cg);
409
410
411
412
413
414
415
416
417struct lov_stripe_md *lov_lsm_get(struct cl_object *clobj);
418void lov_lsm_put(struct cl_object *clobj, struct lov_stripe_md *lsm);
419int lov_read_and_clear_async_rc(struct cl_object *clob);
420
421struct lov_stripe_md *ccc_inode_lsm_get(struct inode *inode);
422void ccc_inode_lsm_put(struct inode *inode, struct lov_stripe_md *lsm);
423
424
425
426
427
428struct cl_client_cache {
429 atomic_t ccc_users;
430 struct list_head ccc_lru;
431 spinlock_t ccc_lru_lock;
432 atomic_t ccc_lru_left;
433 unsigned long ccc_lru_max;
434 unsigned int ccc_lru_shrinkers;
435};
436
437#endif
438