Whamcloud - gitweb
LU-1030 osc: new IO engine implementation
[fs/lustre-release.git] / 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, Whamcloud, Inc.
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 #ifdef __KERNEL__
50 # include <libcfs/libcfs.h>
51 #else
52 # include <liblustre.h>
53 #endif
54
55 #include <obd.h>
56 /* osc_build_res_name() */
57 #include <obd_ost.h>
58 #include <cl_object.h>
59 #include "osc_internal.h"
60
61 /** \defgroup osc osc
62  *  @{
63  */
64
65 struct osc_extent;
66
67 /**
68  * State maintained by osc layer for each IO context.
69  */
70 struct osc_io {
71         /** super class */
72         struct cl_io_slice oi_cl;
73         /** true if this io is lockless. */
74         int                oi_lockless;
75         /** active extents, we know how many bytes is going to be written,
76          * so having an active extent will prevent it from being fragmented */
77         struct osc_extent *oi_active;
78         /** partially truncated extent, we need to hold this extent to prevent
79          * page writeback from happening. */
80         struct osc_extent *oi_trunc;
81
82         struct obd_info    oi_info;
83         struct obdo        oi_oa;
84         struct osc_async_cbargs {
85                 int               opc_rc;
86                 cfs_completion_t  opc_sync;
87         } oi_cbarg;
88 };
89
90 /**
91  * State of transfer for osc.
92  */
93 struct osc_req {
94         struct cl_req_slice    or_cl;
95 };
96
97 /**
98  * State maintained by osc layer for the duration of a system call.
99  */
100 struct osc_session {
101         struct osc_io       os_io;
102 };
103
104 struct osc_thread_info {
105         struct ldlm_res_id      oti_resname;
106         ldlm_policy_data_t      oti_policy;
107         struct cl_lock_descr    oti_descr;
108         struct cl_attr          oti_attr;
109         struct lustre_handle    oti_handle;
110         struct cl_page_list     oti_plist;
111         struct cl_io        oti_io;
112 };
113
114 struct osc_object {
115         struct cl_object   oo_cl;
116         struct lov_oinfo  *oo_oinfo;
117         /**
118          * True if locking against this stripe got -EUSERS.
119          */
120         int                oo_contended;
121         cfs_time_t         oo_contention_time;
122 #ifdef INVARIANT_CHECK
123         /**
124          * IO context used for invariant checks in osc_lock_has_pages().
125          */
126         struct cl_io       oo_debug_io;
127         /** Serialization object for osc_object::oo_debug_io. */
128         cfs_mutex_t        oo_debug_mutex;
129 #endif
130         /**
131          * List of pages in transfer.
132          */
133         cfs_list_t         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         cfs_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         cfs_list_t         oo_ready_item;
145         cfs_list_t         oo_hp_ready_item;
146         cfs_list_t         oo_write_item;
147         cfs_list_t         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         cfs_list_t         oo_hp_exts; /* list of hp extents */
157         cfs_list_t         oo_urgent_exts; /* list of writeback extents */
158         cfs_list_t         oo_rpc_exts;
159
160         cfs_list_t         oo_reading_exts;
161
162         cfs_atomic_t     oo_nr_reads;
163         cfs_atomic_t     oo_nr_writes;
164
165         /** Protect extent tree. Will be used to protect
166          * oo_{read|write}_pages soon. */
167         cfs_spinlock_t       oo_lock;
168 };
169
170 static inline void osc_object_lock(struct osc_object *obj)
171 {
172         cfs_spin_lock(&obj->oo_lock);
173 }
174
175 static inline int osc_object_trylock(struct osc_object *obj)
176 {
177         return cfs_spin_trylock(&obj->oo_lock);
178 }
179
180 static inline void osc_object_unlock(struct osc_object *obj)
181 {
182         cfs_spin_unlock(&obj->oo_lock);
183 }
184
185 static inline int osc_object_is_locked(struct osc_object *obj)
186 {
187         return cfs_spin_is_locked(&obj->oo_lock);
188 }
189
190 /*
191  * Lock "micro-states" for osc layer.
192  */
193 enum osc_lock_state {
194         OLS_NEW,
195         OLS_ENQUEUED,
196         OLS_UPCALL_RECEIVED,
197         OLS_GRANTED,
198         OLS_RELEASED,
199         OLS_BLOCKED,
200         OLS_CANCELLED
201 };
202
203 /**
204  * osc-private state of cl_lock.
205  *
206  * Interaction with DLM.
207  *
208  * CLIO enqueues all DLM locks through ptlrpcd (that is, in "async" mode).
209  *
210  * Once receive upcall is invoked, osc_lock remembers a handle of DLM lock in
211  * osc_lock::ols_handle and a pointer to that lock in osc_lock::ols_lock.
212  *
213  * This pointer is protected through a reference, acquired by
214  * osc_lock_upcall0(). Also, an additional reference is acquired by
215  * ldlm_lock_addref() call protecting the lock from cancellation, until
216  * osc_lock_unuse() releases it.
217  *
218  * Below is a description of how lock references are acquired and released
219  * inside of DLM.
220  *
221  * - When new lock is created and enqueued to the server (ldlm_cli_enqueue())
222  *      - ldlm_lock_create()
223  *          - ldlm_lock_new(): initializes a lock with 2 references. One for
224  *            the caller (released when reply from the server is received, or on
225  *            error), and another for the hash table.
226  *      - ldlm_lock_addref_internal(): protects the lock from cancellation.
227  *
228  * - When reply is received from the server (osc_enqueue_interpret())
229  *      - ldlm_cli_enqueue_fini()
230  *          - LDLM_LOCK_PUT(): releases caller reference acquired by
231  *            ldlm_lock_new().
232  *          - if (rc != 0)
233  *                ldlm_lock_decref(): error case: matches ldlm_cli_enqueue().
234  *      - ldlm_lock_decref(): for async locks, matches ldlm_cli_enqueue().
235  *
236  * - When lock is being cancelled (ldlm_lock_cancel())
237  *      - ldlm_lock_destroy()
238  *          - LDLM_LOCK_PUT(): releases hash-table reference acquired by
239  *            ldlm_lock_new().
240  *
241  * osc_lock is detached from ldlm_lock by osc_lock_detach() that is called
242  * either when lock is cancelled (osc_lock_blocking()), or when locks is
243  * deleted without cancellation (e.g., from cl_locks_prune()). In the latter
244  * case ldlm lock remains in memory, and can be re-attached to osc_lock in the
245  * future.
246  */
247 struct osc_lock {
248         struct cl_lock_slice     ols_cl;
249         /** underlying DLM lock */
250         struct ldlm_lock        *ols_lock;
251         /** lock value block */
252         struct ost_lvb           ols_lvb;
253         /** DLM flags with which osc_lock::ols_lock was enqueued */
254         int                      ols_flags;
255         /** osc_lock::ols_lock handle */
256         struct lustre_handle     ols_handle;
257         struct ldlm_enqueue_info ols_einfo;
258         enum osc_lock_state      ols_state;
259
260         /**
261          * How many pages are using this lock for io, currently only used by
262          * read-ahead. If non-zero, the underlying dlm lock won't be cancelled
263          * during recovery to avoid deadlock. see bz16774.
264          *
265          * \see osc_page::ops_lock
266          * \see osc_page_addref_lock(), osc_page_putref_lock()
267          */
268         cfs_atomic_t             ols_pageref;
269
270         /**
271          * true, if ldlm_lock_addref() was called against
272          * osc_lock::ols_lock. This is used for sanity checking.
273          *
274          * \see osc_lock::ols_has_ref
275          */
276         unsigned                  ols_hold :1,
277         /**
278          * this is much like osc_lock::ols_hold, except that this bit is
279          * cleared _after_ reference in released in osc_lock_unuse(). This
280          * fine distinction is needed because:
281          *
282          *     - if ldlm lock still has a reference, osc_ast_data_get() needs
283          *       to return associated cl_lock (so that a flag is needed that is
284          *       cleared after ldlm_lock_decref() returned), and
285          *
286          *     - ldlm_lock_decref() can invoke blocking ast (for a
287          *       LDLM_FL_CBPENDING lock), and osc_lock functions like
288          *       osc_lock_cancel() called from there need to know whether to
289          *       release lock reference (so that a flag is needed that is
290          *       cleared before ldlm_lock_decref() is called).
291          */
292                                  ols_has_ref:1,
293         /**
294          * inherit the lockless attribute from top level cl_io.
295          * If true, osc_lock_enqueue is able to tolerate the -EUSERS error.
296          */
297                                  ols_locklessable:1,
298         /**
299          * set by osc_lock_use() to wait until blocking AST enters into
300          * osc_ldlm_blocking_ast0(), so that cl_lock mutex can be used for
301          * further synchronization.
302          */
303                                  ols_ast_wait:1,
304         /**
305          * If the data of this lock has been flushed to server side.
306          */
307                                  ols_flush:1,
308         /**
309          * if set, the osc_lock is a glimpse lock. For glimpse locks, we treat
310          * the EVAVAIL error as torerable, this will make upper logic happy
311          * to wait all glimpse locks to each OSTs to be completed.
312          * Glimpse lock converts to normal lock if the server lock is
313          * granted.
314          * Glimpse lock should be destroyed immediately after use.
315          */
316                                  ols_glimpse:1,
317         /**
318          * For async glimpse lock.
319          */
320                                  ols_agl:1;
321         /**
322          * IO that owns this lock. This field is used for a dead-lock
323          * avoidance by osc_lock_enqueue_wait().
324          *
325          * XXX: unfortunately, the owner of a osc_lock is not unique, 
326          * the lock may have multiple users, if the lock is granted and
327          * then matched.
328          */
329         struct osc_io           *ols_owner;
330 };
331
332
333 /**
334  * Page state private for osc layer.
335  */
336 struct osc_page {
337         struct cl_page_slice  ops_cl;
338         /**
339          * Page queues used by osc to detect when RPC can be formed.
340          */
341         struct osc_async_page ops_oap;
342         /**
343          * An offset within page from which next transfer starts. This is used
344          * by cl_page_clip() to submit partial page transfers.
345          */
346         int                   ops_from;
347         /**
348          * An offset within page at which next transfer ends.
349          *
350          * \see osc_page::ops_from.
351          */
352         int                   ops_to;
353         /**
354          * Boolean, true iff page is under transfer. Used for sanity checking.
355          */
356         unsigned              ops_transfer_pinned:1,
357         /**
358          * True for a `temporary page' created by read-ahead code, probably
359          * outside of any DLM lock.
360          */
361                               ops_temp:1,
362         /**
363          * Set if the page must be transferred with OBD_BRW_SRVLOCK.
364          */
365                               ops_srvlock:1;
366         /**
367          * Linkage into a per-osc_object list of pages in flight. For
368          * debugging.
369          */
370         cfs_list_t            ops_inflight;
371         /**
372          * Thread that submitted this page for transfer. For debugging.
373          */
374         cfs_task_t           *ops_submitter;
375         /**
376          * Submit time - the time when the page is starting RPC. For debugging.
377          */
378         cfs_time_t            ops_submit_time;
379
380         /**
381          * A lock of which we hold a reference covers this page. Only used by
382          * read-ahead: for a readahead page, we hold it's covering lock to
383          * prevent it from being canceled during recovery.
384          *
385          * \see osc_lock::ols_pageref
386          * \see osc_page_addref_lock(), osc_page_putref_lock().
387          */
388         struct cl_lock       *ops_lock;
389 };
390
391 extern cfs_mem_cache_t *osc_page_kmem;
392 extern cfs_mem_cache_t *osc_lock_kmem;
393 extern cfs_mem_cache_t *osc_object_kmem;
394 extern cfs_mem_cache_t *osc_thread_kmem;
395 extern cfs_mem_cache_t *osc_session_kmem;
396 extern cfs_mem_cache_t *osc_req_kmem;
397 extern cfs_mem_cache_t *osc_extent_kmem;
398
399 extern struct lu_device_type osc_device_type;
400 extern struct lu_context_key osc_key;
401 extern struct lu_context_key osc_session_key;
402
403 #define OSC_FLAGS (ASYNC_URGENT|ASYNC_READY)
404
405 int osc_lock_init(const struct lu_env *env,
406                   struct cl_object *obj, struct cl_lock *lock,
407                   const struct cl_io *io);
408 int osc_io_init  (const struct lu_env *env,
409                   struct cl_object *obj, struct cl_io *io);
410 int osc_req_init (const struct lu_env *env, struct cl_device *dev,
411                   struct cl_req *req);
412 struct lu_object *osc_object_alloc(const struct lu_env *env,
413                                    const struct lu_object_header *hdr,
414                                    struct lu_device *dev);
415 struct cl_page   *osc_page_init   (const struct lu_env *env,
416                                    struct cl_object *obj,
417                                    struct cl_page *page, cfs_page_t *vmpage);
418
419 void osc_lock_build_res(const struct lu_env *env, const struct osc_object *obj,
420                         struct ldlm_res_id *resname);
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_page_submit(const struct lu_env *env, struct osc_page *opg,
427                      enum cl_req_type crt, int brw_flags);
428 int osc_cancel_async_page(const struct lu_env *env, struct osc_page *ops);
429 int osc_set_async_flags(struct osc_object *obj, struct osc_page *opg,
430                         obd_flag async_flags);
431 int osc_prep_async_page(struct osc_object *osc, struct osc_page *ops,
432                         cfs_page_t *page, loff_t offset);
433 int osc_queue_async_io(const struct lu_env *env, struct cl_io *io,
434                        struct osc_page *ops);
435 int osc_teardown_async_page(const struct lu_env *env, struct osc_object *obj,
436                             struct osc_page *ops);
437 int osc_flush_async_page(const struct lu_env *env, struct cl_io *io,
438                          struct osc_page *ops);
439 int osc_queue_sync_pages(const struct lu_env *env, struct osc_object *obj,
440                          cfs_list_t *list, int cmd, int brw_flags);
441 int osc_cache_truncate_start(const struct lu_env *env, struct osc_io *oio,
442                              struct osc_object *obj, __u64 size);
443 void osc_cache_truncate_end(const struct lu_env *env, struct osc_io *oio,
444                             struct osc_object *obj);
445 int osc_cache_writeback_range(const struct lu_env *env, struct osc_object *obj,
446                               pgoff_t start, pgoff_t end, int hp, int discard);
447 int osc_cache_wait_range(const struct lu_env *env, struct osc_object *obj,
448                          pgoff_t start, pgoff_t end);
449 void osc_io_unplug(const struct lu_env *env, struct client_obd *cli,
450                    struct osc_object *osc, pdl_policy_t pol);
451
452 void osc_object_set_contended  (struct osc_object *obj);
453 void osc_object_clear_contended(struct osc_object *obj);
454 int  osc_object_is_contended   (struct osc_object *obj);
455
456 int  osc_lock_is_lockless      (const struct osc_lock *olck);
457
458 /*****************************************************************************
459  *
460  * Accessors.
461  *
462  */
463
464 static inline struct osc_thread_info *osc_env_info(const struct lu_env *env)
465 {
466         struct osc_thread_info *info;
467
468         info = lu_context_key_get(&env->le_ctx, &osc_key);
469         LASSERT(info != NULL);
470         return info;
471 }
472
473 static inline struct osc_session *osc_env_session(const struct lu_env *env)
474 {
475         struct osc_session *ses;
476
477         ses = lu_context_key_get(env->le_ses, &osc_session_key);
478         LASSERT(ses != NULL);
479         return ses;
480 }
481
482 static inline struct osc_io *osc_env_io(const struct lu_env *env)
483 {
484         return &osc_env_session(env)->os_io;
485 }
486
487 static inline int osc_is_object(const struct lu_object *obj)
488 {
489         return obj->lo_dev->ld_type == &osc_device_type;
490 }
491
492 static inline struct osc_device *lu2osc_dev(const struct lu_device *d)
493 {
494         LINVRNT(d->ld_type == &osc_device_type);
495         return container_of0(d, struct osc_device, od_cl.cd_lu_dev);
496 }
497
498 static inline struct obd_export *osc_export(const struct osc_object *obj)
499 {
500         return lu2osc_dev(obj->oo_cl.co_lu.lo_dev)->od_exp;
501 }
502
503 static inline struct client_obd *osc_cli(const struct osc_object *obj)
504 {
505         return &osc_export(obj)->exp_obd->u.cli;
506 }
507
508 static inline struct osc_object *cl2osc(const struct cl_object *obj)
509 {
510         LINVRNT(osc_is_object(&obj->co_lu));
511         return container_of0(obj, struct osc_object, oo_cl);
512 }
513
514 static inline struct cl_object *osc2cl(const struct osc_object *obj)
515 {
516         return (struct cl_object *)&obj->oo_cl;
517 }
518
519 static inline ldlm_mode_t osc_cl_lock2ldlm(enum cl_lock_mode mode)
520 {
521         LASSERT(mode == CLM_READ || mode == CLM_WRITE || mode == CLM_GROUP);
522         if (mode == CLM_READ)
523                 return LCK_PR;
524         else if (mode == CLM_WRITE)
525                 return LCK_PW;
526         else
527                 return LCK_GROUP;
528 }
529
530 static inline enum cl_lock_mode osc_ldlm2cl_lock(ldlm_mode_t mode)
531 {
532         LASSERT(mode == LCK_PR || mode == LCK_PW || mode == LCK_GROUP);
533         if (mode == LCK_PR)
534                 return CLM_READ;
535         else if (mode == LCK_PW)
536                 return CLM_WRITE;
537         else
538                 return CLM_GROUP;
539 }
540
541 static inline struct osc_page *cl2osc_page(const struct cl_page_slice *slice)
542 {
543         LINVRNT(osc_is_object(&slice->cpl_obj->co_lu));
544         return container_of0(slice, struct osc_page, ops_cl);
545 }
546
547 static inline struct osc_page *oap2osc(struct osc_async_page *oap)
548 {
549         return container_of0(oap, struct osc_page, ops_oap);
550 }
551
552 static inline struct cl_page *oap2cl_page(struct osc_async_page *oap)
553 {
554         return oap2osc(oap)->ops_cl.cpl_page;
555 }
556
557 static inline struct osc_page *oap2osc_page(struct osc_async_page *oap)
558 {
559         return (struct osc_page *)container_of(oap, struct osc_page, ops_oap);
560 }
561
562 static inline struct osc_lock *cl2osc_lock(const struct cl_lock_slice *slice)
563 {
564         LINVRNT(osc_is_object(&slice->cls_obj->co_lu));
565         return container_of0(slice, struct osc_lock, ols_cl);
566 }
567
568 static inline struct osc_lock *osc_lock_at(const struct cl_lock *lock)
569 {
570         return cl2osc_lock(cl_lock_at(lock, &osc_device_type));
571 }
572
573 static inline int osc_io_srvlock(struct osc_io *oio)
574 {
575         return (oio->oi_lockless && !oio->oi_cl.cis_io->ci_no_srvlock);
576 }
577
578 enum osc_extent_state {
579         OES_INV       = 0, /** extent is just initialized or destroyed */
580         OES_ACTIVE    = 1, /** process is using this extent */
581         OES_CACHE     = 2, /** extent is ready for IO */
582         OES_LOCKING   = 3, /** locking page to prepare IO */
583         OES_LOCK_DONE = 4, /** locking finished, ready to send */
584         OES_RPC       = 5, /** in RPC */
585         OES_TRUNC     = 6, /** being truncated */
586         OES_STATE_MAX
587 };
588 #define OES_STRINGS { "inv", "active", "cache", "locking", "lockdone", "rpc", \
589                       "trunc", NULL }
590
591 /**
592  * osc_extent data to manage dirty pages.
593  * osc_extent has the following attributes:
594  * 1. all pages in the same must be in one RPC in write back;
595  * 2. # of pages must be less than max_pages_per_rpc - implied by 1;
596  * 3. must be covered by only 1 osc_lock;
597  * 4. exclusive. It's impossible to have overlapped osc_extent.
598  *
599  * The lifetime of an extent is from when the 1st page is dirtied to when
600  * all pages inside it are written out.
601  *
602  * LOCKING ORDER
603  * =============
604  * page lock -> client_obd_list_lock -> object lock(osc_object::oo_lock)
605  */
606 struct osc_extent {
607         /** red-black tree node */
608         struct rb_node     oe_node;
609         /** osc_object of this extent */
610         struct osc_object *oe_obj;
611         /** refcount, removed from red-black tree if reaches zero. */
612         cfs_atomic_t       oe_refc;
613         /** busy if non-zero */
614         cfs_atomic_t       oe_users;
615         /** link list of osc_object's oo_{hp|urgent|locking}_exts. */
616         cfs_list_t       oe_link;
617         /** state of this extent */
618         unsigned int       oe_state;
619         /** flags for this extent. */
620         unsigned int       oe_intree:1,
621         /** 0 is write, 1 is read */
622                            oe_rw:1,
623                            oe_srvlock:1,
624                            oe_memalloc:1,
625         /** an ACTIVE extent is going to be truncated, so when this extent
626          * is released, it will turn into TRUNC state instead of CACHE. */
627                            oe_trunc_pending:1,
628         /** this extent should be written asap and someone may wait for the
629          * write to finish. This bit is usually set along with urgent if
630          * the extent was CACHE state.
631          * fsync_wait extent can't be merged because new extent region may
632          * exceed fsync range. */
633                            oe_fsync_wait:1,
634         /** covering lock is being canceled */
635                            oe_hp:1,
636         /** this extent should be written back asap. set if one of pages is
637          * called by page WB daemon, or sync write or reading requests. */
638                            oe_urgent:1;
639         /** how many grants allocated for this extent.
640          *  Grant allocated for this extent. There is no grant allocated
641          *  for reading extents and sync write extents. */
642         unsigned int       oe_grants;
643         /** # of dirty pages in this extent */
644         unsigned int       oe_nr_pages;
645         /** list of pending oap pages. Pages in this list are NOT sorted. */
646         cfs_list_t         oe_pages;
647         /** Since an extent has to be written out in atomic, this is used to
648          * remember the next page need to be locked to write this extent out.
649          * Not used right now.
650          */
651         struct osc_page   *oe_next_page;
652         /** start and end index of this extent, include start and end
653          * themselves. Page offset here is the page index of osc_pages.
654          * oe_start is used as keyword for red-black tree. */
655         pgoff_t            oe_start;
656         pgoff_t            oe_end;
657         /** maximum ending index of this extent, this is limited by
658          * max_pages_per_rpc, lock extent and chunk size. */
659         pgoff_t            oe_max_end;
660         /** waitqueue - for those who want to be notified if this extent's
661          * state has changed. */
662         cfs_waitq_t        oe_waitq;
663         /** lock covering this extent */
664         struct cl_lock    *oe_osclock;
665         /** terminator of this extent. Must be true if this extent is in IO. */
666         cfs_task_t        *oe_owner;
667         /** return value of writeback. If somebody is waiting for this extent,
668          * this value can be known by outside world. */
669         int                oe_rc;
670         /** max pages per rpc when this extent was created */
671         unsigned int       oe_mppr;
672 };
673
674 int osc_extent_finish(const struct lu_env *env, struct osc_extent *ext,
675                       int sent, int rc);
676 int osc_extent_release(const struct lu_env *env, struct osc_extent *ext);
677
678 /** @} osc */
679
680 #endif /* OSC_CL_INTERNAL_H */