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