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