Whamcloud - gitweb
LU-3285 mdc: add IO stats in mdc
[fs/lustre-release.git] / lustre / include / lustre_osc.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.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 2016, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  */
32 /*
33  * lustre/include/lustre_osc.h
34  *
35  * OSC layer structures and methods common for both OSC and MDC.
36  *
37  * This file contains OSC interfaces used by OSC and MDC. Most of them
38  * were just moved from lustre/osc/osc_cl_internal.h for Data-on-MDT
39  * purposes.
40  *
41  *   Author: Nikita Danilov <nikita.danilov@sun.com>
42  *   Author: Jinshan Xiong <jinshan.xiong@whamcloud.com>
43  *   Author: Mikhail Pershin <mike.pershin@intel.com>
44  */
45
46 #ifndef LUSTRE_OSC_H
47 #define LUSTRE_OSC_H
48
49 #include <libcfs/libcfs.h>
50 #include <obd.h>
51 #include <cl_object.h>
52
53 /** \defgroup osc osc
54  *  @{
55  */
56
57 struct osc_quota_info {
58         /** linkage for quota hash table */
59         struct hlist_node oqi_hash;
60         __u32             oqi_id;
61 };
62
63 enum async_flags {
64         ASYNC_READY = 0x1, /* ap_make_ready will not be called before this
65                               page is added to an rpc */
66         ASYNC_URGENT = 0x2, /* page must be put into an RPC before return */
67         ASYNC_COUNT_STABLE = 0x4, /* ap_refresh_count will not be called
68                                      to give the caller a chance to update
69                                      or cancel the size of the io */
70         ASYNC_HP = 0x10,
71 };
72
73 struct osc_async_page {
74         int                     oap_magic;
75         unsigned short          oap_cmd;
76         unsigned short          oap_interrupted:1;
77
78         struct list_head        oap_pending_item;
79         struct list_head        oap_rpc_item;
80
81         loff_t                  oap_obj_off;
82         unsigned                oap_page_off;
83         enum async_flags        oap_async_flags;
84
85         struct brw_page         oap_brw_page;
86
87         struct ptlrpc_request   *oap_request;
88         struct client_obd       *oap_cli;
89         struct osc_object       *oap_obj;
90
91         spinlock_t               oap_lock;
92 };
93
94 #define oap_page        oap_brw_page.pg
95 #define oap_count       oap_brw_page.count
96 #define oap_brw_flags   oap_brw_page.flag
97
98 static inline struct osc_async_page *brw_page2oap(struct brw_page *pga)
99 {
100         return container_of(pga, struct osc_async_page, oap_brw_page);
101 }
102
103 struct osc_cache_waiter {
104         struct list_head        ocw_entry;
105         wait_queue_head_t       ocw_waitq;
106         struct osc_async_page   *ocw_oap;
107         int                     ocw_grant;
108         int                     ocw_rc;
109 };
110
111 struct osc_device {
112         struct cl_device        od_cl;
113         struct obd_export       *od_exp;
114
115         /* Write stats is actually protected by client_obd's lock. */
116         struct osc_stats {
117                 uint64_t        os_lockless_writes;    /* by bytes */
118                 uint64_t        os_lockless_reads;     /* by bytes */
119                 uint64_t        os_lockless_truncates; /* by times */
120         } od_stats;
121
122         /* configuration item(s) */
123         int                     od_contention_time;
124         int                     od_lockless_truncate;
125 };
126
127 struct osc_extent;
128
129 /**
130  * State maintained by osc layer for each IO context.
131  */
132 struct osc_io {
133         /** super class */
134         struct cl_io_slice oi_cl;
135         /** true if this io is lockless. */
136         unsigned int       oi_lockless:1,
137         /** true if this io is counted as active IO */
138                            oi_is_active:1;
139         /** how many LRU pages are reserved for this IO */
140         unsigned long      oi_lru_reserved;
141
142         /** active extents, we know how many bytes is going to be written,
143          * so having an active extent will prevent it from being fragmented */
144         struct osc_extent *oi_active;
145         /** partially truncated extent, we need to hold this extent to prevent
146          * page writeback from happening. */
147         struct osc_extent *oi_trunc;
148         /** write osc_lock for this IO, used by osc_extent_find(). */
149         struct osc_lock   *oi_write_osclock;
150         struct obdo        oi_oa;
151         struct osc_async_cbargs {
152                 bool              opc_rpc_sent;
153                 int               opc_rc;
154                 struct completion opc_sync;
155         } oi_cbarg;
156 };
157
158 /**
159  * State maintained by osc layer for the duration of a system call.
160  */
161 struct osc_session {
162         struct osc_io os_io;
163 };
164
165 #define OTI_PVEC_SIZE 256
166 struct osc_thread_info {
167         struct ldlm_res_id      oti_resname;
168         union ldlm_policy_data  oti_policy;
169         struct cl_lock_descr    oti_descr;
170         struct cl_attr          oti_attr;
171         struct lustre_handle    oti_handle;
172         struct cl_page_list     oti_plist;
173         struct cl_io            oti_io;
174         void                    *oti_pvec[OTI_PVEC_SIZE];
175         /**
176          * Fields used by cl_lock_discard_pages().
177          */
178         pgoff_t                 oti_next_index;
179         pgoff_t                 oti_fn_index; /* first non-overlapped index */
180         struct cl_sync_io       oti_anchor;
181         struct cl_req_attr      oti_req_attr;
182         struct lu_buf           oti_ladvise_buf;
183 };
184
185 static inline __u64 osc_enq2ldlm_flags(__u32 enqflags)
186 {
187         __u64 result = 0;
188
189         CDEBUG(D_DLMTRACE, "flags: %x\n", enqflags);
190
191         LASSERT((enqflags & ~CEF_MASK) == 0);
192
193         if (enqflags & CEF_NONBLOCK)
194                 result |= LDLM_FL_BLOCK_NOWAIT;
195         if (enqflags & CEF_GLIMPSE)
196                 result |= LDLM_FL_HAS_INTENT;
197         if (enqflags & CEF_DISCARD_DATA)
198                 result |= LDLM_FL_AST_DISCARD_DATA;
199         if (enqflags & CEF_PEEK)
200                 result |= LDLM_FL_TEST_LOCK;
201         if (enqflags & CEF_LOCK_MATCH)
202                 result |= LDLM_FL_MATCH_LOCK;
203         if (enqflags & CEF_LOCK_NO_EXPAND)
204                 result |= LDLM_FL_NO_EXPANSION;
205         if (enqflags & CEF_SPECULATIVE)
206                 result |= LDLM_FL_SPECULATIVE;
207         return result;
208 }
209
210 typedef int (*osc_enqueue_upcall_f)(void *cookie, struct lustre_handle *lockh,
211                                     int rc);
212
213 struct osc_enqueue_args {
214         struct obd_export       *oa_exp;
215         enum ldlm_type          oa_type;
216         enum ldlm_mode          oa_mode;
217         __u64                   *oa_flags;
218         osc_enqueue_upcall_f    oa_upcall;
219         void                    *oa_cookie;
220         struct ost_lvb          *oa_lvb;
221         struct lustre_handle    oa_lockh;
222         bool                    oa_speculative;
223 };
224
225 /**
226  * Bit flags for osc_dlm_lock_at_pageoff().
227  */
228 enum osc_dap_flags {
229         /**
230          * Just check if the desired lock exists, it won't hold reference
231          * count on lock.
232          */
233         OSC_DAP_FL_TEST_LOCK = 1 << 0,
234         /**
235          * Return the lock even if it is being canceled.
236          */
237         OSC_DAP_FL_CANCELING = 1 << 1
238 };
239
240 /*
241  * The set of operations which are different for MDC and OSC objects
242  */
243 struct osc_object_operations {
244         void (*oto_build_res_name)(struct osc_object *osc,
245                                    struct ldlm_res_id *resname);
246         struct ldlm_lock* (*oto_dlmlock_at_pgoff)(const struct lu_env *env,
247                                                 struct osc_object *obj,
248                                                 pgoff_t index,
249                                                 enum osc_dap_flags dap_flags);
250 };
251
252 struct osc_object {
253         struct cl_object        oo_cl;
254         struct lov_oinfo        *oo_oinfo;
255         /**
256          * True if locking against this stripe got -EUSERS.
257          */
258         int                     oo_contended;
259         cfs_time_t              oo_contention_time;
260 #ifdef CONFIG_LUSTRE_DEBUG_EXPENSIVE_CHECK
261         /**
262          * IO context used for invariant checks in osc_lock_has_pages().
263          */
264         struct cl_io            oo_debug_io;
265         /** Serialization object for osc_object::oo_debug_io. */
266         struct mutex            oo_debug_mutex;
267 #endif
268         /**
269          * used by the osc to keep track of what objects to build into rpcs.
270          * Protected by client_obd->cli_loi_list_lock.
271          */
272         struct list_head        oo_ready_item;
273         struct list_head        oo_hp_ready_item;
274         struct list_head        oo_write_item;
275         struct list_head        oo_read_item;
276
277         /**
278          * extent is a red black tree to manage (async) dirty pages.
279          */
280         struct rb_root          oo_root;
281         /**
282          * Manage write(dirty) extents.
283          */
284         struct list_head        oo_hp_exts;     /* list of hp extents */
285         struct list_head        oo_urgent_exts; /* list of writeback extents */
286         struct list_head        oo_full_exts;
287
288         struct list_head        oo_reading_exts;
289
290         atomic_t                oo_nr_reads;
291         atomic_t                oo_nr_writes;
292
293         /** Protect extent tree. Will be used to protect
294          * oo_{read|write}_pages soon. */
295         spinlock_t              oo_lock;
296
297         /**
298          * Radix tree for caching pages
299          */
300         spinlock_t              oo_tree_lock;
301         struct radix_tree_root  oo_tree;
302         unsigned long           oo_npages;
303
304         /* Protect osc_lock this osc_object has */
305         struct list_head        oo_ol_list;
306         spinlock_t              oo_ol_spin;
307
308         /** number of active IOs of this object */
309         atomic_t                oo_nr_ios;
310         wait_queue_head_t       oo_io_waitq;
311
312         const struct osc_object_operations *oo_obj_ops;
313         bool                    oo_initialized;
314 };
315
316 static inline void osc_build_res_name(struct osc_object *osc,
317                                       struct ldlm_res_id *resname)
318 {
319         return osc->oo_obj_ops->oto_build_res_name(osc, resname);
320 }
321
322 static inline struct ldlm_lock *osc_dlmlock_at_pgoff(const struct lu_env *env,
323                                                     struct osc_object *obj,
324                                                     pgoff_t index,
325                                                     enum osc_dap_flags flags)
326 {
327         return obj->oo_obj_ops->oto_dlmlock_at_pgoff(env, obj, index, flags);
328 }
329
330 static inline void osc_object_lock(struct osc_object *obj)
331 {
332         spin_lock(&obj->oo_lock);
333 }
334
335 static inline int osc_object_trylock(struct osc_object *obj)
336 {
337         return spin_trylock(&obj->oo_lock);
338 }
339
340 static inline void osc_object_unlock(struct osc_object *obj)
341 {
342         spin_unlock(&obj->oo_lock);
343 }
344
345 static inline int osc_object_is_locked(struct osc_object *obj)
346 {
347 #if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_SPINLOCK)
348         return spin_is_locked(&obj->oo_lock);
349 #else
350         /*
351          * It is not perfect to return true all the time.
352          * But since this function is only used for assertion
353          * and checking, it seems OK.
354          */
355         return 1;
356 #endif
357 }
358
359 static inline void osc_object_set_contended(struct osc_object *obj)
360 {
361         obj->oo_contention_time = cfs_time_current();
362         /* mb(); */
363         obj->oo_contended = 1;
364 }
365
366 static inline void osc_object_clear_contended(struct osc_object *obj)
367 {
368         obj->oo_contended = 0;
369 }
370
371 /*
372  * Lock "micro-states" for osc layer.
373  */
374 enum osc_lock_state {
375         OLS_NEW,
376         OLS_ENQUEUED,
377         OLS_UPCALL_RECEIVED,
378         OLS_GRANTED,
379         OLS_CANCELLED
380 };
381
382 /**
383  * osc-private state of cl_lock.
384  *
385  * Interaction with DLM.
386  *
387  * Once receive upcall is invoked, osc_lock remembers a handle of DLM lock in
388  * osc_lock::ols_handle and a pointer to that lock in osc_lock::ols_dlmlock.
389  *
390  * This pointer is protected through a reference, acquired by
391  * osc_lock_upcall0(). Also, an additional reference is acquired by
392  * ldlm_lock_addref() call protecting the lock from cancellation, until
393  * osc_lock_unuse() releases it.
394  *
395  * Below is a description of how lock references are acquired and released
396  * inside of DLM.
397  *
398  * - When new lock is created and enqueued to the server (ldlm_cli_enqueue())
399  *      - ldlm_lock_create()
400  *          - ldlm_lock_new(): initializes a lock with 2 references. One for
401  *            the caller (released when reply from the server is received, or on
402  *            error), and another for the hash table.
403  *      - ldlm_lock_addref_internal(): protects the lock from cancellation.
404  *
405  * - When reply is received from the server (osc_enqueue_interpret())
406  *      - ldlm_cli_enqueue_fini()
407  *          - LDLM_LOCK_PUT(): releases caller reference acquired by
408  *            ldlm_lock_new().
409  *          - if (rc != 0)
410  *                ldlm_lock_decref(): error case: matches ldlm_cli_enqueue().
411  *      - ldlm_lock_decref(): for async locks, matches ldlm_cli_enqueue().
412  *
413  * - When lock is being cancelled (ldlm_lock_cancel())
414  *      - ldlm_lock_destroy()
415  *          - LDLM_LOCK_PUT(): releases hash-table reference acquired by
416  *            ldlm_lock_new().
417  *
418  * osc_lock is detached from ldlm_lock by osc_lock_detach() that is called
419  * either when lock is cancelled (osc_lock_blocking()), or when locks is
420  * deleted without cancellation (e.g., from cl_locks_prune()). In the latter
421  * case ldlm lock remains in memory, and can be re-attached to osc_lock in the
422  * future.
423  */
424 struct osc_lock {
425         struct cl_lock_slice    ols_cl;
426         /** Internal lock to protect states, etc. */
427         spinlock_t              ols_lock;
428         /** Owner sleeps on this channel for state change */
429         struct cl_sync_io       *ols_owner;
430         /** waiting list for this lock to be cancelled */
431         struct list_head        ols_waiting_list;
432         /** wait entry of ols_waiting_list */
433         struct list_head        ols_wait_entry;
434         /** list entry for osc_object::oo_ol_list */
435         struct list_head        ols_nextlock_oscobj;
436
437         /** underlying DLM lock */
438         struct ldlm_lock        *ols_dlmlock;
439         /** DLM flags with which osc_lock::ols_lock was enqueued */
440         __u64                   ols_flags;
441         /** osc_lock::ols_lock handle */
442         struct lustre_handle    ols_handle;
443         struct ldlm_enqueue_info ols_einfo;
444         enum osc_lock_state     ols_state;
445         /** lock value block */
446         struct ost_lvb          ols_lvb;
447         /** Lockless operations to be used by lockless lock */
448         const struct cl_lock_operations *ols_lockless_ops;
449         /**
450          * true, if ldlm_lock_addref() was called against
451          * osc_lock::ols_lock. This is used for sanity checking.
452          *
453          * \see osc_lock::ols_has_ref
454          */
455         unsigned                ols_hold :1,
456         /**
457          * this is much like osc_lock::ols_hold, except that this bit is
458          * cleared _after_ reference in released in osc_lock_unuse(). This
459          * fine distinction is needed because:
460          *
461          *     - if ldlm lock still has a reference, osc_ast_data_get() needs
462          *       to return associated cl_lock (so that a flag is needed that is
463          *       cleared after ldlm_lock_decref() returned), and
464          *
465          *     - ldlm_lock_decref() can invoke blocking ast (for a
466          *       LDLM_FL_CBPENDING lock), and osc_lock functions like
467          *       osc_lock_cancel() called from there need to know whether to
468          *       release lock reference (so that a flag is needed that is
469          *       cleared before ldlm_lock_decref() is called).
470          */
471                                 ols_has_ref:1,
472         /**
473          * inherit the lockless attribute from top level cl_io.
474          * If true, osc_lock_enqueue is able to tolerate the -EUSERS error.
475          */
476                                 ols_locklessable:1,
477         /**
478          * if set, the osc_lock is a glimpse lock. For glimpse locks, we treat
479          * the EVAVAIL error as torerable, this will make upper logic happy
480          * to wait all glimpse locks to each OSTs to be completed.
481          * Glimpse lock converts to normal lock if the server lock is granted.
482          * Glimpse lock should be destroyed immediately after use.
483          */
484                                 ols_glimpse:1,
485         /**
486          * For async glimpse lock.
487          */
488                                 ols_agl:1,
489         /**
490          * for speculative locks - asynchronous glimpse locks and ladvise
491          * lockahead manual lock requests
492          *
493          * Used to tell osc layer to not wait for the ldlm reply from the
494          * server, so the osc lock will be short lived - It only exists to
495          * create the ldlm request and is not updated on request completion.
496          */
497                                 ols_speculative:1;
498 };
499
500 static inline int osc_lock_is_lockless(const struct osc_lock *ols)
501 {
502         return (ols->ols_cl.cls_ops == ols->ols_lockless_ops);
503 }
504
505 /**
506  * Page state private for osc layer.
507  */
508 struct osc_page {
509         struct cl_page_slice  ops_cl;
510         /**
511          * Page queues used by osc to detect when RPC can be formed.
512          */
513         struct osc_async_page ops_oap;
514         /**
515          * An offset within page from which next transfer starts. This is used
516          * by cl_page_clip() to submit partial page transfers.
517          */
518         int                   ops_from;
519         /**
520          * An offset within page at which next transfer ends.
521          *
522          * \see osc_page::ops_from.
523          */
524         int                   ops_to;
525         /**
526          * Boolean, true iff page is under transfer. Used for sanity checking.
527          */
528         unsigned              ops_transfer_pinned:1,
529         /**
530          * in LRU?
531          */
532                                 ops_in_lru:1,
533         /**
534          * Set if the page must be transferred with OBD_BRW_SRVLOCK.
535          */
536                                 ops_srvlock:1;
537         /**
538          * lru page list. See osc_lru_{del|use}() in osc_page.c for usage.
539          */
540         struct list_head        ops_lru;
541         /**
542          * Submit time - the time when the page is starting RPC. For debugging.
543          */
544         cfs_time_t              ops_submit_time;
545 };
546
547 extern struct kmem_cache *osc_lock_kmem;
548 extern struct kmem_cache *osc_object_kmem;
549 extern struct kmem_cache *osc_thread_kmem;
550 extern struct kmem_cache *osc_session_kmem;
551 extern struct kmem_cache *osc_extent_kmem;
552 extern struct kmem_cache *osc_quota_kmem;
553
554 extern struct lu_context_key osc_key;
555 extern struct lu_context_key osc_session_key;
556
557 #define OSC_FLAGS (ASYNC_URGENT|ASYNC_READY)
558
559 /* osc_page.c */
560 int osc_page_init(const struct lu_env *env, struct cl_object *obj,
561                   struct cl_page *page, pgoff_t ind);
562 void osc_index2policy(union ldlm_policy_data *policy, const struct cl_object *obj,
563                       pgoff_t start, pgoff_t end);
564 void osc_lru_add_batch(struct client_obd *cli, struct list_head *list);
565 void osc_page_submit(const struct lu_env *env, struct osc_page *opg,
566                      enum cl_req_type crt, int brw_flags);
567 int lru_queue_work(const struct lu_env *env, void *data);
568 long osc_lru_shrink(const struct lu_env *env, struct client_obd *cli,
569                     long target, bool force);
570
571 /* osc_cache.c */
572 int osc_cancel_async_page(const struct lu_env *env, struct osc_page *ops);
573 int osc_set_async_flags(struct osc_object *obj, struct osc_page *opg,
574                         u32 async_flags);
575 int osc_prep_async_page(struct osc_object *osc, struct osc_page *ops,
576                         struct page *page, loff_t offset);
577 int osc_queue_async_io(const struct lu_env *env, struct cl_io *io,
578                        struct osc_page *ops);
579 int osc_page_cache_add(const struct lu_env *env,
580                        const struct cl_page_slice *slice, struct cl_io *io);
581 int osc_teardown_async_page(const struct lu_env *env, struct osc_object *obj,
582                             struct osc_page *ops);
583 int osc_flush_async_page(const struct lu_env *env, struct cl_io *io,
584                          struct osc_page *ops);
585 int osc_queue_sync_pages(const struct lu_env *env, struct osc_object *obj,
586                          struct list_head *list, int cmd, int brw_flags);
587 int osc_cache_truncate_start(const struct lu_env *env, struct osc_object *obj,
588                              __u64 size, struct osc_extent **extp);
589 void osc_cache_truncate_end(const struct lu_env *env, struct osc_extent *ext);
590 int osc_cache_writeback_range(const struct lu_env *env, struct osc_object *obj,
591                               pgoff_t start, pgoff_t end, int hp, int discard);
592 int osc_cache_wait_range(const struct lu_env *env, struct osc_object *obj,
593                          pgoff_t start, pgoff_t end);
594 int osc_io_unplug0(const struct lu_env *env, struct client_obd *cli,
595                    struct osc_object *osc, int async);
596 void osc_wake_cache_waiters(struct client_obd *cli);
597
598 static inline int osc_io_unplug_async(const struct lu_env *env,
599                                       struct client_obd *cli,
600                                       struct osc_object *osc)
601 {
602         return osc_io_unplug0(env, cli, osc, 1);
603 }
604
605 static inline void osc_io_unplug(const struct lu_env *env,
606                                  struct client_obd *cli,
607                                  struct osc_object *osc)
608 {
609         (void)osc_io_unplug0(env, cli, osc, 0);
610 }
611
612 typedef int (*osc_page_gang_cbt)(const struct lu_env *, struct cl_io *,
613                                  struct osc_page *, void *);
614 int osc_page_gang_lookup(const struct lu_env *env, struct cl_io *io,
615                         struct osc_object *osc, pgoff_t start, pgoff_t end,
616                         osc_page_gang_cbt cb, void *cbdata);
617 int osc_discard_cb(const struct lu_env *env, struct cl_io *io,
618                    struct osc_page *ops, void *cbdata);
619
620 /* osc_dev.c */
621 int osc_device_init(const struct lu_env *env, struct lu_device *d,
622                     const char *name, struct lu_device *next);
623 struct lu_device *osc_device_fini(const struct lu_env *env,
624                                   struct lu_device *d);
625 struct lu_device *osc_device_free(const struct lu_env *env,
626                                   struct lu_device *d);
627
628 /* osc_object.c */
629 int osc_object_init(const struct lu_env *env, struct lu_object *obj,
630                     const struct lu_object_conf *conf);
631 void osc_object_free(const struct lu_env *env, struct lu_object *obj);
632 int osc_lvb_print(const struct lu_env *env, void *cookie,
633                   lu_printer_t p, const struct ost_lvb *lvb);
634 int osc_object_print(const struct lu_env *env, void *cookie,
635                      lu_printer_t p, const struct lu_object *obj);
636 int osc_attr_get(const struct lu_env *env, struct cl_object *obj,
637                  struct cl_attr *attr);
638 int osc_attr_update(const struct lu_env *env, struct cl_object *obj,
639                     const struct cl_attr *attr, unsigned valid);
640 int osc_object_glimpse(const struct lu_env *env, const struct cl_object *obj,
641                        struct ost_lvb *lvb);
642 int osc_object_invalidate(const struct lu_env *env, struct osc_object *osc);
643 int osc_object_is_contended(struct osc_object *obj);
644 int osc_object_find_cbdata(const struct lu_env *env, struct cl_object *obj,
645                            ldlm_iterator_t iter, void *data);
646 int osc_object_prune(const struct lu_env *env, struct cl_object *obj);
647
648 /* osc_request.c */
649 void osc_init_grant(struct client_obd *cli, struct obd_connect_data *ocd);
650 int osc_setup_common(struct obd_device *obd, struct lustre_cfg *lcfg);
651 int osc_precleanup_common(struct obd_device *obd);
652 int osc_cleanup_common(struct obd_device *obd);
653 int osc_set_info_async(const struct lu_env *env, struct obd_export *exp,
654                        u32 keylen, void *key, u32 vallen, void *val,
655                        struct ptlrpc_request_set *set);
656 int osc_ldlm_resource_invalidate(struct cfs_hash *hs, struct cfs_hash_bd *bd,
657                                  struct hlist_node *hnode, void *arg);
658
659 int osc_punch_send(struct obd_export *exp, struct obdo *oa,
660                    obd_enqueue_update_f upcall, void *cookie);
661
662 /* osc_io.c */
663 int osc_io_submit(const struct lu_env *env, const struct cl_io_slice *ios,
664                   enum cl_req_type crt, struct cl_2queue *queue);
665 int osc_io_commit_async(const struct lu_env *env,
666                         const struct cl_io_slice *ios,
667                         struct cl_page_list *qin, int from, int to,
668                         cl_commit_cbt cb);
669 int osc_io_iter_init(const struct lu_env *env, const struct cl_io_slice *ios);
670 void osc_io_iter_fini(const struct lu_env *env,
671                       const struct cl_io_slice *ios);
672 int osc_io_write_iter_init(const struct lu_env *env,
673                            const struct cl_io_slice *ios);
674 void osc_io_write_iter_fini(const struct lu_env *env,
675                             const struct cl_io_slice *ios);
676 int osc_io_fault_start(const struct lu_env *env, const struct cl_io_slice *ios);
677 void osc_io_setattr_end(const struct lu_env *env,
678                         const struct cl_io_slice *slice);
679 int osc_io_read_start(const struct lu_env *env,
680                       const struct cl_io_slice *slice);
681 int osc_io_write_start(const struct lu_env *env,
682                        const struct cl_io_slice *slice);
683 void osc_io_end(const struct lu_env *env, const struct cl_io_slice *slice);
684 int osc_io_fsync_start(const struct lu_env *env,
685                        const struct cl_io_slice *slice);
686 void osc_io_fsync_end(const struct lu_env *env,
687                       const struct cl_io_slice *slice);
688 void osc_read_ahead_release(const struct lu_env *env, void *cbdata);
689
690 /* osc_lock.c */
691 void osc_lock_to_lockless(const struct lu_env *env, struct osc_lock *ols,
692                           int force);
693 void osc_lock_wake_waiters(const struct lu_env *env, struct osc_object *osc,
694                            struct osc_lock *oscl);
695 int osc_lock_enqueue_wait(const struct lu_env *env, struct osc_object *obj,
696                           struct osc_lock *oscl);
697 void osc_lock_set_writer(const struct lu_env *env, const struct cl_io *io,
698                          struct cl_object *obj, struct osc_lock *oscl);
699 int osc_lock_print(const struct lu_env *env, void *cookie,
700                    lu_printer_t p, const struct cl_lock_slice *slice);
701 void osc_lock_cancel(const struct lu_env *env,
702                      const struct cl_lock_slice *slice);
703 void osc_lock_fini(const struct lu_env *env, struct cl_lock_slice *slice);
704 int osc_ldlm_glimpse_ast(struct ldlm_lock *dlmlock, void *data);
705
706 /*****************************************************************************
707  *
708  * Accessors and type conversions.
709  *
710  */
711 static inline struct osc_thread_info *osc_env_info(const struct lu_env *env)
712 {
713         struct osc_thread_info *info;
714
715         info = lu_context_key_get(&env->le_ctx, &osc_key);
716         LASSERT(info != NULL);
717         return info;
718 }
719
720 static inline struct osc_session *osc_env_session(const struct lu_env *env)
721 {
722         struct osc_session *ses;
723
724         ses = lu_context_key_get(env->le_ses, &osc_session_key);
725         LASSERT(ses != NULL);
726         return ses;
727 }
728
729 static inline struct osc_io *osc_env_io(const struct lu_env *env)
730 {
731         return &osc_env_session(env)->os_io;
732 }
733
734 static inline struct osc_device *lu2osc_dev(const struct lu_device *d)
735 {
736         return container_of0(d, struct osc_device, od_cl.cd_lu_dev);
737 }
738
739 static inline struct obd_export *osc_export(const struct osc_object *obj)
740 {
741         return lu2osc_dev(obj->oo_cl.co_lu.lo_dev)->od_exp;
742 }
743
744 static inline struct client_obd *osc_cli(const struct osc_object *obj)
745 {
746         return &osc_export(obj)->exp_obd->u.cli;
747 }
748
749 static inline struct osc_object *cl2osc(const struct cl_object *obj)
750 {
751         return container_of0(obj, struct osc_object, oo_cl);
752 }
753
754 static inline struct cl_object *osc2cl(const struct osc_object *obj)
755 {
756         return (struct cl_object *)&obj->oo_cl;
757 }
758
759 static inline struct osc_device *obd2osc_dev(const struct obd_device *d)
760 {
761         return container_of0(d->obd_lu_dev, struct osc_device,
762                              od_cl.cd_lu_dev);
763 }
764
765 static inline struct lu_device *osc2lu_dev(struct osc_device *osc)
766 {
767         return &osc->od_cl.cd_lu_dev;
768 }
769
770 static inline struct lu_object *osc2lu(struct osc_object *osc)
771 {
772         return &osc->oo_cl.co_lu;
773 }
774
775 static inline struct osc_object *lu2osc(const struct lu_object *obj)
776 {
777         return container_of0(obj, struct osc_object, oo_cl.co_lu);
778 }
779
780 static inline struct osc_io *cl2osc_io(const struct lu_env *env,
781                                        const struct cl_io_slice *slice)
782 {
783         struct osc_io *oio = container_of0(slice, struct osc_io, oi_cl);
784
785         LINVRNT(oio == osc_env_io(env));
786         return oio;
787 }
788
789 static inline enum ldlm_mode osc_cl_lock2ldlm(enum cl_lock_mode mode)
790 {
791         LASSERT(mode == CLM_READ || mode == CLM_WRITE || mode == CLM_GROUP);
792         if (mode == CLM_READ)
793                 return LCK_PR;
794         if (mode == CLM_WRITE)
795                 return LCK_PW;
796         return LCK_GROUP;
797 }
798
799 static inline enum cl_lock_mode osc_ldlm2cl_lock(enum ldlm_mode mode)
800 {
801         LASSERT(mode == LCK_PR || mode == LCK_PW || mode == LCK_GROUP);
802         if (mode == LCK_PR)
803                 return CLM_READ;
804         if (mode == LCK_PW)
805                 return CLM_WRITE;
806         return CLM_GROUP;
807 }
808
809 static inline struct osc_page *cl2osc_page(const struct cl_page_slice *slice)
810 {
811         return container_of0(slice, struct osc_page, ops_cl);
812 }
813
814 static inline struct osc_page *oap2osc(struct osc_async_page *oap)
815 {
816         return container_of0(oap, struct osc_page, ops_oap);
817 }
818
819 static inline pgoff_t osc_index(struct osc_page *opg)
820 {
821         return opg->ops_cl.cpl_index;
822 }
823
824 static inline struct cl_page *oap2cl_page(struct osc_async_page *oap)
825 {
826         return oap2osc(oap)->ops_cl.cpl_page;
827 }
828
829 static inline struct osc_page *oap2osc_page(struct osc_async_page *oap)
830 {
831         return (struct osc_page *)container_of(oap, struct osc_page, ops_oap);
832 }
833
834 static inline struct osc_page *
835 osc_cl_page_osc(struct cl_page *page, struct osc_object *osc)
836 {
837         const struct cl_page_slice *slice;
838
839         LASSERT(osc != NULL);
840         slice = cl_object_page_slice(&osc->oo_cl, page);
841         return cl2osc_page(slice);
842 }
843
844 static inline struct osc_lock *cl2osc_lock(const struct cl_lock_slice *slice)
845 {
846         return container_of0(slice, struct osc_lock, ols_cl);
847 }
848
849 static inline int osc_io_srvlock(struct osc_io *oio)
850 {
851         return (oio->oi_lockless && !oio->oi_cl.cis_io->ci_no_srvlock);
852 }
853
854 enum osc_extent_state {
855         OES_INV       = 0, /** extent is just initialized or destroyed */
856         OES_ACTIVE    = 1, /** process is using this extent */
857         OES_CACHE     = 2, /** extent is ready for IO */
858         OES_LOCKING   = 3, /** locking page to prepare IO */
859         OES_LOCK_DONE = 4, /** locking finished, ready to send */
860         OES_RPC       = 5, /** in RPC */
861         OES_TRUNC     = 6, /** being truncated */
862         OES_STATE_MAX
863 };
864
865 /**
866  * osc_extent data to manage dirty pages.
867  * osc_extent has the following attributes:
868  * 1. all pages in the same must be in one RPC in write back;
869  * 2. # of pages must be less than max_pages_per_rpc - implied by 1;
870  * 3. must be covered by only 1 osc_lock;
871  * 4. exclusive. It's impossible to have overlapped osc_extent.
872  *
873  * The lifetime of an extent is from when the 1st page is dirtied to when
874  * all pages inside it are written out.
875  *
876  * LOCKING ORDER
877  * =============
878  * page lock -> client_obd_list_lock -> object lock(osc_object::oo_lock)
879  */
880 struct osc_extent {
881         /** red-black tree node */
882         struct rb_node          oe_node;
883         /** osc_object of this extent */
884         struct osc_object       *oe_obj;
885         /** refcount, removed from red-black tree if reaches zero. */
886         atomic_t                oe_refc;
887         /** busy if non-zero */
888         atomic_t                oe_users;
889         /** link list of osc_object's oo_{hp|urgent|locking}_exts. */
890         struct list_head        oe_link;
891         /** state of this extent */
892         enum osc_extent_state   oe_state;
893         /** flags for this extent. */
894         unsigned int            oe_intree:1,
895         /** 0 is write, 1 is read */
896                                 oe_rw:1,
897         /** sync extent, queued by osc_queue_sync_pages() */
898                                 oe_sync:1,
899         /** set if this extent has partial, sync pages.
900          * Extents with partial page(s) can't merge with others in RPC */
901                                 oe_no_merge:1,
902                                 oe_srvlock:1,
903                                 oe_memalloc:1,
904         /** an ACTIVE extent is going to be truncated, so when this extent
905          * is released, it will turn into TRUNC state instead of CACHE. */
906                                 oe_trunc_pending:1,
907         /** this extent should be written asap and someone may wait for the
908          * write to finish. This bit is usually set along with urgent if
909          * the extent was CACHE state.
910          * fsync_wait extent can't be merged because new extent region may
911          * exceed fsync range. */
912                                 oe_fsync_wait:1,
913         /** covering lock is being canceled */
914                                 oe_hp:1,
915         /** this extent should be written back asap. set if one of pages is
916          * called by page WB daemon, or sync write or reading requests. */
917                                 oe_urgent:1;
918         /** how many grants allocated for this extent.
919          *  Grant allocated for this extent. There is no grant allocated
920          *  for reading extents and sync write extents. */
921         unsigned int            oe_grants;
922         /** # of dirty pages in this extent */
923         unsigned int            oe_nr_pages;
924         /** list of pending oap pages. Pages in this list are NOT sorted. */
925         struct list_head        oe_pages;
926         /** Since an extent has to be written out in atomic, this is used to
927          * remember the next page need to be locked to write this extent out.
928          * Not used right now.
929          */
930         struct osc_page         *oe_next_page;
931         /** start and end index of this extent, include start and end
932          * themselves. Page offset here is the page index of osc_pages.
933          * oe_start is used as keyword for red-black tree. */
934         pgoff_t                 oe_start;
935         pgoff_t                 oe_end;
936         /** maximum ending index of this extent, this is limited by
937          * max_pages_per_rpc, lock extent and chunk size. */
938         pgoff_t                 oe_max_end;
939         /** waitqueue - for those who want to be notified if this extent's
940          * state has changed. */
941         wait_queue_head_t       oe_waitq;
942         /** lock covering this extent */
943         struct ldlm_lock        *oe_dlmlock;
944         /** terminator of this extent. Must be true if this extent is in IO. */
945         struct task_struct      *oe_owner;
946         /** return value of writeback. If somebody is waiting for this extent,
947          * this value can be known by outside world. */
948         int                     oe_rc;
949         /** max pages per rpc when this extent was created */
950         unsigned int            oe_mppr;
951 };
952
953 /** @} osc */
954
955 #endif /* LUSTRE_OSC_H */