Whamcloud - gitweb
LU-5823 clio: add coo_obd_info_get and coo_data_version
[fs/lustre-release.git] / lustre / include / cl_object.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) 2011, 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 #ifndef _LUSTRE_CL_OBJECT_H
37 #define _LUSTRE_CL_OBJECT_H
38
39 /** \defgroup clio clio
40  *
41  * Client objects implement io operations and cache pages.
42  *
43  * Examples: lov and osc are implementations of cl interface.
44  *
45  * Big Theory Statement.
46  *
47  * Layered objects.
48  *
49  * Client implementation is based on the following data-types:
50  *
51  *   - cl_object
52  *
53  *   - cl_page
54  *
55  *   - cl_lock     represents an extent lock on an object.
56  *
57  *   - cl_io       represents high-level i/o activity such as whole read/write
58  *                 system call, or write-out of pages from under the lock being
59  *                 canceled. cl_io has sub-ios that can be stopped and resumed
60  *                 independently, thus achieving high degree of transfer
61  *                 parallelism. Single cl_io can be advanced forward by
62  *                 the multiple threads (although in the most usual case of
63  *                 read/write system call it is associated with the single user
64  *                 thread, that issued the system call).
65  *
66  *   - cl_req      represents a collection of pages for a transfer. cl_req is
67  *                 constructed by req-forming engine that tries to saturate
68  *                 transport with large and continuous transfers.
69  *
70  * Terminology
71  *
72  *     - to avoid confusion high-level I/O operation like read or write system
73  *     call is referred to as "an io", whereas low-level I/O operation, like
74  *     RPC, is referred to as "a transfer"
75  *
76  *     - "generic code" means generic (not file system specific) code in the
77  *     hosting environment. "cl-code" means code (mostly in cl_*.c files) that
78  *     is not layer specific.
79  *
80  * Locking.
81  *
82  *  - i_mutex
83  *      - PG_locked
84  *          - cl_object_header::coh_page_guard
85  *          - lu_site::ls_guard
86  *
87  * See the top comment in cl_object.c for the description of overall locking and
88  * reference-counting design.
89  *
90  * See comments below for the description of i/o, page, and dlm-locking
91  * design.
92  *
93  * @{
94  */
95
96 /*
97  * super-class definitions.
98  */
99 #include <libcfs/libcfs.h>
100 #include <lu_object.h>
101 #include <linux/atomic.h>
102 #include <linux/mutex.h>
103 #include <linux/radix-tree.h>
104 #include <linux/spinlock.h>
105 #include <linux/wait.h>
106 #include <lustre_dlm.h>
107
108 struct obd_info;
109 struct inode;
110
111 struct cl_device;
112 struct cl_device_operations;
113
114 struct cl_object;
115 struct cl_object_page_operations;
116 struct cl_object_lock_operations;
117
118 struct cl_page;
119 struct cl_page_slice;
120 struct cl_lock;
121 struct cl_lock_slice;
122
123 struct cl_lock_operations;
124 struct cl_page_operations;
125
126 struct cl_io;
127 struct cl_io_slice;
128
129 struct cl_req;
130 struct cl_req_slice;
131
132 /**
133  * Operations for each data device in the client stack.
134  *
135  * \see vvp_cl_ops, lov_cl_ops, lovsub_cl_ops, osc_cl_ops
136  */
137 struct cl_device_operations {
138         /**
139          * Initialize cl_req. This method is called top-to-bottom on all
140          * devices in the stack to get them a chance to allocate layer-private
141          * data, and to attach them to the cl_req by calling
142          * cl_req_slice_add().
143          *
144          * \see osc_req_init(), lov_req_init(), lovsub_req_init()
145          * \see vvp_req_init()
146          */
147         int (*cdo_req_init)(const struct lu_env *env, struct cl_device *dev,
148                             struct cl_req *req);
149 };
150
151 /**
152  * Device in the client stack.
153  *
154  * \see vvp_device, lov_device, lovsub_device, osc_device
155  */
156 struct cl_device {
157         /** Super-class. */
158         struct lu_device                   cd_lu_dev;
159         /** Per-layer operation vector. */
160         const struct cl_device_operations *cd_ops;
161 };
162
163 /** \addtogroup cl_object cl_object
164  * @{ */
165 /**
166  * "Data attributes" of cl_object. Data attributes can be updated
167  * independently for a sub-object, and top-object's attributes are calculated
168  * from sub-objects' ones.
169  */
170 struct cl_attr {
171         /** Object size, in bytes */
172         loff_t cat_size;
173         /**
174          * Known minimal size, in bytes.
175          *
176          * This is only valid when at least one DLM lock is held.
177          */
178         loff_t cat_kms;
179         /** Modification time. Measured in seconds since epoch. */
180         time_t cat_mtime;
181         /** Access time. Measured in seconds since epoch. */
182         time_t cat_atime;
183         /** Change time. Measured in seconds since epoch. */
184         time_t cat_ctime;
185         /**
186          * Blocks allocated to this cl_object on the server file system.
187          *
188          * \todo XXX An interface for block size is needed.
189          */
190         __u64  cat_blocks;
191         /**
192          * User identifier for quota purposes.
193          */
194         uid_t  cat_uid;
195         /**
196          * Group identifier for quota purposes.
197          */
198         gid_t  cat_gid;
199
200         /* nlink of the directory */
201         __u64  cat_nlink;
202 };
203
204 /**
205  * Fields in cl_attr that are being set.
206  */
207 enum cl_attr_valid {
208         CAT_SIZE   = 1 << 0,
209         CAT_KMS    = 1 << 1,
210         CAT_MTIME  = 1 << 3,
211         CAT_ATIME  = 1 << 4,
212         CAT_CTIME  = 1 << 5,
213         CAT_BLOCKS = 1 << 6,
214         CAT_UID    = 1 << 7,
215         CAT_GID    = 1 << 8
216 };
217
218 /**
219  * Sub-class of lu_object with methods common for objects on the client
220  * stacks.
221  *
222  * cl_object: represents a regular file system object, both a file and a
223  *    stripe. cl_object is based on lu_object: it is identified by a fid,
224  *    layered, cached, hashed, and lrued. Important distinction with the server
225  *    side, where md_object and dt_object are used, is that cl_object "fans out"
226  *    at the lov/sns level: depending on the file layout, single file is
227  *    represented as a set of "sub-objects" (stripes). At the implementation
228  *    level, struct lov_object contains an array of cl_objects. Each sub-object
229  *    is a full-fledged cl_object, having its fid, living in the lru and hash
230  *    table.
231  *
232  *    This leads to the next important difference with the server side: on the
233  *    client, it's quite usual to have objects with the different sequence of
234  *    layers. For example, typical top-object is composed of the following
235  *    layers:
236  *
237  *        - vvp
238  *        - lov
239  *
240  *    whereas its sub-objects are composed of
241  *
242  *        - lovsub
243  *        - osc
244  *
245  *    layers. Here "lovsub" is a mostly dummy layer, whose purpose is to keep
246  *    track of the object-subobject relationship.
247  *
248  *    Sub-objects are not cached independently: when top-object is about to
249  *    be discarded from the memory, all its sub-objects are torn-down and
250  *    destroyed too.
251  *
252  * \see vvp_object, lov_object, lovsub_object, osc_object
253  */
254 struct cl_object {
255         /** super class */
256         struct lu_object                   co_lu;
257         /** per-object-layer operations */
258         const struct cl_object_operations *co_ops;
259         /** offset of page slice in cl_page buffer */
260         int                                co_slice_off;
261 };
262
263 /**
264  * Description of the client object configuration. This is used for the
265  * creation of a new client object that is identified by a more state than
266  * fid.
267  */
268 struct cl_object_conf {
269         /** Super-class. */
270         struct lu_object_conf     coc_lu;
271         union {
272                 /**
273                  * Object layout. This is consumed by lov.
274                  */
275                 struct lustre_md *coc_md;
276                 /**
277                  * Description of particular stripe location in the
278                  * cluster. This is consumed by osc.
279                  */
280                 struct lov_oinfo *coc_oinfo;
281         } u;
282         /**
283          * VFS inode. This is consumed by vvp.
284          */
285         struct inode             *coc_inode;
286         /**
287          * Layout lock handle.
288          */
289         struct ldlm_lock         *coc_lock;
290         /**
291          * Operation to handle layout, OBJECT_CONF_XYZ.
292          */
293         int                       coc_opc;
294 };
295
296 enum {
297         /** configure layout, set up a new stripe, must be called while
298          * holding layout lock. */
299         OBJECT_CONF_SET = 0,
300         /** invalidate the current stripe configuration due to losing
301          * layout lock. */
302         OBJECT_CONF_INVALIDATE = 1,
303         /** wait for old layout to go away so that new layout can be
304          * set up. */
305         OBJECT_CONF_WAIT = 2
306 };
307
308 /**
309  * Operations implemented for each cl object layer.
310  *
311  * \see vvp_ops, lov_ops, lovsub_ops, osc_ops
312  */
313 struct cl_object_operations {
314         /**
315          * Initialize page slice for this layer. Called top-to-bottom through
316          * every object layer when a new cl_page is instantiated. Layer
317          * keeping private per-page data, or requiring its own page operations
318          * vector should allocate these data here, and attach then to the page
319          * by calling cl_page_slice_add(). \a vmpage is locked (in the VM
320          * sense). Optional.
321          *
322          * \retval NULL success.
323          *
324          * \retval ERR_PTR(errno) failure code.
325          *
326          * \retval valid-pointer pointer to already existing referenced page
327          *         to be used instead of newly created.
328          */
329         int  (*coo_page_init)(const struct lu_env *env, struct cl_object *obj,
330                                 struct cl_page *page, pgoff_t index);
331         /**
332          * Initialize lock slice for this layer. Called top-to-bottom through
333          * every object layer when a new cl_lock is instantiated. Layer
334          * keeping private per-lock data, or requiring its own lock operations
335          * vector should allocate these data here, and attach then to the lock
336          * by calling cl_lock_slice_add(). Mandatory.
337          */
338         int  (*coo_lock_init)(const struct lu_env *env,
339                               struct cl_object *obj, struct cl_lock *lock,
340                               const struct cl_io *io);
341         /**
342          * Initialize io state for a given layer.
343          *
344          * called top-to-bottom once per io existence to initialize io
345          * state. If layer wants to keep some state for this type of io, it
346          * has to embed struct cl_io_slice in lu_env::le_ses, and register
347          * slice with cl_io_slice_add(). It is guaranteed that all threads
348          * participating in this io share the same session.
349          */
350         int  (*coo_io_init)(const struct lu_env *env,
351                             struct cl_object *obj, struct cl_io *io);
352         /**
353          * Fill portion of \a attr that this layer controls. This method is
354          * called top-to-bottom through all object layers.
355          *
356          * \pre cl_object_header::coh_attr_guard of the top-object is locked.
357          *
358          * \return   0: to continue
359          * \return +ve: to stop iterating through layers (but 0 is returned
360          *              from enclosing cl_object_attr_get())
361          * \return -ve: to signal error
362          */
363         int (*coo_attr_get)(const struct lu_env *env, struct cl_object *obj,
364                             struct cl_attr *attr);
365         /**
366          * Update attributes.
367          *
368          * \a valid is a bitmask composed from enum #cl_attr_valid, and
369          * indicating what attributes are to be set.
370          *
371          * \pre cl_object_header::coh_attr_guard of the top-object is locked.
372          *
373          * \return the same convention as for
374          * cl_object_operations::coo_attr_get() is used.
375          */
376         int (*coo_attr_update)(const struct lu_env *env, struct cl_object *obj,
377                                const struct cl_attr *attr, unsigned valid);
378         /**
379          * Update object configuration. Called top-to-bottom to modify object
380          * configuration.
381          *
382          * XXX error conditions and handling.
383          */
384         int (*coo_conf_set)(const struct lu_env *env, struct cl_object *obj,
385                             const struct cl_object_conf *conf);
386         /**
387          * Glimpse ast. Executed when glimpse ast arrives for a lock on this
388          * object. Layers are supposed to fill parts of \a lvb that will be
389          * shipped to the glimpse originator as a glimpse result.
390          *
391          * \see vvp_object_glimpse(), lovsub_object_glimpse(),
392          * \see osc_object_glimpse()
393          */
394         int (*coo_glimpse)(const struct lu_env *env,
395                            const struct cl_object *obj, struct ost_lvb *lvb);
396         /**
397          * Object prune method. Called when the layout is going to change on
398          * this object, therefore each layer has to clean up their cache,
399          * mainly pages and locks.
400          */
401         int (*coo_prune)(const struct lu_env *env, struct cl_object *obj);
402         /**
403          * Object getstripe method.
404          */
405         int (*coo_getstripe)(const struct lu_env *env, struct cl_object *obj,
406                              struct lov_user_md __user *lum);
407         /**
408          * Find whether there is any callback data (ldlm lock) attached upon
409          * the object.
410          */
411         int (*coo_find_cbdata)(const struct lu_env *env, struct cl_object *obj,
412                                ldlm_iterator_t iter, void *data);
413         /**
414          * Get FIEMAP mapping from the object.
415          */
416         int (*coo_fiemap)(const struct lu_env *env, struct cl_object *obj,
417                           struct ll_fiemap_info_key *fmkey,
418                           struct fiemap *fiemap, size_t *buflen);
419         /**
420          * Get attributes of the object from server. (top->bottom)
421          */
422         int (*coo_obd_info_get)(const struct lu_env *env, struct cl_object *obj,
423                                 struct obd_info *oinfo,
424                                 struct ptlrpc_request_set *set);
425         /**
426          * Get data version of the object. (top->bottom)
427          */
428         int (*coo_data_version)(const struct lu_env *env, struct cl_object *obj,
429                                 __u64 *version, int flags);
430 };
431
432 /**
433  * Extended header for client object.
434  */
435 struct cl_object_header {
436         /** Standard lu_object_header. cl_object::co_lu::lo_header points
437          * here. */
438         struct lu_object_header coh_lu;
439
440         /**
441          * Parent object. It is assumed that an object has a well-defined
442          * parent, but not a well-defined child (there may be multiple
443          * sub-objects, for the same top-object). cl_object_header::coh_parent
444          * field allows certain code to be written generically, without
445          * limiting possible cl_object layouts unduly.
446          */
447         struct cl_object_header *coh_parent;
448         /**
449          * Protects consistency between cl_attr of parent object and
450          * attributes of sub-objects, that the former is calculated ("merged")
451          * from.
452          *
453          * \todo XXX this can be read/write lock if needed.
454          */
455         spinlock_t               coh_attr_guard;
456         /**
457          * Size of cl_page + page slices
458          */
459         unsigned short           coh_page_bufsize;
460         /**
461          * Number of objects above this one: 0 for a top-object, 1 for its
462          * sub-object, etc.
463          */
464         unsigned char            coh_nesting;
465 };
466
467 /**
468  * Helper macro: iterate over all layers of the object \a obj, assigning every
469  * layer top-to-bottom to \a slice.
470  */
471 #define cl_object_for_each(slice, obj)                          \
472         list_for_each_entry((slice),                            \
473                             &(obj)->co_lu.lo_header->loh_layers,\
474                             co_lu.lo_linkage)
475
476 /**
477  * Helper macro: iterate over all layers of the object \a obj, assigning every
478  * layer bottom-to-top to \a slice.
479  */
480 #define cl_object_for_each_reverse(slice, obj)                          \
481         list_for_each_entry_reverse((slice),                            \
482                                     &(obj)->co_lu.lo_header->loh_layers,\
483                                     co_lu.lo_linkage)
484
485 /** @} cl_object */
486
487 #define CL_PAGE_EOF ((pgoff_t)~0ull)
488
489 /** \addtogroup cl_page cl_page
490  * @{ */
491
492 /** \struct cl_page
493  * Layered client page.
494  *
495  * cl_page: represents a portion of a file, cached in the memory. All pages
496  *    of the given file are of the same size, and are kept in the radix tree
497  *    hanging off the cl_object. cl_page doesn't fan out, but as sub-objects
498  *    of the top-level file object are first class cl_objects, they have their
499  *    own radix trees of pages and hence page is implemented as a sequence of
500  *    struct cl_pages's, linked into double-linked list through
501  *    cl_page::cp_parent and cl_page::cp_child pointers, each residing in the
502  *    corresponding radix tree at the corresponding logical offset.
503  *
504  * cl_page is associated with VM page of the hosting environment (struct
505  *    page in Linux kernel, for example), struct page. It is assumed, that this
506  *    association is implemented by one of cl_page layers (top layer in the
507  *    current design) that
508  *
509  *        - intercepts per-VM-page call-backs made by the environment (e.g.,
510  *          memory pressure),
511  *
512  *        - translates state (page flag bits) and locking between lustre and
513  *          environment.
514  *
515  *    The association between cl_page and struct page is immutable and
516  *    established when cl_page is created.
517  *
518  * cl_page can be "owned" by a particular cl_io (see below), guaranteeing
519  *    this io an exclusive access to this page w.r.t. other io attempts and
520  *    various events changing page state (such as transfer completion, or
521  *    eviction of the page from the memory). Note, that in general cl_io
522  *    cannot be identified with a particular thread, and page ownership is not
523  *    exactly equal to the current thread holding a lock on the page. Layer
524  *    implementing association between cl_page and struct page has to implement
525  *    ownership on top of available synchronization mechanisms.
526  *
527  *    While lustre client maintains the notion of an page ownership by io,
528  *    hosting MM/VM usually has its own page concurrency control
529  *    mechanisms. For example, in Linux, page access is synchronized by the
530  *    per-page PG_locked bit-lock, and generic kernel code (generic_file_*())
531  *    takes care to acquire and release such locks as necessary around the
532  *    calls to the file system methods (->readpage(), ->prepare_write(),
533  *    ->commit_write(), etc.). This leads to the situation when there are two
534  *    different ways to own a page in the client:
535  *
536  *        - client code explicitly and voluntary owns the page (cl_page_own());
537  *
538  *        - VM locks a page and then calls the client, that has "to assume"
539  *          the ownership from the VM (cl_page_assume()).
540  *
541  *    Dual methods to release ownership are cl_page_disown() and
542  *    cl_page_unassume().
543  *
544  * cl_page is reference counted (cl_page::cp_ref). When reference counter
545  *    drops to 0, the page is returned to the cache, unless it is in
546  *    cl_page_state::CPS_FREEING state, in which case it is immediately
547  *    destroyed.
548  *
549  *    The general logic guaranteeing the absence of "existential races" for
550  *    pages is the following:
551  *
552  *        - there are fixed known ways for a thread to obtain a new reference
553  *          to a page:
554  *
555  *            - by doing a lookup in the cl_object radix tree, protected by the
556  *              spin-lock;
557  *
558  *            - by starting from VM-locked struct page and following some
559  *              hosting environment method (e.g., following ->private pointer in
560  *              the case of Linux kernel), see cl_vmpage_page();
561  *
562  *        - when the page enters cl_page_state::CPS_FREEING state, all these
563  *          ways are severed with the proper synchronization
564  *          (cl_page_delete());
565  *
566  *        - entry into cl_page_state::CPS_FREEING is serialized by the VM page
567  *          lock;
568  *
569  *        - no new references to the page in cl_page_state::CPS_FREEING state
570  *          are allowed (checked in cl_page_get()).
571  *
572  *    Together this guarantees that when last reference to a
573  *    cl_page_state::CPS_FREEING page is released, it is safe to destroy the
574  *    page, as neither references to it can be acquired at that point, nor
575  *    ones exist.
576  *
577  * cl_page is a state machine. States are enumerated in enum
578  *    cl_page_state. Possible state transitions are enumerated in
579  *    cl_page_state_set(). State transition process (i.e., actual changing of
580  *    cl_page::cp_state field) is protected by the lock on the underlying VM
581  *    page.
582  *
583  * Linux Kernel implementation.
584  *
585  *    Binding between cl_page and struct page (which is a typedef for
586  *    struct page) is implemented in the vvp layer. cl_page is attached to the
587  *    ->private pointer of the struct page, together with the setting of
588  *    PG_private bit in page->flags, and acquiring additional reference on the
589  *    struct page (much like struct buffer_head, or any similar file system
590  *    private data structures).
591  *
592  *    PG_locked lock is used to implement both ownership and transfer
593  *    synchronization, that is, page is VM-locked in CPS_{OWNED,PAGE{IN,OUT}}
594  *    states. No additional references are acquired for the duration of the
595  *    transfer.
596  *
597  * \warning *THIS IS NOT* the behavior expected by the Linux kernel, where
598  *          write-out is "protected" by the special PG_writeback bit.
599  */
600
601 /**
602  * States of cl_page. cl_page.c assumes particular order here.
603  *
604  * The page state machine is rather crude, as it doesn't recognize finer page
605  * states like "dirty" or "up to date". This is because such states are not
606  * always well defined for the whole stack (see, for example, the
607  * implementation of the read-ahead, that hides page up-to-dateness to track
608  * cache hits accurately). Such sub-states are maintained by the layers that
609  * are interested in them.
610  */
611 enum cl_page_state {
612         /**
613          * Page is in the cache, un-owned. Page leaves cached state in the
614          * following cases:
615          *
616          *     - [cl_page_state::CPS_OWNED] io comes across the page and
617          *     owns it;
618          *
619          *     - [cl_page_state::CPS_PAGEOUT] page is dirty, the
620          *     req-formation engine decides that it wants to include this page
621          *     into an cl_req being constructed, and yanks it from the cache;
622          *
623          *     - [cl_page_state::CPS_FREEING] VM callback is executed to
624          *     evict the page form the memory;
625          *
626          * \invariant cl_page::cp_owner == NULL && cl_page::cp_req == NULL
627          */
628         CPS_CACHED,
629         /**
630          * Page is exclusively owned by some cl_io. Page may end up in this
631          * state as a result of
632          *
633          *     - io creating new page and immediately owning it;
634          *
635          *     - [cl_page_state::CPS_CACHED] io finding existing cached page
636          *     and owning it;
637          *
638          *     - [cl_page_state::CPS_OWNED] io finding existing owned page
639          *     and waiting for owner to release the page;
640          *
641          * Page leaves owned state in the following cases:
642          *
643          *     - [cl_page_state::CPS_CACHED] io decides to leave the page in
644          *     the cache, doing nothing;
645          *
646          *     - [cl_page_state::CPS_PAGEIN] io starts read transfer for
647          *     this page;
648          *
649          *     - [cl_page_state::CPS_PAGEOUT] io starts immediate write
650          *     transfer for this page;
651          *
652          *     - [cl_page_state::CPS_FREEING] io decides to destroy this
653          *     page (e.g., as part of truncate or extent lock cancellation).
654          *
655          * \invariant cl_page::cp_owner != NULL && cl_page::cp_req == NULL
656          */
657         CPS_OWNED,
658         /**
659          * Page is being written out, as a part of a transfer. This state is
660          * entered when req-formation logic decided that it wants this page to
661          * be sent through the wire _now_. Specifically, it means that once
662          * this state is achieved, transfer completion handler (with either
663          * success or failure indication) is guaranteed to be executed against
664          * this page independently of any locks and any scheduling decisions
665          * made by the hosting environment (that effectively means that the
666          * page is never put into cl_page_state::CPS_PAGEOUT state "in
667          * advance". This property is mentioned, because it is important when
668          * reasoning about possible dead-locks in the system). The page can
669          * enter this state as a result of
670          *
671          *     - [cl_page_state::CPS_OWNED] an io requesting an immediate
672          *     write-out of this page, or
673          *
674          *     - [cl_page_state::CPS_CACHED] req-forming engine deciding
675          *     that it has enough dirty pages cached to issue a "good"
676          *     transfer.
677          *
678          * The page leaves cl_page_state::CPS_PAGEOUT state when the transfer
679          * is completed---it is moved into cl_page_state::CPS_CACHED state.
680          *
681          * Underlying VM page is locked for the duration of transfer.
682          *
683          * \invariant: cl_page::cp_owner == NULL && cl_page::cp_req != NULL
684          */
685         CPS_PAGEOUT,
686         /**
687          * Page is being read in, as a part of a transfer. This is quite
688          * similar to the cl_page_state::CPS_PAGEOUT state, except that
689          * read-in is always "immediate"---there is no such thing a sudden
690          * construction of read cl_req from cached, presumably not up to date,
691          * pages.
692          *
693          * Underlying VM page is locked for the duration of transfer.
694          *
695          * \invariant: cl_page::cp_owner == NULL && cl_page::cp_req != NULL
696          */
697         CPS_PAGEIN,
698         /**
699          * Page is being destroyed. This state is entered when client decides
700          * that page has to be deleted from its host object, as, e.g., a part
701          * of truncate.
702          *
703          * Once this state is reached, there is no way to escape it.
704          *
705          * \invariant: cl_page::cp_owner == NULL && cl_page::cp_req == NULL
706          */
707         CPS_FREEING,
708         CPS_NR
709 };
710
711 enum cl_page_type {
712         /** Host page, the page is from the host inode which the cl_page
713          * belongs to. */
714         CPT_CACHEABLE = 1,
715
716         /** Transient page, the transient cl_page is used to bind a cl_page
717          *  to vmpage which is not belonging to the same object of cl_page.
718          *  it is used in DirectIO, lockless IO and liblustre. */
719         CPT_TRANSIENT,
720 };
721
722 /**
723  * Fields are protected by the lock on struct page, except for atomics and
724  * immutables.
725  *
726  * \invariant Data type invariants are in cl_page_invariant(). Basically:
727  * cl_page::cp_parent and cl_page::cp_child are a well-formed double-linked
728  * list, consistent with the parent/child pointers in the cl_page::cp_obj and
729  * cl_page::cp_owner (when set).
730  */
731 struct cl_page {
732         /** Reference counter. */
733         atomic_t                 cp_ref;
734         /** Transfer error. */
735         int                      cp_error;
736         /** An object this page is a part of. Immutable after creation. */
737         struct cl_object        *cp_obj;
738         /** vmpage */
739         struct page             *cp_vmpage;
740         /** Linkage of pages within group. Pages must be owned */
741         struct list_head         cp_batch;
742         /** List of slices. Immutable after creation. */
743         struct list_head         cp_layers;
744         /** Linkage of pages within cl_req. */
745         struct list_head         cp_flight;
746         /**
747          * Page state. This field is const to avoid accidental update, it is
748          * modified only internally within cl_page.c. Protected by a VM lock.
749          */
750         const enum cl_page_state cp_state;
751         /**
752          * Page type. Only CPT_TRANSIENT is used so far. Immutable after
753          * creation.
754          */
755         enum cl_page_type        cp_type;
756
757         /**
758          * Owning IO in cl_page_state::CPS_OWNED state. Sub-page can be owned
759          * by sub-io. Protected by a VM lock.
760          */
761         struct cl_io            *cp_owner;
762         /**
763          * Owning IO request in cl_page_state::CPS_PAGEOUT and
764          * cl_page_state::CPS_PAGEIN states. This field is maintained only in
765          * the top-level pages. Protected by a VM lock.
766          */
767         struct cl_req           *cp_req;
768         /** List of references to this page, for debugging. */
769         struct lu_ref            cp_reference;
770         /** Link to an object, for debugging. */
771         struct lu_ref_link       cp_obj_ref;
772         /** Link to a queue, for debugging. */
773         struct lu_ref_link       cp_queue_ref;
774         /** Assigned if doing a sync_io */
775         struct cl_sync_io       *cp_sync_io;
776 };
777
778 /**
779  * Per-layer part of cl_page.
780  *
781  * \see vvp_page, lov_page, osc_page
782  */
783 struct cl_page_slice {
784         struct cl_page                  *cpl_page;
785         pgoff_t                          cpl_index;
786         /**
787          * Object slice corresponding to this page slice. Immutable after
788          * creation.
789          */
790         struct cl_object                *cpl_obj;
791         const struct cl_page_operations *cpl_ops;
792         /** Linkage into cl_page::cp_layers. Immutable after creation. */
793         struct list_head                 cpl_linkage;
794 };
795
796 /**
797  * Lock mode. For the client extent locks.
798  *
799  * \ingroup cl_lock
800  */
801 enum cl_lock_mode {
802         CLM_READ,
803         CLM_WRITE,
804         CLM_GROUP,
805         CLM_MAX,
806 };
807
808 /**
809  * Requested transfer type.
810  * \ingroup cl_req
811  */
812 enum cl_req_type {
813         CRT_READ,
814         CRT_WRITE,
815         CRT_NR
816 };
817
818 /**
819  * Per-layer page operations.
820  *
821  * Methods taking an \a io argument are for the activity happening in the
822  * context of given \a io. Page is assumed to be owned by that io, except for
823  * the obvious cases (like cl_page_operations::cpo_own()).
824  *
825  * \see vvp_page_ops, lov_page_ops, osc_page_ops
826  */
827 struct cl_page_operations {
828         /**
829          * cl_page<->struct page methods. Only one layer in the stack has to
830          * implement these. Current code assumes that this functionality is
831          * provided by the topmost layer, see cl_page_disown0() as an example.
832          */
833
834         /**
835          * Called when \a io acquires this page into the exclusive
836          * ownership. When this method returns, it is guaranteed that the is
837          * not owned by other io, and no transfer is going on against
838          * it. Optional.
839          *
840          * \see cl_page_own()
841          * \see vvp_page_own(), lov_page_own()
842          */
843         int  (*cpo_own)(const struct lu_env *env,
844                         const struct cl_page_slice *slice,
845                         struct cl_io *io, int nonblock);
846         /** Called when ownership it yielded. Optional.
847          *
848          * \see cl_page_disown()
849          * \see vvp_page_disown()
850          */
851         void (*cpo_disown)(const struct lu_env *env,
852                            const struct cl_page_slice *slice, struct cl_io *io);
853         /**
854          * Called for a page that is already "owned" by \a io from VM point of
855          * view. Optional.
856          *
857          * \see cl_page_assume()
858          * \see vvp_page_assume(), lov_page_assume()
859          */
860         void (*cpo_assume)(const struct lu_env *env,
861                            const struct cl_page_slice *slice, struct cl_io *io);
862         /** Dual to cl_page_operations::cpo_assume(). Optional. Called
863          * bottom-to-top when IO releases a page without actually unlocking
864          * it.
865          *
866          * \see cl_page_unassume()
867          * \see vvp_page_unassume()
868          */
869         void (*cpo_unassume)(const struct lu_env *env,
870                              const struct cl_page_slice *slice,
871                              struct cl_io *io);
872         /**
873          * Announces whether the page contains valid data or not by \a uptodate.
874          *
875          * \see cl_page_export()
876          * \see vvp_page_export()
877          */
878         void  (*cpo_export)(const struct lu_env *env,
879                             const struct cl_page_slice *slice, int uptodate);
880         /**
881          * Checks whether underlying VM page is locked (in the suitable
882          * sense). Used for assertions.
883          *
884          * \retval    -EBUSY: page is protected by a lock of a given mode;
885          * \retval  -ENODATA: page is not protected by a lock;
886          * \retval         0: this layer cannot decide. (Should never happen.)
887          */
888         int (*cpo_is_vmlocked)(const struct lu_env *env,
889                                const struct cl_page_slice *slice);
890         /**
891          * Page destruction.
892          */
893
894         /**
895          * Called when page is truncated from the object. Optional.
896          *
897          * \see cl_page_discard()
898          * \see vvp_page_discard(), osc_page_discard()
899          */
900         void (*cpo_discard)(const struct lu_env *env,
901                             const struct cl_page_slice *slice,
902                             struct cl_io *io);
903         /**
904          * Called when page is removed from the cache, and is about to being
905          * destroyed. Optional.
906          *
907          * \see cl_page_delete()
908          * \see vvp_page_delete(), osc_page_delete()
909          */
910         void (*cpo_delete)(const struct lu_env *env,
911                            const struct cl_page_slice *slice);
912         /** Destructor. Frees resources and slice itself. */
913         void (*cpo_fini)(const struct lu_env *env,
914                          struct cl_page_slice *slice);
915         /**
916          * Optional debugging helper. Prints given page slice.
917          *
918          * \see cl_page_print()
919          */
920         int (*cpo_print)(const struct lu_env *env,
921                          const struct cl_page_slice *slice,
922                          void *cookie, lu_printer_t p);
923         /**
924          * \name transfer
925          *
926          * Transfer methods. See comment on cl_req for a description of
927          * transfer formation and life-cycle.
928          *
929          * @{
930          */
931         /**
932          * Request type dependent vector of operations.
933          *
934          * Transfer operations depend on transfer mode (cl_req_type). To avoid
935          * passing transfer mode to each and every of these methods, and to
936          * avoid branching on request type inside of the methods, separate
937          * methods for cl_req_type:CRT_READ and cl_req_type:CRT_WRITE are
938          * provided. That is, method invocation usually looks like
939          *
940          *         slice->cp_ops.io[req->crq_type].cpo_method(env, slice, ...);
941          */
942         struct {
943                 /**
944                  * Called when a page is submitted for a transfer as a part of
945                  * cl_page_list.
946                  *
947                  * \return    0         : page is eligible for submission;
948                  * \return    -EALREADY : skip this page;
949                  * \return    -ve       : error.
950                  *
951                  * \see cl_page_prep()
952                  */
953                 int  (*cpo_prep)(const struct lu_env *env,
954                                  const struct cl_page_slice *slice,
955                                  struct cl_io *io);
956                 /**
957                  * Completion handler. This is guaranteed to be eventually
958                  * fired after cl_page_operations::cpo_prep() or
959                  * cl_page_operations::cpo_make_ready() call.
960                  *
961                  * This method can be called in a non-blocking context. It is
962                  * guaranteed however, that the page involved and its object
963                  * are pinned in memory (and, hence, calling cl_page_put() is
964                  * safe).
965                  *
966                  * \see cl_page_completion()
967                  */
968                 void (*cpo_completion)(const struct lu_env *env,
969                                        const struct cl_page_slice *slice,
970                                        int ioret);
971                 /**
972                  * Called when cached page is about to be added to the
973                  * cl_req as a part of req formation.
974                  *
975                  * \return    0       : proceed with this page;
976                  * \return    -EAGAIN : skip this page;
977                  * \return    -ve     : error.
978                  *
979                  * \see cl_page_make_ready()
980                  */
981                 int  (*cpo_make_ready)(const struct lu_env *env,
982                                        const struct cl_page_slice *slice);
983         } io[CRT_NR];
984         /**
985          * Tell transfer engine that only [to, from] part of a page should be
986          * transmitted.
987          *
988          * This is used for immediate transfers.
989          *
990          * \todo XXX this is not very good interface. It would be much better
991          * if all transfer parameters were supplied as arguments to
992          * cl_io_operations::cio_submit() call, but it is not clear how to do
993          * this for page queues.
994          *
995          * \see cl_page_clip()
996          */
997         void (*cpo_clip)(const struct lu_env *env,
998                          const struct cl_page_slice *slice,
999                          int from, int to);
1000         /**
1001          * \pre  the page was queued for transferring.
1002          * \post page is removed from client's pending list, or -EBUSY
1003          *       is returned if it has already been in transferring.
1004          *
1005          * This is one of seldom page operation which is:
1006          * 0. called from top level;
1007          * 1. don't have vmpage locked;
1008          * 2. every layer should synchronize execution of its ->cpo_cancel()
1009          *    with completion handlers. Osc uses client obd lock for this
1010          *    purpose. Based on there is no vvp_page_cancel and
1011          *    lov_page_cancel(), cpo_cancel is defacto protected by client lock.
1012          *
1013          * \see osc_page_cancel().
1014          */
1015         int (*cpo_cancel)(const struct lu_env *env,
1016                           const struct cl_page_slice *slice);
1017         /**
1018          * Write out a page by kernel. This is only called by ll_writepage
1019          * right now.
1020          *
1021          * \see cl_page_flush()
1022          */
1023         int (*cpo_flush)(const struct lu_env *env,
1024                          const struct cl_page_slice *slice,
1025                          struct cl_io *io);
1026         /** @} transfer */
1027 };
1028
1029 /**
1030  * Helper macro, dumping detailed information about \a page into a log.
1031  */
1032 #define CL_PAGE_DEBUG(mask, env, page, format, ...)                     \
1033 do {                                                                    \
1034         if (cfs_cdebug_show(mask, DEBUG_SUBSYSTEM)) {                   \
1035                 LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, mask, NULL);        \
1036                 cl_page_print(env, &msgdata, lu_cdebug_printer, page);  \
1037                 CDEBUG(mask, format , ## __VA_ARGS__);                  \
1038         }                                                               \
1039 } while (0)
1040
1041 /**
1042  * Helper macro, dumping shorter information about \a page into a log.
1043  */
1044 #define CL_PAGE_HEADER(mask, env, page, format, ...)                          \
1045 do {                                                                          \
1046         if (cfs_cdebug_show(mask, DEBUG_SUBSYSTEM)) {                         \
1047                 LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, mask, NULL);              \
1048                 cl_page_header_print(env, &msgdata, lu_cdebug_printer, page); \
1049                 CDEBUG(mask, format , ## __VA_ARGS__);                        \
1050         }                                                                     \
1051 } while (0)
1052
1053 static inline struct page *cl_page_vmpage(const struct cl_page *page)
1054 {
1055         LASSERT(page->cp_vmpage != NULL);
1056         return page->cp_vmpage;
1057 }
1058
1059 /**
1060  * Check if a cl_page is in use.
1061  *
1062  * Client cache holds a refcount, this refcount will be dropped when
1063  * the page is taken out of cache, see vvp_page_delete().
1064  */
1065 static inline bool __page_in_use(const struct cl_page *page, int refc)
1066 {
1067         return (atomic_read(&page->cp_ref) > refc + 1);
1068 }
1069
1070 /**
1071  * Caller itself holds a refcount of cl_page.
1072  */
1073 #define cl_page_in_use(pg)       __page_in_use(pg, 1)
1074 /**
1075  * Caller doesn't hold a refcount.
1076  */
1077 #define cl_page_in_use_noref(pg) __page_in_use(pg, 0)
1078
1079 /** @} cl_page */
1080
1081 /** \addtogroup cl_lock cl_lock
1082  * @{ */
1083 /** \struct cl_lock
1084  *
1085  * Extent locking on the client.
1086  *
1087  * LAYERING
1088  *
1089  * The locking model of the new client code is built around
1090  *
1091  *        struct cl_lock
1092  *
1093  * data-type representing an extent lock on a regular file. cl_lock is a
1094  * layered object (much like cl_object and cl_page), it consists of a header
1095  * (struct cl_lock) and a list of layers (struct cl_lock_slice), linked to
1096  * cl_lock::cll_layers list through cl_lock_slice::cls_linkage.
1097  *
1098  * Typical cl_lock consists of the two layers:
1099  *
1100  *     - vvp_lock (vvp specific data), and
1101  *     - lov_lock (lov specific data).
1102  *
1103  * lov_lock contains an array of sub-locks. Each of these sub-locks is a
1104  * normal cl_lock: it has a header (struct cl_lock) and a list of layers:
1105  *
1106  *     - lovsub_lock, and
1107  *     - osc_lock
1108  *
1109  * Each sub-lock is associated with a cl_object (representing stripe
1110  * sub-object or the file to which top-level cl_lock is associated to), and is
1111  * linked into that cl_object::coh_locks. In this respect cl_lock is similar to
1112  * cl_object (that at lov layer also fans out into multiple sub-objects), and
1113  * is different from cl_page, that doesn't fan out (there is usually exactly
1114  * one osc_page for every vvp_page). We shall call vvp-lov portion of the lock
1115  * a "top-lock" and its lovsub-osc portion a "sub-lock".
1116  *
1117  * LIFE CYCLE
1118  *
1119  * cl_lock is a cacheless data container for the requirements of locks to
1120  * complete the IO. cl_lock is created before I/O starts and destroyed when the
1121  * I/O is complete.
1122  *
1123  * cl_lock depends on LDLM lock to fulfill lock semantics. LDLM lock is attached
1124  * to cl_lock at OSC layer. LDLM lock is still cacheable.
1125  *
1126  * INTERFACE AND USAGE
1127  *
1128  * Two major methods are supported for cl_lock: clo_enqueue and clo_cancel.  A
1129  * cl_lock is enqueued by cl_lock_request(), which will call clo_enqueue()
1130  * methods for each layer to enqueue the lock. At the LOV layer, if a cl_lock
1131  * consists of multiple sub cl_locks, each sub locks will be enqueued
1132  * correspondingly. At OSC layer, the lock enqueue request will tend to reuse
1133  * cached LDLM lock; otherwise a new LDLM lock will have to be requested from
1134  * OST side.
1135  *
1136  * cl_lock_cancel() must be called to release a cl_lock after use. clo_cancel()
1137  * method will be called for each layer to release the resource held by this
1138  * lock. At OSC layer, the reference count of LDLM lock, which is held at
1139  * clo_enqueue time, is released.
1140  *
1141  * LDLM lock can only be canceled if there is no cl_lock using it.
1142  *
1143  * Overall process of the locking during IO operation is as following:
1144  *
1145  *     - once parameters for IO are setup in cl_io, cl_io_operations::cio_lock()
1146  *       is called on each layer. Responsibility of this method is to add locks,
1147  *       needed by a given layer into cl_io.ci_lockset.
1148  *
1149  *     - once locks for all layers were collected, they are sorted to avoid
1150  *       dead-locks (cl_io_locks_sort()), and enqueued.
1151  *
1152  *     - when all locks are acquired, IO is performed;
1153  *
1154  *     - locks are released after IO is complete.
1155  *
1156  * Striping introduces major additional complexity into locking. The
1157  * fundamental problem is that it is generally unsafe to actively use (hold)
1158  * two locks on the different OST servers at the same time, as this introduces
1159  * inter-server dependency and can lead to cascading evictions.
1160  *
1161  * Basic solution is to sub-divide large read/write IOs into smaller pieces so
1162  * that no multi-stripe locks are taken (note that this design abandons POSIX
1163  * read/write semantics). Such pieces ideally can be executed concurrently. At
1164  * the same time, certain types of IO cannot be sub-divived, without
1165  * sacrificing correctness. This includes:
1166  *
1167  *  - O_APPEND write, where [0, EOF] lock has to be taken, to guarantee
1168  *  atomicity;
1169  *
1170  *  - ftruncate(fd, offset), where [offset, EOF] lock has to be taken.
1171  *
1172  * Also, in the case of read(fd, buf, count) or write(fd, buf, count), where
1173  * buf is a part of memory mapped Lustre file, a lock or locks protecting buf
1174  * has to be held together with the usual lock on [offset, offset + count].
1175  *
1176  * Interaction with DLM
1177  *
1178  * In the expected setup, cl_lock is ultimately backed up by a collection of
1179  * DLM locks (struct ldlm_lock). Association between cl_lock and DLM lock is
1180  * implemented in osc layer, that also matches DLM events (ASTs, cancellation,
1181  * etc.) into cl_lock_operation calls. See struct osc_lock for a more detailed
1182  * description of interaction with DLM.
1183  */
1184
1185 /**
1186  * Lock description.
1187  */
1188 struct cl_lock_descr {
1189         /** Object this lock is granted for. */
1190         struct cl_object *cld_obj;
1191         /** Index of the first page protected by this lock. */
1192         pgoff_t           cld_start;
1193         /** Index of the last page (inclusive) protected by this lock. */
1194         pgoff_t           cld_end;
1195         /** Group ID, for group lock */
1196         __u64             cld_gid;
1197         /** Lock mode. */
1198         enum cl_lock_mode cld_mode;
1199         /**
1200          * flags to enqueue lock. A combination of bit-flags from
1201          * enum cl_enq_flags.
1202          */
1203         __u32             cld_enq_flags;
1204 };
1205
1206 #define DDESCR "%s(%d):[%lu, %lu]:%x"
1207 #define PDESCR(descr)                                                   \
1208         cl_lock_mode_name((descr)->cld_mode), (descr)->cld_mode,        \
1209         (descr)->cld_start, (descr)->cld_end, (descr)->cld_enq_flags
1210
1211 const char *cl_lock_mode_name(const enum cl_lock_mode mode);
1212
1213 /**
1214  * Layered client lock.
1215  */
1216 struct cl_lock {
1217         /** List of slices. Immutable after creation. */
1218         struct list_head      cll_layers;
1219         /** lock attribute, extent, cl_object, etc. */
1220         struct cl_lock_descr  cll_descr;
1221 };
1222
1223 /**
1224  * Per-layer part of cl_lock
1225  *
1226  * \see vvp_lock, lov_lock, lovsub_lock, osc_lock
1227  */
1228 struct cl_lock_slice {
1229         struct cl_lock                  *cls_lock;
1230         /** Object slice corresponding to this lock slice. Immutable after
1231          * creation. */
1232         struct cl_object                *cls_obj;
1233         const struct cl_lock_operations *cls_ops;
1234         /** Linkage into cl_lock::cll_layers. Immutable after creation. */
1235         struct list_head                 cls_linkage;
1236 };
1237
1238 /**
1239  *
1240  * \see vvp_lock_ops, lov_lock_ops, lovsub_lock_ops, osc_lock_ops
1241  */
1242 struct cl_lock_operations {
1243         /** @{ */
1244         /**
1245          * Attempts to enqueue the lock. Called top-to-bottom.
1246          *
1247          * \retval 0    this layer has enqueued the lock successfully
1248          * \retval >0   this layer has enqueued the lock, but need to wait on
1249          *              @anchor for resources
1250          * \retval -ve  failure
1251          *
1252          * \see vvp_lock_enqueue(), lov_lock_enqueue(), lovsub_lock_enqueue(),
1253          * \see osc_lock_enqueue()
1254          */
1255         int  (*clo_enqueue)(const struct lu_env *env,
1256                             const struct cl_lock_slice *slice,
1257                             struct cl_io *io, struct cl_sync_io *anchor);
1258         /**
1259          * Cancel a lock, release its DLM lock ref, while does not cancel the
1260          * DLM lock
1261          */
1262         void (*clo_cancel)(const struct lu_env *env,
1263                            const struct cl_lock_slice *slice);
1264         /** @} */
1265         /**
1266          * Destructor. Frees resources and the slice.
1267          *
1268          * \see vvp_lock_fini(), lov_lock_fini(), lovsub_lock_fini(),
1269          * \see osc_lock_fini()
1270          */
1271         void (*clo_fini)(const struct lu_env *env, struct cl_lock_slice *slice);
1272         /**
1273          * Optional debugging helper. Prints given lock slice.
1274          */
1275         int (*clo_print)(const struct lu_env *env,
1276                          void *cookie, lu_printer_t p,
1277                          const struct cl_lock_slice *slice);
1278 };
1279
1280 #define CL_LOCK_DEBUG(mask, env, lock, format, ...)                     \
1281 do {                                                                    \
1282         if (cfs_cdebug_show(mask, DEBUG_SUBSYSTEM)) {                   \
1283                 LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, mask, NULL);        \
1284                 cl_lock_print(env, &msgdata, lu_cdebug_printer, lock);  \
1285                 CDEBUG(mask, format , ## __VA_ARGS__);                  \
1286         }                                                               \
1287 } while (0)
1288
1289 #define CL_LOCK_ASSERT(expr, env, lock) do {                            \
1290         if (likely(expr))                                               \
1291                 break;                                                  \
1292                                                                         \
1293         CL_LOCK_DEBUG(D_ERROR, env, lock, "failed at %s.\n", #expr);    \
1294         LBUG();                                                         \
1295 } while (0)
1296
1297 /** @} cl_lock */
1298
1299 /** \addtogroup cl_page_list cl_page_list
1300  * Page list used to perform collective operations on a group of pages.
1301  *
1302  * Pages are added to the list one by one. cl_page_list acquires a reference
1303  * for every page in it. Page list is used to perform collective operations on
1304  * pages:
1305  *
1306  *     - submit pages for an immediate transfer,
1307  *
1308  *     - own pages on behalf of certain io (waiting for each page in turn),
1309  *
1310  *     - discard pages.
1311  *
1312  * When list is finalized, it releases references on all pages it still has.
1313  *
1314  * \todo XXX concurrency control.
1315  *
1316  * @{
1317  */
1318 struct cl_page_list {
1319         unsigned                 pl_nr;
1320         struct list_head         pl_pages;
1321         struct task_struct      *pl_owner;
1322 };
1323
1324 /** 
1325  * A 2-queue of pages. A convenience data-type for common use case, 2-queue
1326  * contains an incoming page list and an outgoing page list.
1327  */
1328 struct cl_2queue {
1329         struct cl_page_list c2_qin;
1330         struct cl_page_list c2_qout;
1331 };
1332
1333 /** @} cl_page_list */
1334
1335 /** \addtogroup cl_io cl_io
1336  * @{ */
1337 /** \struct cl_io
1338  * I/O
1339  *
1340  * cl_io represents a high level I/O activity like
1341  * read(2)/write(2)/truncate(2) system call, or cancellation of an extent
1342  * lock.
1343  *
1344  * cl_io is a layered object, much like cl_{object,page,lock} but with one
1345  * important distinction. We want to minimize number of calls to the allocator
1346  * in the fast path, e.g., in the case of read(2) when everything is cached:
1347  * client already owns the lock over region being read, and data are cached
1348  * due to read-ahead. To avoid allocation of cl_io layers in such situations,
1349  * per-layer io state is stored in the session, associated with the io, see
1350  * struct {vvp,lov,osc}_io for example. Sessions allocation is amortized
1351  * by using free-lists, see cl_env_get().
1352  *
1353  * There is a small predefined number of possible io types, enumerated in enum
1354  * cl_io_type.
1355  *
1356  * cl_io is a state machine, that can be advanced concurrently by the multiple
1357  * threads. It is up to these threads to control the concurrency and,
1358  * specifically, to detect when io is done, and its state can be safely
1359  * released.
1360  *
1361  * For read/write io overall execution plan is as following:
1362  *
1363  *     (0) initialize io state through all layers;
1364  *
1365  *     (1) loop: prepare chunk of work to do
1366  *
1367  *     (2) call all layers to collect locks they need to process current chunk
1368  *
1369  *     (3) sort all locks to avoid dead-locks, and acquire them
1370  *
1371  *     (4) process the chunk: call per-page methods
1372  *         cl_io_operations::cio_prepare_write(),
1373  *         cl_io_operations::cio_commit_write() for write)
1374  *
1375  *     (5) release locks
1376  *
1377  *     (6) repeat loop.
1378  *
1379  * To implement the "parallel IO mode", lov layer creates sub-io's (lazily to
1380  * address allocation efficiency issues mentioned above), and returns with the
1381  * special error condition from per-page method when current sub-io has to
1382  * block. This causes io loop to be repeated, and lov switches to the next
1383  * sub-io in its cl_io_operations::cio_iter_init() implementation.
1384  */
1385
1386 /** IO types */
1387 enum cl_io_type {
1388         /** read system call */
1389         CIT_READ,
1390         /** write system call */
1391         CIT_WRITE,
1392         /** truncate, utime system calls */
1393         CIT_SETATTR,
1394         /**
1395          * page fault handling
1396          */
1397         CIT_FAULT,
1398         /**
1399          * fsync system call handling
1400          * To write out a range of file
1401          */
1402         CIT_FSYNC,
1403         /**
1404          * Miscellaneous io. This is used for occasional io activity that
1405          * doesn't fit into other types. Currently this is used for:
1406          *
1407          *     - cancellation of an extent lock. This io exists as a context
1408          *     to write dirty pages from under the lock being canceled back
1409          *     to the server;
1410          *
1411          *     - VM induced page write-out. An io context for writing page out
1412          *     for memory cleansing;
1413          *
1414          *     - glimpse. An io context to acquire glimpse lock.
1415          *
1416          *     - grouplock. An io context to acquire group lock.
1417          *
1418          * CIT_MISC io is used simply as a context in which locks and pages
1419          * are manipulated. Such io has no internal "process", that is,
1420          * cl_io_loop() is never called for it.
1421          */
1422         CIT_MISC,
1423         CIT_OP_NR
1424 };
1425
1426 /**
1427  * States of cl_io state machine
1428  */
1429 enum cl_io_state {
1430         /** Not initialized. */
1431         CIS_ZERO,
1432         /** Initialized. */
1433         CIS_INIT,
1434         /** IO iteration started. */
1435         CIS_IT_STARTED,
1436         /** Locks taken. */
1437         CIS_LOCKED,
1438         /** Actual IO is in progress. */
1439         CIS_IO_GOING,
1440         /** IO for the current iteration finished. */
1441         CIS_IO_FINISHED,
1442         /** Locks released. */
1443         CIS_UNLOCKED,
1444         /** Iteration completed. */
1445         CIS_IT_ENDED,
1446         /** cl_io finalized. */
1447         CIS_FINI
1448 };
1449
1450 /**
1451  * IO state private for a layer.
1452  *
1453  * This is usually embedded into layer session data, rather than allocated
1454  * dynamically.
1455  *
1456  * \see vvp_io, lov_io, osc_io
1457  */
1458 struct cl_io_slice {
1459         struct cl_io                    *cis_io;
1460         /** corresponding object slice. Immutable after creation. */
1461         struct cl_object                *cis_obj;
1462         /** io operations. Immutable after creation. */
1463         const struct cl_io_operations   *cis_iop;
1464         /**
1465          * linkage into a list of all slices for a given cl_io, hanging off
1466          * cl_io::ci_layers. Immutable after creation.
1467          */
1468         struct list_head                cis_linkage;
1469 };
1470
1471 typedef void (*cl_commit_cbt)(const struct lu_env *, struct cl_io *,
1472                               struct cl_page *);
1473
1474 struct cl_read_ahead {
1475         /* Maximum page index the readahead window will end.
1476          * This is determined DLM lock coverage, RPC and stripe boundary.
1477          * cra_end is included. */
1478         pgoff_t cra_end;
1479         /* Release routine. If readahead holds resources underneath, this
1480          * function should be called to release it. */
1481         void    (*cra_release)(const struct lu_env *env, void *cbdata);
1482         /* Callback data for cra_release routine */
1483         void    *cra_cbdata;
1484 };
1485
1486 static inline void cl_read_ahead_release(const struct lu_env *env,
1487                                          struct cl_read_ahead *ra)
1488 {
1489         if (ra->cra_release != NULL)
1490                 ra->cra_release(env, ra->cra_cbdata);
1491         memset(ra, 0, sizeof(*ra));
1492 }
1493
1494
1495 /**
1496  * Per-layer io operations.
1497  * \see vvp_io_ops, lov_io_ops, lovsub_io_ops, osc_io_ops
1498  */
1499 struct cl_io_operations {
1500         /**
1501          * Vector of io state transition methods for every io type.
1502          *
1503          * \see cl_page_operations::io
1504          */
1505         struct {
1506                 /**
1507                  * Prepare io iteration at a given layer.
1508                  *
1509                  * Called top-to-bottom at the beginning of each iteration of
1510                  * "io loop" (if it makes sense for this type of io). Here
1511                  * layer selects what work it will do during this iteration.
1512                  *
1513                  * \see cl_io_operations::cio_iter_fini()
1514                  */
1515                 int (*cio_iter_init) (const struct lu_env *env,
1516                                       const struct cl_io_slice *slice);
1517                 /**
1518                  * Finalize io iteration.
1519                  *
1520                  * Called bottom-to-top at the end of each iteration of "io
1521                  * loop". Here layers can decide whether IO has to be
1522                  * continued.
1523                  *
1524                  * \see cl_io_operations::cio_iter_init()
1525                  */
1526                 void (*cio_iter_fini) (const struct lu_env *env,
1527                                        const struct cl_io_slice *slice);
1528                 /**
1529                  * Collect locks for the current iteration of io.
1530                  *
1531                  * Called top-to-bottom to collect all locks necessary for
1532                  * this iteration. This methods shouldn't actually enqueue
1533                  * anything, instead it should post a lock through
1534                  * cl_io_lock_add(). Once all locks are collected, they are
1535                  * sorted and enqueued in the proper order.
1536                  */
1537                 int  (*cio_lock) (const struct lu_env *env,
1538                                   const struct cl_io_slice *slice);
1539                 /**
1540                  * Finalize unlocking.
1541                  *
1542                  * Called bottom-to-top to finish layer specific unlocking
1543                  * functionality, after generic code released all locks
1544                  * acquired by cl_io_operations::cio_lock().
1545                  */
1546                 void  (*cio_unlock)(const struct lu_env *env,
1547                                     const struct cl_io_slice *slice);
1548                 /**
1549                  * Start io iteration.
1550                  *
1551                  * Once all locks are acquired, called top-to-bottom to
1552                  * commence actual IO. In the current implementation,
1553                  * top-level vvp_io_{read,write}_start() does all the work
1554                  * synchronously by calling generic_file_*(), so other layers
1555                  * are called when everything is done.
1556                  */
1557                 int  (*cio_start)(const struct lu_env *env,
1558                                   const struct cl_io_slice *slice);
1559                 /**
1560                  * Called top-to-bottom at the end of io loop. Here layer
1561                  * might wait for an unfinished asynchronous io.
1562                  */
1563                 void (*cio_end)  (const struct lu_env *env,
1564                                   const struct cl_io_slice *slice);
1565                 /**
1566                  * Called bottom-to-top to notify layers that read/write IO
1567                  * iteration finished, with \a nob bytes transferred.
1568                  */
1569                 void (*cio_advance)(const struct lu_env *env,
1570                                     const struct cl_io_slice *slice,
1571                                     size_t nob);
1572                 /**
1573                  * Called once per io, bottom-to-top to release io resources.
1574                  */
1575                 void (*cio_fini) (const struct lu_env *env,
1576                                   const struct cl_io_slice *slice);
1577         } op[CIT_OP_NR];
1578
1579         /**
1580          * Submit pages from \a queue->c2_qin for IO, and move
1581          * successfully submitted pages into \a queue->c2_qout. Return
1582          * non-zero if failed to submit even the single page. If
1583          * submission failed after some pages were moved into \a
1584          * queue->c2_qout, completion callback with non-zero ioret is
1585          * executed on them.
1586          */
1587         int  (*cio_submit)(const struct lu_env *env,
1588                         const struct cl_io_slice *slice,
1589                         enum cl_req_type crt,
1590                         struct cl_2queue *queue);
1591         /**
1592          * Queue async page for write.
1593          * The difference between cio_submit and cio_queue is that
1594          * cio_submit is for urgent request.
1595          */
1596         int  (*cio_commit_async)(const struct lu_env *env,
1597                         const struct cl_io_slice *slice,
1598                         struct cl_page_list *queue, int from, int to,
1599                         cl_commit_cbt cb);
1600         /**
1601          * Decide maximum read ahead extent
1602          *
1603          * \pre io->ci_type == CIT_READ
1604          */
1605         int (*cio_read_ahead)(const struct lu_env *env,
1606                               const struct cl_io_slice *slice,
1607                               pgoff_t start, struct cl_read_ahead *ra);
1608         /**
1609          * Optional debugging helper. Print given io slice.
1610          */
1611         int (*cio_print)(const struct lu_env *env, void *cookie,
1612                          lu_printer_t p, const struct cl_io_slice *slice);
1613 };
1614
1615 /**
1616  * Flags to lock enqueue procedure.
1617  * \ingroup cl_lock
1618  */
1619 enum cl_enq_flags {
1620         /**
1621          * instruct server to not block, if conflicting lock is found. Instead
1622          * -EWOULDBLOCK is returned immediately.
1623          */
1624         CEF_NONBLOCK     = 0x00000001,
1625         /**
1626          * take lock asynchronously (out of order), as it cannot
1627          * deadlock. This is for LDLM_FL_HAS_INTENT locks used for glimpsing.
1628          */
1629         CEF_ASYNC        = 0x00000002,
1630         /**
1631          * tell the server to instruct (though a flag in the blocking ast) an
1632          * owner of the conflicting lock, that it can drop dirty pages
1633          * protected by this lock, without sending them to the server.
1634          */
1635         CEF_DISCARD_DATA = 0x00000004,
1636         /**
1637          * tell the sub layers that it must be a `real' lock. This is used for
1638          * mmapped-buffer locks and glimpse locks that must be never converted
1639          * into lockless mode.
1640          *
1641          * \see vvp_mmap_locks(), cl_glimpse_lock().
1642          */
1643         CEF_MUST         = 0x00000008,
1644         /**
1645          * tell the sub layers that never request a `real' lock. This flag is
1646          * not used currently.
1647          *
1648          * cl_io::ci_lockreq and CEF_{MUST,NEVER} flags specify lockless
1649          * conversion policy: ci_lockreq describes generic information of lock
1650          * requirement for this IO, especially for locks which belong to the
1651          * object doing IO; however, lock itself may have precise requirements
1652          * that are described by the enqueue flags.
1653          */
1654         CEF_NEVER        = 0x00000010,
1655         /**
1656          * for async glimpse lock.
1657          */
1658         CEF_AGL          = 0x00000020,
1659         /**
1660          * enqueue a lock to test DLM lock existence.
1661          */
1662         CEF_PEEK        = 0x00000040,
1663         /**
1664          * mask of enq_flags.
1665          */
1666         CEF_MASK         = 0x0000007f,
1667 };
1668
1669 /**
1670  * Link between lock and io. Intermediate structure is needed, because the
1671  * same lock can be part of multiple io's simultaneously.
1672  */
1673 struct cl_io_lock_link {
1674         /** linkage into one of cl_lockset lists. */
1675         struct list_head        cill_linkage;
1676         struct cl_lock          cill_lock;
1677         /** optional destructor */
1678         void                    (*cill_fini)(const struct lu_env *env,
1679                                              struct cl_io_lock_link *link);
1680 };
1681 #define cill_descr      cill_lock.cll_descr
1682
1683 /**
1684  * Lock-set represents a collection of locks, that io needs at a
1685  * time. Generally speaking, client tries to avoid holding multiple locks when
1686  * possible, because
1687  *
1688  *      - holding extent locks over multiple ost's introduces the danger of
1689  *        "cascading timeouts";
1690  *
1691  *      - holding multiple locks over the same ost is still dead-lock prone,
1692  *        see comment in osc_lock_enqueue(),
1693  *
1694  * but there are certain situations where this is unavoidable:
1695  *
1696  *      - O_APPEND writes have to take [0, EOF] lock for correctness;
1697  *
1698  *      - truncate has to take [new-size, EOF] lock for correctness;
1699  *
1700  *      - SNS has to take locks across full stripe for correctness;
1701  *
1702  *      - in the case when user level buffer, supplied to {read,write}(file0),
1703  *        is a part of a memory mapped lustre file, client has to take a dlm
1704  *        locks on file0, and all files that back up the buffer (or a part of
1705  *        the buffer, that is being processed in the current chunk, in any
1706  *        case, there are situations where at least 2 locks are necessary).
1707  *
1708  * In such cases we at least try to take locks in the same consistent
1709  * order. To this end, all locks are first collected, then sorted, and then
1710  * enqueued.
1711  */
1712 struct cl_lockset {
1713         /** locks to be acquired. */
1714         struct list_head  cls_todo;
1715         /** locks acquired. */
1716         struct list_head  cls_done;
1717 };
1718
1719 /**
1720  * Lock requirements(demand) for IO. It should be cl_io_lock_req,
1721  * but 'req' is always to be thought as 'request' :-)
1722  */
1723 enum cl_io_lock_dmd {
1724         /** Always lock data (e.g., O_APPEND). */
1725         CILR_MANDATORY = 0,
1726         /** Layers are free to decide between local and global locking. */
1727         CILR_MAYBE,
1728         /** Never lock: there is no cache (e.g., liblustre). */
1729         CILR_NEVER
1730 };
1731
1732 enum cl_fsync_mode {
1733         /** start writeback, do not wait for them to finish */
1734         CL_FSYNC_NONE  = 0,
1735         /** start writeback and wait for them to finish */
1736         CL_FSYNC_LOCAL = 1,
1737         /** discard all of dirty pages in a specific file range */
1738         CL_FSYNC_DISCARD = 2,
1739         /** start writeback and make sure they have reached storage before
1740          * return. OST_SYNC RPC must be issued and finished */
1741         CL_FSYNC_ALL   = 3
1742 };
1743
1744 struct cl_io_rw_common {
1745         loff_t      crw_pos;
1746         size_t      crw_count;
1747         int         crw_nonblock;
1748 };
1749
1750
1751 /**
1752  * State for io.
1753  *
1754  * cl_io is shared by all threads participating in this IO (in current
1755  * implementation only one thread advances IO, but parallel IO design and
1756  * concurrent copy_*_user() require multiple threads acting on the same IO. It
1757  * is up to these threads to serialize their activities, including updates to
1758  * mutable cl_io fields.
1759  */
1760 struct cl_io {
1761         /** type of this IO. Immutable after creation. */
1762         enum cl_io_type                ci_type;
1763         /** current state of cl_io state machine. */
1764         enum cl_io_state               ci_state;
1765         /** main object this io is against. Immutable after creation. */
1766         struct cl_object              *ci_obj;
1767         /**
1768          * Upper layer io, of which this io is a part of. Immutable after
1769          * creation.
1770          */
1771         struct cl_io                  *ci_parent;
1772         /** List of slices. Immutable after creation. */
1773         struct list_head                ci_layers;
1774         /** list of locks (to be) acquired by this io. */
1775         struct cl_lockset              ci_lockset;
1776         /** lock requirements, this is just a help info for sublayers. */
1777         enum cl_io_lock_dmd            ci_lockreq;
1778         union {
1779                 struct cl_rd_io {
1780                         struct cl_io_rw_common rd;
1781                 } ci_rd;
1782                 struct cl_wr_io {
1783                         struct cl_io_rw_common wr;
1784                         int                    wr_append;
1785                         int                    wr_sync;
1786                 } ci_wr;
1787                 struct cl_io_rw_common ci_rw;
1788                 struct cl_setattr_io {
1789                         struct ost_lvb   sa_attr;
1790                         unsigned int     sa_valid;
1791                         int              sa_stripe_index;
1792                         struct lu_fid    *sa_parent_fid;
1793                         struct obd_capa  *sa_capa;
1794                 } ci_setattr;
1795                 struct cl_fault_io {
1796                         /** page index within file. */
1797                         pgoff_t         ft_index;
1798                         /** bytes valid byte on a faulted page. */
1799                         size_t          ft_nob;
1800                         /** writable page? for nopage() only */
1801                         int             ft_writable;
1802                         /** page of an executable? */
1803                         int             ft_executable;
1804                         /** page_mkwrite() */
1805                         int             ft_mkwrite;
1806                         /** resulting page */
1807                         struct cl_page *ft_page;
1808                 } ci_fault;
1809                 struct cl_fsync_io {
1810                         loff_t             fi_start;
1811                         loff_t             fi_end;
1812                         struct obd_capa   *fi_capa;
1813                         /** file system level fid */
1814                         struct lu_fid     *fi_fid;
1815                         enum cl_fsync_mode fi_mode;
1816                         /* how many pages were written/discarded */
1817                         unsigned int       fi_nr_written;
1818                 } ci_fsync;
1819         } u;
1820         struct cl_2queue     ci_queue;
1821         size_t               ci_nob;
1822         int                  ci_result;
1823         unsigned int         ci_continue:1,
1824         /**
1825          * This io has held grouplock, to inform sublayers that
1826          * don't do lockless i/o.
1827          */
1828                              ci_no_srvlock:1,
1829         /**
1830          * The whole IO need to be restarted because layout has been changed
1831          */
1832                              ci_need_restart:1,
1833         /**
1834          * to not refresh layout - the IO issuer knows that the layout won't
1835          * change(page operations, layout change causes all page to be
1836          * discarded), or it doesn't matter if it changes(sync).
1837          */
1838                              ci_ignore_layout:1,
1839         /**
1840          * Check if layout changed after the IO finishes. Mainly for HSM
1841          * requirement. If IO occurs to openning files, it doesn't need to
1842          * verify layout because HSM won't release openning files.
1843          * Right now, only two opertaions need to verify layout: glimpse
1844          * and setattr.
1845          */
1846                              ci_verify_layout:1,
1847         /**
1848          * file is released, restore has to to be triggered by vvp layer
1849          */
1850                              ci_restore_needed:1,
1851         /**
1852          * O_NOATIME
1853          */
1854                              ci_noatime:1;
1855         /**
1856          * Number of pages owned by this IO. For invariant checking.
1857          */
1858         unsigned             ci_owned_nr;
1859 };
1860
1861 /** @} cl_io */
1862
1863 /** \addtogroup cl_req cl_req
1864  * @{ */
1865 /** \struct cl_req
1866  * Transfer.
1867  *
1868  * There are two possible modes of transfer initiation on the client:
1869  *
1870  *     - immediate transfer: this is started when a high level io wants a page
1871  *       or a collection of pages to be transferred right away. Examples:
1872  *       read-ahead, synchronous read in the case of non-page aligned write,
1873  *       page write-out as a part of extent lock cancellation, page write-out
1874  *       as a part of memory cleansing. Immediate transfer can be both
1875  *       cl_req_type::CRT_READ and cl_req_type::CRT_WRITE;
1876  *
1877  *     - opportunistic transfer (cl_req_type::CRT_WRITE only), that happens
1878  *       when io wants to transfer a page to the server some time later, when
1879  *       it can be done efficiently. Example: pages dirtied by the write(2)
1880  *       path.
1881  *
1882  * In any case, transfer takes place in the form of a cl_req, which is a
1883  * representation for a network RPC.
1884  *
1885  * Pages queued for an opportunistic transfer are cached until it is decided
1886  * that efficient RPC can be composed of them. This decision is made by "a
1887  * req-formation engine", currently implemented as a part of osc
1888  * layer. Req-formation depends on many factors: the size of the resulting
1889  * RPC, whether or not multi-object RPCs are supported by the server,
1890  * max-rpc-in-flight limitations, size of the dirty cache, etc.
1891  *
1892  * For the immediate transfer io submits a cl_page_list, that req-formation
1893  * engine slices into cl_req's, possibly adding cached pages to some of
1894  * the resulting req's.
1895  *
1896  * Whenever a page from cl_page_list is added to a newly constructed req, its
1897  * cl_page_operations::cpo_prep() layer methods are called. At that moment,
1898  * page state is atomically changed from cl_page_state::CPS_OWNED to
1899  * cl_page_state::CPS_PAGEOUT or cl_page_state::CPS_PAGEIN, cl_page::cp_owner
1900  * is zeroed, and cl_page::cp_req is set to the
1901  * req. cl_page_operations::cpo_prep() method at the particular layer might
1902  * return -EALREADY to indicate that it does not need to submit this page
1903  * at all. This is possible, for example, if page, submitted for read,
1904  * became up-to-date in the meantime; and for write, the page don't have
1905  * dirty bit marked. \see cl_io_submit_rw()
1906  *
1907  * Whenever a cached page is added to a newly constructed req, its
1908  * cl_page_operations::cpo_make_ready() layer methods are called. At that
1909  * moment, page state is atomically changed from cl_page_state::CPS_CACHED to
1910  * cl_page_state::CPS_PAGEOUT, and cl_page::cp_req is set to
1911  * req. cl_page_operations::cpo_make_ready() method at the particular layer
1912  * might return -EAGAIN to indicate that this page is not eligible for the
1913  * transfer right now.
1914  *
1915  * FUTURE
1916  *
1917  * Plan is to divide transfers into "priority bands" (indicated when
1918  * submitting cl_page_list, and queuing a page for the opportunistic transfer)
1919  * and allow glueing of cached pages to immediate transfers only within single
1920  * band. This would make high priority transfers (like lock cancellation or
1921  * memory pressure induced write-out) really high priority.
1922  *
1923  */
1924
1925 /**
1926  * Per-transfer attributes.
1927  */
1928 struct cl_req_attr {
1929         /** Generic attributes for the server consumption. */
1930         struct obdo     *cra_oa;
1931         /** Capability. */
1932         struct obd_capa *cra_capa;
1933         /** Jobid */
1934         char             cra_jobid[LUSTRE_JOBID_SIZE];
1935 };
1936
1937 /**
1938  * Transfer request operations definable at every layer.
1939  *
1940  * Concurrency: transfer formation engine synchronizes calls to all transfer
1941  * methods.
1942  */
1943 struct cl_req_operations {
1944         /**
1945          * Invoked top-to-bottom by cl_req_prep() when transfer formation is
1946          * complete (all pages are added).
1947          *
1948          * \see osc_req_prep()
1949          */
1950         int  (*cro_prep)(const struct lu_env *env,
1951                          const struct cl_req_slice *slice);
1952         /**
1953          * Called top-to-bottom to fill in \a oa fields. This is called twice
1954          * with different flags, see bug 10150 and osc_build_req().
1955          *
1956          * \param obj an object from cl_req which attributes are to be set in
1957          *            \a oa.
1958          *
1959          * \param oa struct obdo where attributes are placed
1960          *
1961          * \param flags \a oa fields to be filled.
1962          */
1963         void (*cro_attr_set)(const struct lu_env *env,
1964                              const struct cl_req_slice *slice,
1965                              const struct cl_object *obj,
1966                              struct cl_req_attr *attr, u64 flags);
1967         /**
1968          * Called top-to-bottom from cl_req_completion() to notify layers that
1969          * transfer completed. Has to free all state allocated by
1970          * cl_device_operations::cdo_req_init().
1971          */
1972         void (*cro_completion)(const struct lu_env *env,
1973                                const struct cl_req_slice *slice, int ioret);
1974 };
1975
1976 /**
1977  * A per-object state that (potentially multi-object) transfer request keeps.
1978  */
1979 struct cl_req_obj {
1980         /** object itself */
1981         struct cl_object   *ro_obj;
1982         /** reference to cl_req_obj::ro_obj. For debugging. */
1983         struct lu_ref_link  ro_obj_ref;
1984         /* something else? Number of pages for a given object? */
1985 };
1986
1987 /**
1988  * Transfer request.
1989  *
1990  * Transfer requests are not reference counted, because IO sub-system owns
1991  * them exclusively and knows when to free them.
1992  *
1993  * Life cycle.
1994  *
1995  * cl_req is created by cl_req_alloc() that calls
1996  * cl_device_operations::cdo_req_init() device methods to allocate per-req
1997  * state in every layer.
1998  *
1999  * Then pages are added (cl_req_page_add()), req keeps track of all objects it
2000  * contains pages for.
2001  *
2002  * Once all pages were collected, cl_page_operations::cpo_prep() method is
2003  * called top-to-bottom. At that point layers can modify req, let it pass, or
2004  * deny it completely. This is to support things like SNS that have transfer
2005  * ordering requirements invisible to the individual req-formation engine.
2006  *
2007  * On transfer completion (or transfer timeout, or failure to initiate the
2008  * transfer of an allocated req), cl_req_operations::cro_completion() method
2009  * is called, after execution of cl_page_operations::cpo_completion() of all
2010  * req's pages.
2011  */
2012 struct cl_req {
2013         enum cl_req_type        crq_type;
2014         /** A list of pages being transfered */
2015         struct list_head        crq_pages;
2016         /** Number of pages in cl_req::crq_pages */
2017         unsigned                crq_nrpages;
2018         /** An array of objects which pages are in ->crq_pages */
2019         struct cl_req_obj       *crq_o;
2020         /** Number of elements in cl_req::crq_objs[] */
2021         unsigned                crq_nrobjs;
2022         struct list_head        crq_layers;
2023 };
2024
2025 /**
2026  * Per-layer state for request.
2027  */
2028 struct cl_req_slice {
2029         struct cl_req                   *crs_req;
2030         struct cl_device                *crs_dev;
2031         struct list_head                 crs_linkage;
2032         const struct cl_req_operations  *crs_ops;
2033 };
2034
2035 /* @} cl_req */
2036
2037 enum cache_stats_item {
2038         /** how many cache lookups were performed */
2039         CS_lookup = 0,
2040         /** how many times cache lookup resulted in a hit */
2041         CS_hit,
2042         /** how many entities are in the cache right now */
2043         CS_total,
2044         /** how many entities in the cache are actively used (and cannot be
2045          * evicted) right now */
2046         CS_busy,
2047         /** how many entities were created at all */
2048         CS_create,
2049         CS_NR
2050 };
2051
2052 #define CS_NAMES { "lookup", "hit", "total", "busy", "create" }
2053
2054 /**
2055  * Stats for a generic cache (similar to inode, lu_object, etc. caches).
2056  */
2057 struct cache_stats {
2058         const char      *cs_name;
2059         atomic_t        cs_stats[CS_NR];
2060 };
2061
2062 /** These are not exported so far */
2063 void cache_stats_init (struct cache_stats *cs, const char *name);
2064
2065 /**
2066  * Client-side site. This represents particular client stack. "Global"
2067  * variables should (directly or indirectly) be added here to allow multiple
2068  * clients to co-exist in the single address space.
2069  */
2070 struct cl_site {
2071         struct lu_site          cs_lu;
2072         /**
2073          * Statistical counters. Atomics do not scale, something better like
2074          * per-cpu counters is needed.
2075          *
2076          * These are exported as /proc/fs/lustre/llite/.../site
2077          *
2078          * When interpreting keep in mind that both sub-locks (and sub-pages)
2079          * and top-locks (and top-pages) are accounted here.
2080          */
2081         struct cache_stats      cs_pages;
2082         atomic_t                cs_pages_state[CPS_NR];
2083 };
2084
2085 int  cl_site_init(struct cl_site *s, struct cl_device *top);
2086 void cl_site_fini(struct cl_site *s);
2087 void cl_stack_fini(const struct lu_env *env, struct cl_device *cl);
2088
2089 /**
2090  * Output client site statistical counters into a buffer. Suitable for
2091  * ll_rd_*()-style functions.
2092  */
2093 int cl_site_stats_print(const struct cl_site *site, struct seq_file *m);
2094
2095 /**
2096  * \name helpers
2097  *
2098  * Type conversion and accessory functions.
2099  */
2100 /** @{ */
2101
2102 static inline struct cl_site *lu2cl_site(const struct lu_site *site)
2103 {
2104         return container_of(site, struct cl_site, cs_lu);
2105 }
2106
2107 static inline struct cl_device *lu2cl_dev(const struct lu_device *d)
2108 {
2109         LASSERT(d == NULL || IS_ERR(d) || lu_device_is_cl(d));
2110         return container_of0(d, struct cl_device, cd_lu_dev);
2111 }
2112
2113 static inline struct lu_device *cl2lu_dev(struct cl_device *d)
2114 {
2115         return &d->cd_lu_dev;
2116 }
2117
2118 static inline struct cl_object *lu2cl(const struct lu_object *o)
2119 {
2120         LASSERT(o == NULL || IS_ERR(o) || lu_device_is_cl(o->lo_dev));
2121         return container_of0(o, struct cl_object, co_lu);
2122 }
2123
2124 static inline const struct cl_object_conf *
2125 lu2cl_conf(const struct lu_object_conf *conf)
2126 {
2127         return container_of0(conf, struct cl_object_conf, coc_lu);
2128 }
2129
2130 static inline struct cl_object *cl_object_next(const struct cl_object *obj)
2131 {
2132         return obj ? lu2cl(lu_object_next(&obj->co_lu)) : NULL;
2133 }
2134
2135 static inline struct cl_object_header *luh2coh(const struct lu_object_header *h)
2136 {
2137         return container_of0(h, struct cl_object_header, coh_lu);
2138 }
2139
2140 static inline struct cl_site *cl_object_site(const struct cl_object *obj)
2141 {
2142         return lu2cl_site(obj->co_lu.lo_dev->ld_site);
2143 }
2144
2145 static inline
2146 struct cl_object_header *cl_object_header(const struct cl_object *obj)
2147 {
2148         return luh2coh(obj->co_lu.lo_header);
2149 }
2150
2151 static inline int cl_device_init(struct cl_device *d, struct lu_device_type *t)
2152 {
2153         return lu_device_init(&d->cd_lu_dev, t);
2154 }
2155
2156 static inline void cl_device_fini(struct cl_device *d)
2157 {
2158         lu_device_fini(&d->cd_lu_dev);
2159 }
2160
2161 void cl_page_slice_add(struct cl_page *page, struct cl_page_slice *slice,
2162                        struct cl_object *obj, pgoff_t index,
2163                        const struct cl_page_operations *ops);
2164 void cl_lock_slice_add(struct cl_lock *lock, struct cl_lock_slice *slice,
2165                        struct cl_object *obj,
2166                        const struct cl_lock_operations *ops);
2167 void cl_io_slice_add(struct cl_io *io, struct cl_io_slice *slice,
2168                      struct cl_object *obj, const struct cl_io_operations *ops);
2169 void cl_req_slice_add(struct cl_req *req, struct cl_req_slice *slice,
2170                       struct cl_device *dev,
2171                       const struct cl_req_operations *ops);
2172 /** @} helpers */
2173
2174 /** \defgroup cl_object cl_object
2175  * @{ */
2176 struct cl_object *cl_object_top (struct cl_object *o);
2177 struct cl_object *cl_object_find(const struct lu_env *env, struct cl_device *cd,
2178                                  const struct lu_fid *fid,
2179                                  const struct cl_object_conf *c);
2180
2181 int  cl_object_header_init(struct cl_object_header *h);
2182 void cl_object_header_fini(struct cl_object_header *h);
2183 void cl_object_put        (const struct lu_env *env, struct cl_object *o);
2184 void cl_object_get        (struct cl_object *o);
2185 void cl_object_attr_lock  (struct cl_object *o);
2186 void cl_object_attr_unlock(struct cl_object *o);
2187 int  cl_object_attr_get(const struct lu_env *env, struct cl_object *obj,
2188                         struct cl_attr *attr);
2189 int  cl_object_attr_update(const struct lu_env *env, struct cl_object *obj,
2190                            const struct cl_attr *attr, unsigned valid);
2191 int  cl_object_glimpse    (const struct lu_env *env, struct cl_object *obj,
2192                            struct ost_lvb *lvb);
2193 int  cl_conf_set          (const struct lu_env *env, struct cl_object *obj,
2194                            const struct cl_object_conf *conf);
2195 int  cl_object_prune      (const struct lu_env *env, struct cl_object *obj);
2196 void cl_object_kill       (const struct lu_env *env, struct cl_object *obj);
2197 int cl_object_getstripe(const struct lu_env *env, struct cl_object *obj,
2198                         struct lov_user_md __user *lum);
2199 int cl_object_find_cbdata(const struct lu_env *env, struct cl_object *obj,
2200                           ldlm_iterator_t iter, void *data);
2201 int cl_object_fiemap(const struct lu_env *env, struct cl_object *obj,
2202                      struct ll_fiemap_info_key *fmkey, struct fiemap *fiemap,
2203                      size_t *buflen);
2204 int cl_object_obd_info_get(const struct lu_env *env, struct cl_object *obj,
2205                            struct obd_info *oinfo,
2206                            struct ptlrpc_request_set *set);
2207 int cl_object_data_version(const struct lu_env *env, struct cl_object *obj,
2208                            __u64 *version, int flags);
2209
2210 /**
2211  * Returns true, iff \a o0 and \a o1 are slices of the same object.
2212  */
2213 static inline int cl_object_same(struct cl_object *o0, struct cl_object *o1)
2214 {
2215         return cl_object_header(o0) == cl_object_header(o1);
2216 }
2217
2218 static inline void cl_object_page_init(struct cl_object *clob, int size)
2219 {
2220         clob->co_slice_off = cl_object_header(clob)->coh_page_bufsize;
2221         cl_object_header(clob)->coh_page_bufsize += cfs_size_round(size);
2222         WARN_ON(cl_object_header(clob)->coh_page_bufsize > 512);
2223 }
2224
2225 static inline void *cl_object_page_slice(struct cl_object *clob,
2226                                          struct cl_page *page)
2227 {
2228         return (void *)((char *)page + clob->co_slice_off);
2229 }
2230
2231 /**
2232  * Return refcount of cl_object.
2233  */
2234 static inline int cl_object_refc(struct cl_object *clob)
2235 {
2236         struct lu_object_header *header = clob->co_lu.lo_header;
2237         return atomic_read(&header->loh_ref);
2238 }
2239
2240 /** @} cl_object */
2241
2242 /** \defgroup cl_page cl_page
2243  * @{ */
2244 enum {
2245         CLP_GANG_OKAY = 0,
2246         CLP_GANG_RESCHED,
2247         CLP_GANG_AGAIN,
2248         CLP_GANG_ABORT
2249 };
2250 /* callback of cl_page_gang_lookup() */
2251
2252 struct cl_page *cl_page_find        (const struct lu_env *env,
2253                                      struct cl_object *obj,
2254                                      pgoff_t idx, struct page *vmpage,
2255                                      enum cl_page_type type);
2256 struct cl_page *cl_page_alloc       (const struct lu_env *env,
2257                                      struct cl_object *o, pgoff_t ind,
2258                                      struct page *vmpage,
2259                                      enum cl_page_type type);
2260 void            cl_page_get         (struct cl_page *page);
2261 void            cl_page_put         (const struct lu_env *env,
2262                                      struct cl_page *page);
2263 void            cl_page_print       (const struct lu_env *env, void *cookie,
2264                                      lu_printer_t printer,
2265                                      const struct cl_page *pg);
2266 void            cl_page_header_print(const struct lu_env *env, void *cookie,
2267                                      lu_printer_t printer,
2268                                      const struct cl_page *pg);
2269 struct cl_page *cl_vmpage_page      (struct page *vmpage, struct cl_object *obj);
2270 struct cl_page *cl_page_top         (struct cl_page *page);
2271
2272 const struct cl_page_slice *cl_page_at(const struct cl_page *page,
2273                                        const struct lu_device_type *dtype);
2274
2275 /**
2276  * \name ownership
2277  *
2278  * Functions dealing with the ownership of page by io.
2279  */
2280 /** @{ */
2281
2282 int  cl_page_own        (const struct lu_env *env,
2283                          struct cl_io *io, struct cl_page *page);
2284 int  cl_page_own_try    (const struct lu_env *env,
2285                          struct cl_io *io, struct cl_page *page);
2286 void cl_page_assume     (const struct lu_env *env,
2287                          struct cl_io *io, struct cl_page *page);
2288 void cl_page_unassume   (const struct lu_env *env,
2289                          struct cl_io *io, struct cl_page *pg);
2290 void cl_page_disown     (const struct lu_env *env,
2291                          struct cl_io *io, struct cl_page *page);
2292 int  cl_page_is_owned   (const struct cl_page *pg, const struct cl_io *io);
2293
2294 /** @} ownership */
2295
2296 /**
2297  * \name transfer
2298  *
2299  * Functions dealing with the preparation of a page for a transfer, and
2300  * tracking transfer state.
2301  */
2302 /** @{ */
2303 int  cl_page_prep       (const struct lu_env *env, struct cl_io *io,
2304                          struct cl_page *pg, enum cl_req_type crt);
2305 void cl_page_completion (const struct lu_env *env,
2306                          struct cl_page *pg, enum cl_req_type crt, int ioret);
2307 int  cl_page_make_ready (const struct lu_env *env, struct cl_page *pg,
2308                          enum cl_req_type crt);
2309 int  cl_page_cache_add  (const struct lu_env *env, struct cl_io *io,
2310                          struct cl_page *pg, enum cl_req_type crt);
2311 void cl_page_clip       (const struct lu_env *env, struct cl_page *pg,
2312                          int from, int to);
2313 int  cl_page_cancel     (const struct lu_env *env, struct cl_page *page);
2314 int  cl_page_flush      (const struct lu_env *env, struct cl_io *io,
2315                          struct cl_page *pg);
2316
2317 /** @} transfer */
2318
2319
2320 /**
2321  * \name helper routines
2322  * Functions to discard, delete and export a cl_page.
2323  */
2324 /** @{ */
2325 void    cl_page_discard(const struct lu_env *env, struct cl_io *io,
2326                         struct cl_page *pg);
2327 void    cl_page_delete(const struct lu_env *env, struct cl_page *pg);
2328 int     cl_page_is_vmlocked(const struct lu_env *env,
2329                             const struct cl_page *pg);
2330 void    cl_page_export(const struct lu_env *env,
2331                        struct cl_page *pg, int uptodate);
2332 loff_t  cl_offset(const struct cl_object *obj, pgoff_t idx);
2333 pgoff_t cl_index(const struct cl_object *obj, loff_t offset);
2334 size_t  cl_page_size(const struct cl_object *obj);
2335
2336 void cl_lock_print(const struct lu_env *env, void *cookie,
2337                    lu_printer_t printer, const struct cl_lock *lock);
2338 void cl_lock_descr_print(const struct lu_env *env, void *cookie,
2339                          lu_printer_t printer,
2340                          const struct cl_lock_descr *descr);
2341 /* @} helper */
2342
2343 /**
2344  * Data structure managing a client's cached pages. A count of
2345  * "unstable" pages is maintained, and an LRU of clean pages is
2346  * maintained. "unstable" pages are pages pinned by the ptlrpc
2347  * layer for recovery purposes.
2348  */
2349 struct cl_client_cache {
2350         /**
2351          * # of client cache refcount
2352          * # of users (OSCs) + 2 (held by llite and lov)
2353          */
2354         atomic_t                ccc_users;
2355         /**
2356          * # of threads are doing shrinking
2357          */
2358         unsigned int            ccc_lru_shrinkers;
2359         /**
2360          * # of LRU entries available
2361          */
2362         atomic_long_t           ccc_lru_left;
2363         /**
2364          * List of entities(OSCs) for this LRU cache
2365          */
2366         struct list_head        ccc_lru;
2367         /**
2368          * Max # of LRU entries
2369          */
2370         unsigned long           ccc_lru_max;
2371         /**
2372          * Lock to protect ccc_lru list
2373          */
2374         spinlock_t              ccc_lru_lock;
2375         /**
2376          * Set if unstable check is enabled
2377          */
2378         unsigned int            ccc_unstable_check:1;
2379         /**
2380          * # of unstable pages for this mount point
2381          */
2382         atomic_long_t           ccc_unstable_nr;
2383         /**
2384          * Waitq for awaiting unstable pages to reach zero.
2385          * Used at umounting time and signaled on BRW commit
2386          */
2387         wait_queue_head_t       ccc_unstable_waitq;
2388 };
2389 /**
2390  * cl_cache functions
2391  */
2392 struct cl_client_cache *cl_cache_init(unsigned long lru_page_max);
2393 void cl_cache_incref(struct cl_client_cache *cache);
2394 void cl_cache_decref(struct cl_client_cache *cache);
2395
2396 /** @} cl_page */
2397
2398 /** \defgroup cl_lock cl_lock
2399  * @{ */
2400 int cl_lock_request(const struct lu_env *env, struct cl_io *io,
2401                     struct cl_lock *lock);
2402 int cl_lock_init(const struct lu_env *env, struct cl_lock *lock,
2403                  const struct cl_io *io);
2404 void cl_lock_fini(const struct lu_env *env, struct cl_lock *lock);
2405 const struct cl_lock_slice *cl_lock_at(const struct cl_lock *lock,
2406                                        const struct lu_device_type *dtype);
2407 void cl_lock_release(const struct lu_env *env, struct cl_lock *lock);
2408
2409 int cl_lock_enqueue(const struct lu_env *env, struct cl_io *io,
2410                     struct cl_lock *lock, struct cl_sync_io *anchor);
2411 void cl_lock_cancel(const struct lu_env *env, struct cl_lock *lock);
2412
2413 /** @} cl_lock */
2414
2415 /** \defgroup cl_io cl_io
2416  * @{ */
2417
2418 int   cl_io_init         (const struct lu_env *env, struct cl_io *io,
2419                           enum cl_io_type iot, struct cl_object *obj);
2420 int   cl_io_sub_init     (const struct lu_env *env, struct cl_io *io,
2421                           enum cl_io_type iot, struct cl_object *obj);
2422 int   cl_io_rw_init      (const struct lu_env *env, struct cl_io *io,
2423                           enum cl_io_type iot, loff_t pos, size_t count);
2424 int   cl_io_loop         (const struct lu_env *env, struct cl_io *io);
2425
2426 void  cl_io_fini         (const struct lu_env *env, struct cl_io *io);
2427 int   cl_io_iter_init    (const struct lu_env *env, struct cl_io *io);
2428 void  cl_io_iter_fini    (const struct lu_env *env, struct cl_io *io);
2429 int   cl_io_lock         (const struct lu_env *env, struct cl_io *io);
2430 void  cl_io_unlock       (const struct lu_env *env, struct cl_io *io);
2431 int   cl_io_start        (const struct lu_env *env, struct cl_io *io);
2432 void  cl_io_end          (const struct lu_env *env, struct cl_io *io);
2433 int   cl_io_lock_add     (const struct lu_env *env, struct cl_io *io,
2434                           struct cl_io_lock_link *link);
2435 int   cl_io_lock_alloc_add(const struct lu_env *env, struct cl_io *io,
2436                            struct cl_lock_descr *descr);
2437 int   cl_io_submit_rw    (const struct lu_env *env, struct cl_io *io,
2438                           enum cl_req_type iot, struct cl_2queue *queue);
2439 int   cl_io_submit_sync  (const struct lu_env *env, struct cl_io *io,
2440                           enum cl_req_type iot, struct cl_2queue *queue,
2441                           long timeout);
2442 int   cl_io_commit_async (const struct lu_env *env, struct cl_io *io,
2443                           struct cl_page_list *queue, int from, int to,
2444                           cl_commit_cbt cb);
2445 int   cl_io_read_ahead   (const struct lu_env *env, struct cl_io *io,
2446                           pgoff_t start, struct cl_read_ahead *ra);
2447 void  cl_io_rw_advance   (const struct lu_env *env, struct cl_io *io,
2448                           size_t nob);
2449 int   cl_io_cancel       (const struct lu_env *env, struct cl_io *io,
2450                           struct cl_page_list *queue);
2451 int   cl_io_is_going     (const struct lu_env *env);
2452
2453 /**
2454  * True, iff \a io is an O_APPEND write(2).
2455  */
2456 static inline int cl_io_is_append(const struct cl_io *io)
2457 {
2458         return io->ci_type == CIT_WRITE && io->u.ci_wr.wr_append;
2459 }
2460
2461 static inline int cl_io_is_sync_write(const struct cl_io *io)
2462 {
2463         return io->ci_type == CIT_WRITE && io->u.ci_wr.wr_sync;
2464 }
2465
2466 static inline int cl_io_is_mkwrite(const struct cl_io *io)
2467 {
2468         return io->ci_type == CIT_FAULT && io->u.ci_fault.ft_mkwrite;
2469 }
2470
2471 /**
2472  * True, iff \a io is a truncate(2).
2473  */
2474 static inline int cl_io_is_trunc(const struct cl_io *io)
2475 {
2476         return io->ci_type == CIT_SETATTR &&
2477                 (io->u.ci_setattr.sa_valid & ATTR_SIZE);
2478 }
2479
2480 struct cl_io *cl_io_top(struct cl_io *io);
2481
2482 void cl_io_print(const struct lu_env *env, void *cookie,
2483                  lu_printer_t printer, const struct cl_io *io);
2484
2485 #define CL_IO_SLICE_CLEAN(foo_io, base)                                 \
2486 do {                                                                    \
2487         typeof(foo_io) __foo_io = (foo_io);                             \
2488                                                                         \
2489         CLASSERT(offsetof(typeof(*__foo_io), base) == 0);               \
2490         memset(&__foo_io->base + 1, 0,                                  \
2491                (sizeof *__foo_io) - sizeof __foo_io->base);             \
2492 } while (0)
2493
2494 /** @} cl_io */
2495
2496 /** \defgroup cl_page_list cl_page_list
2497  * @{ */
2498
2499 /**
2500  * Last page in the page list.
2501  */
2502 static inline struct cl_page *cl_page_list_last(struct cl_page_list *plist)
2503 {
2504         LASSERT(plist->pl_nr > 0);
2505         return list_entry(plist->pl_pages.prev, struct cl_page, cp_batch);
2506 }
2507
2508 static inline struct cl_page *cl_page_list_first(struct cl_page_list *plist)
2509 {
2510         LASSERT(plist->pl_nr > 0);
2511         return list_entry(plist->pl_pages.next, struct cl_page, cp_batch);
2512 }
2513
2514 /**
2515  * Iterate over pages in a page list.
2516  */
2517 #define cl_page_list_for_each(page, list)                               \
2518         list_for_each_entry((page), &(list)->pl_pages, cp_batch)
2519
2520 /**
2521  * Iterate over pages in a page list, taking possible removals into account.
2522  */
2523 #define cl_page_list_for_each_safe(page, temp, list)                    \
2524         list_for_each_entry_safe((page), (temp), &(list)->pl_pages, cp_batch)
2525
2526 void cl_page_list_init   (struct cl_page_list *plist);
2527 void cl_page_list_add    (struct cl_page_list *plist, struct cl_page *page);
2528 void cl_page_list_move   (struct cl_page_list *dst, struct cl_page_list *src,
2529                           struct cl_page *page);
2530 void cl_page_list_move_head(struct cl_page_list *dst, struct cl_page_list *src,
2531                           struct cl_page *page);
2532 void cl_page_list_splice (struct cl_page_list *list,
2533                           struct cl_page_list *head);
2534 void cl_page_list_del    (const struct lu_env *env,
2535                           struct cl_page_list *plist, struct cl_page *page);
2536 void cl_page_list_disown (const struct lu_env *env,
2537                           struct cl_io *io, struct cl_page_list *plist);
2538 int  cl_page_list_own    (const struct lu_env *env,
2539                           struct cl_io *io, struct cl_page_list *plist);
2540 void cl_page_list_assume (const struct lu_env *env,
2541                           struct cl_io *io, struct cl_page_list *plist);
2542 void cl_page_list_discard(const struct lu_env *env,
2543                           struct cl_io *io, struct cl_page_list *plist);
2544 void cl_page_list_fini   (const struct lu_env *env, struct cl_page_list *plist);
2545
2546 void cl_2queue_init     (struct cl_2queue *queue);
2547 void cl_2queue_add      (struct cl_2queue *queue, struct cl_page *page);
2548 void cl_2queue_disown   (const struct lu_env *env,
2549                          struct cl_io *io, struct cl_2queue *queue);
2550 void cl_2queue_assume   (const struct lu_env *env,
2551                          struct cl_io *io, struct cl_2queue *queue);
2552 void cl_2queue_discard  (const struct lu_env *env,
2553                          struct cl_io *io, struct cl_2queue *queue);
2554 void cl_2queue_fini     (const struct lu_env *env, struct cl_2queue *queue);
2555 void cl_2queue_init_page(struct cl_2queue *queue, struct cl_page *page);
2556
2557 /** @} cl_page_list */
2558
2559 /** \defgroup cl_req cl_req
2560  * @{ */
2561 struct cl_req *cl_req_alloc(const struct lu_env *env, struct cl_page *page,
2562                             enum cl_req_type crt, int nr_objects);
2563
2564 void cl_req_page_add  (const struct lu_env *env, struct cl_req *req,
2565                        struct cl_page *page);
2566 void cl_req_page_done (const struct lu_env *env, struct cl_page *page);
2567 int  cl_req_prep      (const struct lu_env *env, struct cl_req *req);
2568 void cl_req_attr_set(const struct lu_env *env, struct cl_req *req,
2569                      struct cl_req_attr *attr, u64 flags);
2570 void cl_req_completion(const struct lu_env *env, struct cl_req *req, int ioret);
2571
2572 /** \defgroup cl_sync_io cl_sync_io
2573  * @{ */
2574
2575 /**
2576  * Anchor for synchronous transfer. This is allocated on a stack by thread
2577  * doing synchronous transfer, and a pointer to this structure is set up in
2578  * every page submitted for transfer. Transfer completion routine updates
2579  * anchor and wakes up waiting thread when transfer is complete.
2580  */
2581 struct cl_sync_io {
2582         /** number of pages yet to be transferred. */
2583         atomic_t                csi_sync_nr;
2584         /** error code. */
2585         int                     csi_sync_rc;
2586         /** barrier of destroy this structure */
2587         atomic_t                csi_barrier;
2588         /** completion to be signaled when transfer is complete. */
2589         wait_queue_head_t       csi_waitq;
2590         /** callback to invoke when this IO is finished */
2591         void                    (*csi_end_io)(const struct lu_env *,
2592                                               struct cl_sync_io *);
2593 };
2594
2595 void cl_sync_io_init(struct cl_sync_io *anchor, int nr,
2596                      void (*end)(const struct lu_env *, struct cl_sync_io *));
2597 int  cl_sync_io_wait(const struct lu_env *env, struct cl_sync_io *anchor,
2598                      long timeout);
2599 void cl_sync_io_note(const struct lu_env *env, struct cl_sync_io *anchor,
2600                      int ioret);
2601 void cl_sync_io_end(const struct lu_env *env, struct cl_sync_io *anchor);
2602
2603 /** @} cl_sync_io */
2604
2605 /** @} cl_req */
2606
2607 /** \defgroup cl_env cl_env
2608  *
2609  * lu_env handling for a client.
2610  *
2611  * lu_env is an environment within which lustre code executes. Its major part
2612  * is lu_context---a fast memory allocation mechanism that is used to conserve
2613  * precious kernel stack space. Originally lu_env was designed for a server,
2614  * where
2615  *
2616  *     - there is a (mostly) fixed number of threads, and
2617  *
2618  *     - call chains have no non-lustre portions inserted between lustre code.
2619  *
2620  * On a client both these assumtpion fails, because every user thread can
2621  * potentially execute lustre code as part of a system call, and lustre calls
2622  * into VFS or MM that call back into lustre.
2623  *
2624  * To deal with that, cl_env wrapper functions implement the following
2625  * optimizations:
2626  *
2627  *     - allocation and destruction of environment is amortized by caching no
2628  *     longer used environments instead of destroying them;
2629  *
2630  *     - there is a notion of "current" environment, attached to the kernel
2631  *     data structure representing current thread Top-level lustre code
2632  *     allocates an environment and makes it current, then calls into
2633  *     non-lustre code, that in turn calls lustre back. Low-level lustre
2634  *     code thus called can fetch environment created by the top-level code
2635  *     and reuse it, avoiding additional environment allocation.
2636  *       Right now, three interfaces can attach the cl_env to running thread:
2637  *       - cl_env_get
2638  *       - cl_env_implant
2639  *       - cl_env_reexit(cl_env_reenter had to be called priorly)
2640  *
2641  * \see lu_env, lu_context, lu_context_key
2642  * @{ */
2643
2644 struct cl_env_nest {
2645         int   cen_refcheck;
2646         void *cen_cookie;
2647 };
2648
2649 struct lu_env *cl_env_peek       (int *refcheck);
2650 struct lu_env *cl_env_get        (int *refcheck);
2651 struct lu_env *cl_env_alloc      (int *refcheck, __u32 tags);
2652 struct lu_env *cl_env_nested_get (struct cl_env_nest *nest);
2653 void           cl_env_put        (struct lu_env *env, int *refcheck);
2654 void           cl_env_nested_put (struct cl_env_nest *nest, struct lu_env *env);
2655 void          *cl_env_reenter    (void);
2656 void           cl_env_reexit     (void *cookie);
2657 void           cl_env_implant    (struct lu_env *env, int *refcheck);
2658 void           cl_env_unplant    (struct lu_env *env, int *refcheck);
2659 unsigned       cl_env_cache_purge(unsigned nr);
2660 struct lu_env *cl_env_percpu_get (void);
2661 void           cl_env_percpu_put (struct lu_env *env);
2662
2663 /** @} cl_env */
2664
2665 /*
2666  * Misc
2667  */
2668 void cl_attr2lvb(struct ost_lvb *lvb, const struct cl_attr *attr);
2669 void cl_lvb2attr(struct cl_attr *attr, const struct ost_lvb *lvb);
2670
2671 struct cl_device *cl_type_setup(const struct lu_env *env, struct lu_site *site,
2672                                 struct lu_device_type *ldt,
2673                                 struct lu_device *next);
2674 /** @} clio */
2675
2676 int cl_global_init(void);
2677 void cl_global_fini(void);
2678
2679 #endif /* _LINUX_CL_OBJECT_H */