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