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