staging/lustre/obd: remove struct client_obd_lock
[cascardo/linux.git] / drivers / staging / lustre / lustre / osc / osc_cl_internal.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2012, 2015, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36 /*
37  * This file is part of Lustre, http://www.lustre.org/
38  * Lustre is a trademark of Sun Microsystems, Inc.
39  *
40  * Internal interfaces of OSC layer.
41  *
42  *   Author: Nikita Danilov <nikita.danilov@sun.com>
43  *   Author: Jinshan Xiong <jinshan.xiong@whamcloud.com>
44  */
45
46 #ifndef OSC_CL_INTERNAL_H
47 #define OSC_CL_INTERNAL_H
48
49 #include "../../include/linux/libcfs/libcfs.h"
50
51 #include "../include/obd.h"
52 /* osc_build_res_name() */
53 #include "../include/cl_object.h"
54 #include "../include/lclient.h"
55 #include "osc_internal.h"
56
57 /** \defgroup osc osc
58  *  @{
59  */
60
61 struct osc_extent;
62
63 /**
64  * State maintained by osc layer for each IO context.
65  */
66 struct osc_io {
67         /** super class */
68         struct cl_io_slice oi_cl;
69         /** true if this io is lockless. */
70         int             oi_lockless;
71         /** active extents, we know how many bytes is going to be written,
72          * so having an active extent will prevent it from being fragmented
73          */
74         struct osc_extent *oi_active;
75         /** partially truncated extent, we need to hold this extent to prevent
76          * page writeback from happening.
77          */
78         struct osc_extent *oi_trunc;
79
80         int oi_lru_reserved;
81
82         struct obd_info    oi_info;
83         struct obdo     oi_oa;
84         struct osc_async_cbargs {
85                 bool              opc_rpc_sent;
86                 int            opc_rc;
87                 struct completion       opc_sync;
88         } oi_cbarg;
89 };
90
91 /**
92  * State of transfer for osc.
93  */
94 struct osc_req {
95         struct cl_req_slice    or_cl;
96 };
97
98 /**
99  * State maintained by osc layer for the duration of a system call.
100  */
101 struct osc_session {
102         struct osc_io       os_io;
103 };
104
105 #define OTI_PVEC_SIZE 256
106 struct osc_thread_info {
107         struct ldlm_res_id      oti_resname;
108         ldlm_policy_data_t      oti_policy;
109         struct cl_lock_descr    oti_descr;
110         struct cl_attr    oti_attr;
111         struct lustre_handle    oti_handle;
112         struct cl_page_list     oti_plist;
113         struct cl_io            oti_io;
114         void                    *oti_pvec[OTI_PVEC_SIZE];
115         /**
116          * Fields used by cl_lock_discard_pages().
117          */
118         pgoff_t                 oti_next_index;
119         pgoff_t                 oti_fn_index; /* first non-overlapped index */
120 };
121
122 struct osc_object {
123         struct cl_object   oo_cl;
124         struct lov_oinfo  *oo_oinfo;
125         /**
126          * True if locking against this stripe got -EUSERS.
127          */
128         int             oo_contended;
129         unsigned long    oo_contention_time;
130         /**
131          * List of pages in transfer.
132          */
133         struct list_head         oo_inflight[CRT_NR];
134         /**
135          * Lock, protecting ccc_object::cob_inflight, because a seat-belt is
136          * locked during take-off and landing.
137          */
138         spinlock_t         oo_seatbelt;
139
140         /**
141          * used by the osc to keep track of what objects to build into rpcs.
142          * Protected by client_obd->cli_loi_list_lock.
143          */
144         struct list_head           oo_ready_item;
145         struct list_head           oo_hp_ready_item;
146         struct list_head           oo_write_item;
147         struct list_head           oo_read_item;
148
149         /**
150          * extent is a red black tree to manage (async) dirty pages.
151          */
152         struct rb_root       oo_root;
153         /**
154          * Manage write(dirty) extents.
155          */
156         struct list_head           oo_hp_exts; /* list of hp extents */
157         struct list_head           oo_urgent_exts; /* list of writeback extents */
158         struct list_head           oo_rpc_exts;
159
160         struct list_head           oo_reading_exts;
161
162         atomic_t         oo_nr_reads;
163         atomic_t         oo_nr_writes;
164
165         /** Protect extent tree. Will be used to protect
166          * oo_{read|write}_pages soon.
167          */
168         spinlock_t          oo_lock;
169
170         /**
171          * Radix tree for caching pages
172          */
173         struct radix_tree_root  oo_tree;
174         spinlock_t              oo_tree_lock;
175         unsigned long           oo_npages;
176 };
177
178 static inline void osc_object_lock(struct osc_object *obj)
179 {
180         spin_lock(&obj->oo_lock);
181 }
182
183 static inline int osc_object_trylock(struct osc_object *obj)
184 {
185         return spin_trylock(&obj->oo_lock);
186 }
187
188 static inline void osc_object_unlock(struct osc_object *obj)
189 {
190         spin_unlock(&obj->oo_lock);
191 }
192
193 static inline int osc_object_is_locked(struct osc_object *obj)
194 {
195 #if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_SPINLOCK)
196         return spin_is_locked(&obj->oo_lock);
197 #else
198         /*
199          * It is not perfect to return true all the time.
200          * But since this function is only used for assertion
201          * and checking, it seems OK.
202          */
203         return 1;
204 #endif
205 }
206
207 /*
208  * Lock "micro-states" for osc layer.
209  */
210 enum osc_lock_state {
211         OLS_NEW,
212         OLS_ENQUEUED,
213         OLS_UPCALL_RECEIVED,
214         OLS_GRANTED,
215         OLS_RELEASED,
216         OLS_BLOCKED,
217         OLS_CANCELLED
218 };
219
220 /**
221  * osc-private state of cl_lock.
222  *
223  * Interaction with DLM.
224  *
225  * CLIO enqueues all DLM locks through ptlrpcd (that is, in "async" mode).
226  *
227  * Once receive upcall is invoked, osc_lock remembers a handle of DLM lock in
228  * osc_lock::ols_handle and a pointer to that lock in osc_lock::ols_lock.
229  *
230  * This pointer is protected through a reference, acquired by
231  * osc_lock_upcall0(). Also, an additional reference is acquired by
232  * ldlm_lock_addref() call protecting the lock from cancellation, until
233  * osc_lock_unuse() releases it.
234  *
235  * Below is a description of how lock references are acquired and released
236  * inside of DLM.
237  *
238  * - When new lock is created and enqueued to the server (ldlm_cli_enqueue())
239  *      - ldlm_lock_create()
240  *        - ldlm_lock_new(): initializes a lock with 2 references. One for
241  *          the caller (released when reply from the server is received, or on
242  *          error), and another for the hash table.
243  *      - ldlm_lock_addref_internal(): protects the lock from cancellation.
244  *
245  * - When reply is received from the server (osc_enqueue_interpret())
246  *      - ldlm_cli_enqueue_fini()
247  *        - LDLM_LOCK_PUT(): releases caller reference acquired by
248  *          ldlm_lock_new().
249  *        - if (rc != 0)
250  *              ldlm_lock_decref(): error case: matches ldlm_cli_enqueue().
251  *      - ldlm_lock_decref(): for async locks, matches ldlm_cli_enqueue().
252  *
253  * - When lock is being cancelled (ldlm_lock_cancel())
254  *      - ldlm_lock_destroy()
255  *        - LDLM_LOCK_PUT(): releases hash-table reference acquired by
256  *          ldlm_lock_new().
257  *
258  * osc_lock is detached from ldlm_lock by osc_lock_detach() that is called
259  * either when lock is cancelled (osc_lock_blocking()), or when locks is
260  * deleted without cancellation (e.g., from cl_locks_prune()). In the latter
261  * case ldlm lock remains in memory, and can be re-attached to osc_lock in the
262  * future.
263  */
264 struct osc_lock {
265         struct cl_lock_slice     ols_cl;
266         /** underlying DLM lock */
267         struct ldlm_lock        *ols_lock;
268         /** lock value block */
269         struct ost_lvb     ols_lvb;
270         /** DLM flags with which osc_lock::ols_lock was enqueued */
271         __u64               ols_flags;
272         /** osc_lock::ols_lock handle */
273         struct lustre_handle     ols_handle;
274         struct ldlm_enqueue_info ols_einfo;
275         enum osc_lock_state      ols_state;
276
277         /**
278          * true, if ldlm_lock_addref() was called against
279          * osc_lock::ols_lock. This is used for sanity checking.
280          *
281          * \see osc_lock::ols_has_ref
282          */
283         unsigned                  ols_hold :1,
284         /**
285          * this is much like osc_lock::ols_hold, except that this bit is
286          * cleared _after_ reference in released in osc_lock_unuse(). This
287          * fine distinction is needed because:
288          *
289          *     - if ldlm lock still has a reference, osc_ast_data_get() needs
290          *       to return associated cl_lock (so that a flag is needed that is
291          *       cleared after ldlm_lock_decref() returned), and
292          *
293          *     - ldlm_lock_decref() can invoke blocking ast (for a
294          *       LDLM_FL_CBPENDING lock), and osc_lock functions like
295          *       osc_lock_cancel() called from there need to know whether to
296          *       release lock reference (so that a flag is needed that is
297          *       cleared before ldlm_lock_decref() is called).
298          */
299                                  ols_has_ref:1,
300         /**
301          * inherit the lockless attribute from top level cl_io.
302          * If true, osc_lock_enqueue is able to tolerate the -EUSERS error.
303          */
304                                  ols_locklessable:1,
305         /**
306          * set by osc_lock_use() to wait until blocking AST enters into
307          * osc_ldlm_blocking_ast0(), so that cl_lock mutex can be used for
308          * further synchronization.
309          */
310                                  ols_ast_wait:1,
311         /**
312          * If the data of this lock has been flushed to server side.
313          */
314                                  ols_flush:1,
315         /**
316          * if set, the osc_lock is a glimpse lock. For glimpse locks, we treat
317          * the EVAVAIL error as tolerable, this will make upper logic happy
318          * to wait all glimpse locks to each OSTs to be completed.
319          * Glimpse lock converts to normal lock if the server lock is
320          * granted.
321          * Glimpse lock should be destroyed immediately after use.
322          */
323                                  ols_glimpse:1,
324         /**
325          * For async glimpse lock.
326          */
327                                  ols_agl:1;
328         /**
329          * IO that owns this lock. This field is used for a dead-lock
330          * avoidance by osc_lock_enqueue_wait().
331          *
332          * XXX: unfortunately, the owner of a osc_lock is not unique,
333          * the lock may have multiple users, if the lock is granted and
334          * then matched.
335          */
336         struct osc_io      *ols_owner;
337 };
338
339 /**
340  * Page state private for osc layer.
341  */
342 struct osc_page {
343         struct cl_page_slice  ops_cl;
344         /**
345          * Page queues used by osc to detect when RPC can be formed.
346          */
347         struct osc_async_page ops_oap;
348         /**
349          * An offset within page from which next transfer starts. This is used
350          * by cl_page_clip() to submit partial page transfers.
351          */
352         int                ops_from;
353         /**
354          * An offset within page at which next transfer ends.
355          *
356          * \see osc_page::ops_from.
357          */
358         int                ops_to;
359         /**
360          * Boolean, true iff page is under transfer. Used for sanity checking.
361          */
362         unsigned              ops_transfer_pinned:1,
363         /**
364          * True for a `temporary page' created by read-ahead code, probably
365          * outside of any DLM lock.
366          */
367                               ops_temp:1,
368         /**
369          * in LRU?
370          */
371                               ops_in_lru:1,
372         /**
373          * Set if the page must be transferred with OBD_BRW_SRVLOCK.
374          */
375                               ops_srvlock:1;
376         /**
377          * lru page list. See osc_lru_{del|use}() in osc_page.c for usage.
378          */
379         struct list_head              ops_lru;
380         /**
381          * Linkage into a per-osc_object list of pages in flight. For
382          * debugging.
383          */
384         struct list_head            ops_inflight;
385         /**
386          * Thread that submitted this page for transfer. For debugging.
387          */
388         struct task_struct      *ops_submitter;
389         /**
390          * Submit time - the time when the page is starting RPC. For debugging.
391          */
392         unsigned long       ops_submit_time;
393 };
394
395 extern struct kmem_cache *osc_lock_kmem;
396 extern struct kmem_cache *osc_object_kmem;
397 extern struct kmem_cache *osc_thread_kmem;
398 extern struct kmem_cache *osc_session_kmem;
399 extern struct kmem_cache *osc_req_kmem;
400 extern struct kmem_cache *osc_extent_kmem;
401
402 extern struct lu_device_type osc_device_type;
403 extern struct lu_context_key osc_key;
404 extern struct lu_context_key osc_session_key;
405
406 #define OSC_FLAGS (ASYNC_URGENT|ASYNC_READY)
407
408 int osc_lock_init(const struct lu_env *env,
409                   struct cl_object *obj, struct cl_lock *lock,
410                   const struct cl_io *io);
411 int osc_io_init  (const struct lu_env *env,
412                   struct cl_object *obj, struct cl_io *io);
413 int osc_req_init (const struct lu_env *env, struct cl_device *dev,
414                   struct cl_req *req);
415 struct lu_object *osc_object_alloc(const struct lu_env *env,
416                                    const struct lu_object_header *hdr,
417                                    struct lu_device *dev);
418 int osc_page_init(const struct lu_env *env, struct cl_object *obj,
419                   struct cl_page *page, pgoff_t ind);
420
421 void osc_index2policy  (ldlm_policy_data_t *policy, const struct cl_object *obj,
422                         pgoff_t start, pgoff_t end);
423 int  osc_lvb_print     (const struct lu_env *env, void *cookie,
424                         lu_printer_t p, const struct ost_lvb *lvb);
425
426 void osc_lru_add_batch(struct client_obd *cli, struct list_head *list);
427 void osc_page_submit(const struct lu_env *env, struct osc_page *opg,
428                      enum cl_req_type crt, int brw_flags);
429 int osc_cancel_async_page(const struct lu_env *env, struct osc_page *ops);
430 int osc_set_async_flags(struct osc_object *obj, struct osc_page *opg,
431                         u32 async_flags);
432 int osc_prep_async_page(struct osc_object *osc, struct osc_page *ops,
433                         struct page *page, loff_t offset);
434 int osc_queue_async_io(const struct lu_env *env, struct cl_io *io,
435                        struct osc_page *ops);
436 int osc_page_cache_add(const struct lu_env *env,
437                        const struct cl_page_slice *slice, struct cl_io *io);
438 int osc_teardown_async_page(const struct lu_env *env, struct osc_object *obj,
439                             struct osc_page *ops);
440 int osc_flush_async_page(const struct lu_env *env, struct cl_io *io,
441                          struct osc_page *ops);
442 int osc_queue_sync_pages(const struct lu_env *env, struct osc_object *obj,
443                          struct list_head *list, int cmd, int brw_flags);
444 int osc_cache_truncate_start(const struct lu_env *env, struct osc_io *oio,
445                              struct osc_object *obj, __u64 size);
446 void osc_cache_truncate_end(const struct lu_env *env, struct osc_io *oio,
447                             struct osc_object *obj);
448 int osc_cache_writeback_range(const struct lu_env *env, struct osc_object *obj,
449                               pgoff_t start, pgoff_t end, int hp, int discard);
450 int osc_cache_wait_range(const struct lu_env *env, struct osc_object *obj,
451                          pgoff_t start, pgoff_t end);
452 void osc_io_unplug(const struct lu_env *env, struct client_obd *cli,
453                    struct osc_object *osc);
454 int lru_queue_work(const struct lu_env *env, void *data);
455
456 void osc_object_set_contended  (struct osc_object *obj);
457 void osc_object_clear_contended(struct osc_object *obj);
458 int  osc_object_is_contended   (struct osc_object *obj);
459
460 int  osc_lock_is_lockless      (const struct osc_lock *olck);
461
462 /*****************************************************************************
463  *
464  * Accessors.
465  *
466  */
467
468 static inline struct osc_thread_info *osc_env_info(const struct lu_env *env)
469 {
470         struct osc_thread_info *info;
471
472         info = lu_context_key_get(&env->le_ctx, &osc_key);
473         LASSERT(info);
474         return info;
475 }
476
477 static inline struct osc_session *osc_env_session(const struct lu_env *env)
478 {
479         struct osc_session *ses;
480
481         ses = lu_context_key_get(env->le_ses, &osc_session_key);
482         LASSERT(ses);
483         return ses;
484 }
485
486 static inline struct osc_io *osc_env_io(const struct lu_env *env)
487 {
488         return &osc_env_session(env)->os_io;
489 }
490
491 static inline int osc_is_object(const struct lu_object *obj)
492 {
493         return obj->lo_dev->ld_type == &osc_device_type;
494 }
495
496 static inline struct osc_device *lu2osc_dev(const struct lu_device *d)
497 {
498         LINVRNT(d->ld_type == &osc_device_type);
499         return container_of0(d, struct osc_device, od_cl.cd_lu_dev);
500 }
501
502 static inline struct obd_export *osc_export(const struct osc_object *obj)
503 {
504         return lu2osc_dev(obj->oo_cl.co_lu.lo_dev)->od_exp;
505 }
506
507 static inline struct client_obd *osc_cli(const struct osc_object *obj)
508 {
509         return &osc_export(obj)->exp_obd->u.cli;
510 }
511
512 static inline struct osc_object *cl2osc(const struct cl_object *obj)
513 {
514         LINVRNT(osc_is_object(&obj->co_lu));
515         return container_of0(obj, struct osc_object, oo_cl);
516 }
517
518 static inline struct cl_object *osc2cl(const struct osc_object *obj)
519 {
520         return (struct cl_object *)&obj->oo_cl;
521 }
522
523 static inline enum ldlm_mode osc_cl_lock2ldlm(enum cl_lock_mode mode)
524 {
525         LASSERT(mode == CLM_READ || mode == CLM_WRITE || mode == CLM_GROUP);
526         if (mode == CLM_READ)
527                 return LCK_PR;
528         else if (mode == CLM_WRITE)
529                 return LCK_PW;
530         else
531                 return LCK_GROUP;
532 }
533
534 static inline enum cl_lock_mode osc_ldlm2cl_lock(enum ldlm_mode mode)
535 {
536         LASSERT(mode == LCK_PR || mode == LCK_PW || mode == LCK_GROUP);
537         if (mode == LCK_PR)
538                 return CLM_READ;
539         else if (mode == LCK_PW)
540                 return CLM_WRITE;
541         else
542                 return CLM_GROUP;
543 }
544
545 static inline struct osc_page *cl2osc_page(const struct cl_page_slice *slice)
546 {
547         LINVRNT(osc_is_object(&slice->cpl_obj->co_lu));
548         return container_of0(slice, struct osc_page, ops_cl);
549 }
550
551 static inline struct osc_page *oap2osc(struct osc_async_page *oap)
552 {
553         return container_of0(oap, struct osc_page, ops_oap);
554 }
555
556 static inline pgoff_t osc_index(struct osc_page *opg)
557 {
558         return opg->ops_cl.cpl_index;
559 }
560
561 static inline struct cl_page *oap2cl_page(struct osc_async_page *oap)
562 {
563         return oap2osc(oap)->ops_cl.cpl_page;
564 }
565
566 static inline struct osc_page *oap2osc_page(struct osc_async_page *oap)
567 {
568         return (struct osc_page *)container_of(oap, struct osc_page, ops_oap);
569 }
570
571 static inline struct osc_lock *cl2osc_lock(const struct cl_lock_slice *slice)
572 {
573         LINVRNT(osc_is_object(&slice->cls_obj->co_lu));
574         return container_of0(slice, struct osc_lock, ols_cl);
575 }
576
577 static inline struct osc_lock *osc_lock_at(const struct cl_lock *lock)
578 {
579         return cl2osc_lock(cl_lock_at(lock, &osc_device_type));
580 }
581
582 static inline int osc_io_srvlock(struct osc_io *oio)
583 {
584         return (oio->oi_lockless && !oio->oi_cl.cis_io->ci_no_srvlock);
585 }
586
587 enum osc_extent_state {
588         OES_INV       = 0, /** extent is just initialized or destroyed */
589         OES_ACTIVE    = 1, /** process is using this extent */
590         OES_CACHE     = 2, /** extent is ready for IO */
591         OES_LOCKING   = 3, /** locking page to prepare IO */
592         OES_LOCK_DONE = 4, /** locking finished, ready to send */
593         OES_RPC       = 5, /** in RPC */
594         OES_TRUNC     = 6, /** being truncated */
595         OES_STATE_MAX
596 };
597
598 /**
599  * osc_extent data to manage dirty pages.
600  * osc_extent has the following attributes:
601  * 1. all pages in the same must be in one RPC in write back;
602  * 2. # of pages must be less than max_pages_per_rpc - implied by 1;
603  * 3. must be covered by only 1 osc_lock;
604  * 4. exclusive. It's impossible to have overlapped osc_extent.
605  *
606  * The lifetime of an extent is from when the 1st page is dirtied to when
607  * all pages inside it are written out.
608  *
609  * LOCKING ORDER
610  * =============
611  * page lock -> cl_loi_list_lock -> object lock(osc_object::oo_lock)
612  */
613 struct osc_extent {
614         /** red-black tree node */
615         struct rb_node     oe_node;
616         /** osc_object of this extent */
617         struct osc_object *oe_obj;
618         /** refcount, removed from red-black tree if reaches zero. */
619         atomic_t       oe_refc;
620         /** busy if non-zero */
621         atomic_t       oe_users;
622         /** link list of osc_object's oo_{hp|urgent|locking}_exts. */
623         struct list_head         oe_link;
624         /** state of this extent */
625         unsigned int       oe_state;
626         /** flags for this extent. */
627         unsigned int       oe_intree:1,
628         /** 0 is write, 1 is read */
629                            oe_rw:1,
630                            oe_srvlock:1,
631                            oe_memalloc:1,
632         /** an ACTIVE extent is going to be truncated, so when this extent
633          * is released, it will turn into TRUNC state instead of CACHE.
634          */
635                            oe_trunc_pending:1,
636         /** this extent should be written asap and someone may wait for the
637          * write to finish. This bit is usually set along with urgent if
638          * the extent was CACHE state.
639          * fsync_wait extent can't be merged because new extent region may
640          * exceed fsync range.
641          */
642                            oe_fsync_wait:1,
643         /** covering lock is being canceled */
644                            oe_hp:1,
645         /** this extent should be written back asap. set if one of pages is
646          * called by page WB daemon, or sync write or reading requests.
647          */
648                            oe_urgent:1;
649         /** how many grants allocated for this extent.
650          *  Grant allocated for this extent. There is no grant allocated
651          *  for reading extents and sync write extents.
652          */
653         unsigned int       oe_grants;
654         /** # of dirty pages in this extent */
655         unsigned int       oe_nr_pages;
656         /** list of pending oap pages. Pages in this list are NOT sorted. */
657         struct list_head         oe_pages;
658         /** Since an extent has to be written out in atomic, this is used to
659          * remember the next page need to be locked to write this extent out.
660          * Not used right now.
661          */
662         struct osc_page   *oe_next_page;
663         /** start and end index of this extent, include start and end
664          * themselves. Page offset here is the page index of osc_pages.
665          * oe_start is used as keyword for red-black tree.
666          */
667         pgoff_t     oe_start;
668         pgoff_t     oe_end;
669         /** maximum ending index of this extent, this is limited by
670          * max_pages_per_rpc, lock extent and chunk size.
671          */
672         pgoff_t     oe_max_end;
673         /** waitqueue - for those who want to be notified if this extent's
674          * state has changed.
675          */
676         wait_queue_head_t       oe_waitq;
677         /** lock covering this extent */
678         struct cl_lock    *oe_osclock;
679         /** terminator of this extent. Must be true if this extent is in IO. */
680         struct task_struct      *oe_owner;
681         /** return value of writeback. If somebody is waiting for this extent,
682          * this value can be known by outside world.
683          */
684         int             oe_rc;
685         /** max pages per rpc when this extent was created */
686         unsigned int       oe_mppr;
687 };
688
689 int osc_extent_finish(const struct lu_env *env, struct osc_extent *ext,
690                       int sent, int rc);
691 void osc_extent_release(const struct lu_env *env, struct osc_extent *ext);
692
693 int osc_lock_discard_pages(const struct lu_env *env, struct osc_lock *lock);
694
695 typedef int (*osc_page_gang_cbt)(const struct lu_env *, struct cl_io *,
696                                  struct osc_page *, void *);
697 int osc_page_gang_lookup(const struct lu_env *env, struct cl_io *io,
698                          struct osc_object *osc, pgoff_t start, pgoff_t end,
699                          osc_page_gang_cbt cb, void *cbdata);
700
701 /** @} osc */
702
703 #endif /* OSC_CL_INTERNAL_H */