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