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