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