1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2 * vim:expandtab:shiftwidth=8:tabstop=8:
6 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 only,
10 * as published by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License version 2 for more details (a copy is included
16 * in the LICENSE file that accompanied this code).
18 * You should have received a copy of the GNU General Public License
19 * version 2 along with this program; If not, see
20 * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
22 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23 * CA 95054 USA or visit www.sun.com if you need additional information or
29 * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
30 * Use is subject to license terms.
33 * This file is part of Lustre, http://www.lustre.org/
34 * Lustre is a trademark of Sun Microsystems, Inc.
36 #ifndef _LUSTRE_CL_OBJECT_H
37 #define _LUSTRE_CL_OBJECT_H
39 /** \defgroup clio clio
41 * Client objects implement io operations and cache pages.
43 * Examples: lov and osc are implementations of cl interface.
45 * Big Theory Statement.
49 * Client implementation is based on the following data-types:
55 * - cl_lock represents an extent lock on an object.
57 * - cl_io represents high-level i/o activity such as whole read/write
58 * system call, or write-out of pages from under the lock being
59 * canceled. cl_io has sub-ios that can be stopped and resumed
60 * independently, thus achieving high degree of transfer
61 * parallelism. Single cl_io can be advanced forward by
62 * the multiple threads (although in the most usual case of
63 * read/write system call it is associated with the single user
64 * thread, that issued the system call).
66 * - cl_req represents a collection of pages for a transfer. cl_req is
67 * constructed by req-forming engine that tries to saturate
68 * transport with large and continuous transfers.
72 * - to avoid confusion high-level I/O operation like read or write system
73 * call is referred to as "an io", whereas low-level I/O operation, like
74 * RPC, is referred to as "a transfer"
76 * - "generic code" means generic (not file system specific) code in the
77 * hosting environment. "cl-code" means code (mostly in cl_*.c files) that
78 * is not layer specific.
84 * - cl_object_header::coh_page_guard
85 * - cl_object_header::coh_lock_guard
88 * See the top comment in cl_object.c for the description of overall locking and
89 * reference-counting design.
91 * See comments below for the description of i/o, page, and dlm-locking
98 * super-class definitions.
100 #include <lu_object.h>
103 # include <linux/mutex.h>
104 # include <linux/radix-tree.h>
110 struct cl_device_operations;
113 struct cl_object_page_operations;
114 struct cl_object_lock_operations;
117 struct cl_page_slice;
119 struct cl_lock_slice;
121 struct cl_lock_operations;
122 struct cl_page_operations;
131 * Operations for each data device in the client stack.
133 * \see vvp_cl_ops, lov_cl_ops, lovsub_cl_ops, osc_cl_ops
135 struct cl_device_operations {
137 * Initialize cl_req. This method is called top-to-bottom on all
138 * devices in the stack to get them a chance to allocate layer-private
139 * data, and to attach them to the cl_req by calling
140 * cl_req_slice_add().
142 * \see osc_req_init(), lov_req_init(), lovsub_req_init()
143 * \see ccc_req_init()
145 int (*cdo_req_init)(const struct lu_env *env, struct cl_device *dev,
150 * Device in the client stack.
152 * \see ccc_device, lov_device, lovsub_device, osc_device
156 struct lu_device cd_lu_dev;
157 /** Per-layer operation vector. */
158 const struct cl_device_operations *cd_ops;
161 /** \addtogroup cl_object cl_object
164 * "Data attributes" of cl_object. Data attributes can be updated
165 * independently for a sub-object, and top-object's attributes are calculated
166 * from sub-objects' ones.
169 /** Object size, in bytes */
172 * Known minimal size, in bytes.
174 * This is only valid when at least one DLM lock is held.
177 /** Modification time. Measured in seconds since epoch. */
179 /** Access time. Measured in seconds since epoch. */
181 /** Change time. Measured in seconds since epoch. */
184 * Blocks allocated to this cl_object on the server file system.
186 * \todo XXX An interface for block size is needed.
190 * User identifier for quota purposes.
194 * Group identifier for quota purposes.
200 * Fields in cl_attr that are being set.
214 * Sub-class of lu_object with methods common for objects on the client
217 * cl_object: represents a regular file system object, both a file and a
218 * stripe. cl_object is based on lu_object: it is identified by a fid,
219 * layered, cached, hashed, and lrued. Important distinction with the server
220 * side, where md_object and dt_object are used, is that cl_object "fans out"
221 * at the lov/sns level: depending on the file layout, single file is
222 * represented as a set of "sub-objects" (stripes). At the implementation
223 * level, struct lov_object contains an array of cl_objects. Each sub-object
224 * is a full-fledged cl_object, having its fid, living in the lru and hash
227 * This leads to the next important difference with the server side: on the
228 * client, it's quite usual to have objects with the different sequence of
229 * layers. For example, typical top-object is composed of the following
235 * whereas its sub-objects are composed of
240 * layers. Here "lovsub" is a mostly dummy layer, whose purpose is to keep
241 * track of the object-subobject relationship.
243 * Sub-objects are not cached independently: when top-object is about to
244 * be discarded from the memory, all its sub-objects are torn-down and
247 * \see ccc_object, lov_object, lovsub_object, osc_object
251 struct lu_object co_lu;
252 /** per-object-layer operations */
253 const struct cl_object_operations *co_ops;
257 * Description of the client object configuration. This is used for the
258 * creation of a new client object that is identified by a more state than
261 struct cl_object_conf {
263 struct lu_object_conf coc_lu;
266 * Object layout. This is consumed by lov.
268 struct lustre_md *coc_md;
270 * Description of particular stripe location in the
271 * cluster. This is consumed by osc.
273 struct lov_oinfo *coc_oinfo;
276 * VFS inode. This is consumed by vvp.
278 struct inode *coc_inode;
282 * Operations implemented for each cl object layer.
284 * \see vvp_ops, lov_ops, lovsub_ops, osc_ops
286 struct cl_object_operations {
288 * Initialize page slice for this layer. Called top-to-bottom through
289 * every object layer when a new cl_page is instantiated. Layer
290 * keeping private per-page data, or requiring its own page operations
291 * vector should allocate these data here, and attach then to the page
292 * by calling cl_page_slice_add(). \a vmpage is locked (in the VM
295 * \retval NULL success.
297 * \retval ERR_PTR(errno) failure code.
299 * \retval valid-pointer pointer to already existing referenced page
300 * to be used instead of newly created.
302 struct cl_page *(*coo_page_init)(const struct lu_env *env,
303 struct cl_object *obj,
304 struct cl_page *page,
307 * Initialize lock slice for this layer. Called top-to-bottom through
308 * every object layer when a new cl_lock is instantiated. Layer
309 * keeping private per-lock data, or requiring its own lock operations
310 * vector should allocate these data here, and attach then to the lock
311 * by calling cl_lock_slice_add(). Mandatory.
313 int (*coo_lock_init)(const struct lu_env *env,
314 struct cl_object *obj, struct cl_lock *lock,
315 const struct cl_io *io);
317 * Initialize io state for a given layer.
319 * called top-to-bottom once per io existence to initialize io
320 * state. If layer wants to keep some state for this type of io, it
321 * has to embed struct cl_io_slice in lu_env::le_ses, and register
322 * slice with cl_io_slice_add(). It is guaranteed that all threads
323 * participating in this io share the same session.
325 int (*coo_io_init)(const struct lu_env *env,
326 struct cl_object *obj, struct cl_io *io);
328 * Fill portion of \a attr that this layer controls. This method is
329 * called top-to-bottom through all object layers.
331 * \pre cl_object_header::coh_attr_guard of the top-object is locked.
333 * \return 0: to continue
334 * \return +ve: to stop iterating through layers (but 0 is returned
335 * from enclosing cl_object_attr_get())
336 * \return -ve: to signal error
338 int (*coo_attr_get)(const struct lu_env *env, struct cl_object *obj,
339 struct cl_attr *attr);
343 * \a valid is a bitmask composed from enum #cl_attr_valid, and
344 * indicating what attributes are to be set.
346 * \pre cl_object_header::coh_attr_guard of the top-object is locked.
348 * \return the same convention as for
349 * cl_object_operations::coo_attr_get() is used.
351 int (*coo_attr_set)(const struct lu_env *env, struct cl_object *obj,
352 const struct cl_attr *attr, unsigned valid);
354 * Update object configuration. Called top-to-bottom to modify object
357 * XXX error conditions and handling.
359 int (*coo_conf_set)(const struct lu_env *env, struct cl_object *obj,
360 const struct cl_object_conf *conf);
362 * Glimpse ast. Executed when glimpse ast arrives for a lock on this
363 * object. Layers are supposed to fill parts of \a lvb that will be
364 * shipped to the glimpse originator as a glimpse result.
366 * \see ccc_object_glimpse(), lovsub_object_glimpse(),
367 * \see osc_object_glimpse()
369 int (*coo_glimpse)(const struct lu_env *env,
370 const struct cl_object *obj, struct ost_lvb *lvb);
374 * Extended header for client object.
376 struct cl_object_header {
377 /** Standard lu_object_header. cl_object::co_lu::lo_header points
379 struct lu_object_header coh_lu;
381 * \todo XXX move locks below to the separate cache-lines, they are
382 * mostly useless otherwise.
385 /** Lock protecting page tree. */
386 cfs_spinlock_t coh_page_guard;
387 /** Lock protecting lock list. */
388 cfs_spinlock_t coh_lock_guard;
390 /** Radix tree of cl_page's, cached for this object. */
391 struct radix_tree_root coh_tree;
392 /** # of pages in radix tree. */
393 unsigned long coh_pages;
394 /** List of cl_lock's granted for this object. */
395 cfs_list_t coh_locks;
398 * Parent object. It is assumed that an object has a well-defined
399 * parent, but not a well-defined child (there may be multiple
400 * sub-objects, for the same top-object). cl_object_header::coh_parent
401 * field allows certain code to be written generically, without
402 * limiting possible cl_object layouts unduly.
404 struct cl_object_header *coh_parent;
406 * Protects consistency between cl_attr of parent object and
407 * attributes of sub-objects, that the former is calculated ("merged")
410 * \todo XXX this can be read/write lock if needed.
412 cfs_spinlock_t coh_attr_guard;
414 * Number of objects above this one: 0 for a top-object, 1 for its
417 unsigned coh_nesting;
421 * Helper macro: iterate over all layers of the object \a obj, assigning every
422 * layer top-to-bottom to \a slice.
424 #define cl_object_for_each(slice, obj) \
425 cfs_list_for_each_entry((slice), \
426 &(obj)->co_lu.lo_header->loh_layers, \
429 * Helper macro: iterate over all layers of the object \a obj, assigning every
430 * layer bottom-to-top to \a slice.
432 #define cl_object_for_each_reverse(slice, obj) \
433 cfs_list_for_each_entry_reverse((slice), \
434 &(obj)->co_lu.lo_header->loh_layers, \
439 #define pgoff_t unsigned long
442 #define CL_PAGE_EOF ((pgoff_t)~0ull)
444 /** \addtogroup cl_page cl_page
448 * Layered client page.
450 * cl_page: represents a portion of a file, cached in the memory. All pages
451 * of the given file are of the same size, and are kept in the radix tree
452 * hanging off the cl_object. cl_page doesn't fan out, but as sub-objects
453 * of the top-level file object are first class cl_objects, they have their
454 * own radix trees of pages and hence page is implemented as a sequence of
455 * struct cl_pages's, linked into double-linked list through
456 * cl_page::cp_parent and cl_page::cp_child pointers, each residing in the
457 * corresponding radix tree at the corresponding logical offset.
459 * cl_page is associated with VM page of the hosting environment (struct
460 * page in Linux kernel, for example), cfs_page_t. It is assumed, that this
461 * association is implemented by one of cl_page layers (top layer in the
462 * current design) that
464 * - intercepts per-VM-page call-backs made by the environment (e.g.,
467 * - translates state (page flag bits) and locking between lustre and
470 * The association between cl_page and cfs_page_t is immutable and
471 * established when cl_page is created.
473 * cl_page can be "owned" by a particular cl_io (see below), guaranteeing
474 * this io an exclusive access to this page w.r.t. other io attempts and
475 * various events changing page state (such as transfer completion, or
476 * eviction of the page from the memory). Note, that in general cl_io
477 * cannot be identified with a particular thread, and page ownership is not
478 * exactly equal to the current thread holding a lock on the page. Layer
479 * implementing association between cl_page and cfs_page_t has to implement
480 * ownership on top of available synchronization mechanisms.
482 * While lustre client maintains the notion of an page ownership by io,
483 * hosting MM/VM usually has its own page concurrency control
484 * mechanisms. For example, in Linux, page access is synchronized by the
485 * per-page PG_locked bit-lock, and generic kernel code (generic_file_*())
486 * takes care to acquire and release such locks as necessary around the
487 * calls to the file system methods (->readpage(), ->prepare_write(),
488 * ->commit_write(), etc.). This leads to the situation when there are two
489 * different ways to own a page in the client:
491 * - client code explicitly and voluntary owns the page (cl_page_own());
493 * - VM locks a page and then calls the client, that has "to assume"
494 * the ownership from the VM (cl_page_assume()).
496 * Dual methods to release ownership are cl_page_disown() and
497 * cl_page_unassume().
499 * cl_page is reference counted (cl_page::cp_ref). When reference counter
500 * drops to 0, the page is returned to the cache, unless it is in
501 * cl_page_state::CPS_FREEING state, in which case it is immediately
504 * The general logic guaranteeing the absence of "existential races" for
505 * pages is the following:
507 * - there are fixed known ways for a thread to obtain a new reference
510 * - by doing a lookup in the cl_object radix tree, protected by the
513 * - by starting from VM-locked cfs_page_t and following some
514 * hosting environment method (e.g., following ->private pointer in
515 * the case of Linux kernel), see cl_vmpage_page();
517 * - when the page enters cl_page_state::CPS_FREEING state, all these
518 * ways are severed with the proper synchronization
519 * (cl_page_delete());
521 * - entry into cl_page_state::CPS_FREEING is serialized by the VM page
524 * - no new references to the page in cl_page_state::CPS_FREEING state
525 * are allowed (checked in cl_page_get()).
527 * Together this guarantees that when last reference to a
528 * cl_page_state::CPS_FREEING page is released, it is safe to destroy the
529 * page, as neither references to it can be acquired at that point, nor
532 * cl_page is a state machine. States are enumerated in enum
533 * cl_page_state. Possible state transitions are enumerated in
534 * cl_page_state_set(). State transition process (i.e., actual changing of
535 * cl_page::cp_state field) is protected by the lock on the underlying VM
538 * Linux Kernel implementation.
540 * Binding between cl_page and cfs_page_t (which is a typedef for
541 * struct page) is implemented in the vvp layer. cl_page is attached to the
542 * ->private pointer of the struct page, together with the setting of
543 * PG_private bit in page->flags, and acquiring additional reference on the
544 * struct page (much like struct buffer_head, or any similar file system
545 * private data structures).
547 * PG_locked lock is used to implement both ownership and transfer
548 * synchronization, that is, page is VM-locked in CPS_{OWNED,PAGE{IN,OUT}}
549 * states. No additional references are acquired for the duration of the
552 * \warning *THIS IS NOT* the behavior expected by the Linux kernel, where
553 * write-out is "protected" by the special PG_writeback bit.
557 * States of cl_page. cl_page.c assumes particular order here.
559 * The page state machine is rather crude, as it doesn't recognize finer page
560 * states like "dirty" or "up to date". This is because such states are not
561 * always well defined for the whole stack (see, for example, the
562 * implementation of the read-ahead, that hides page up-to-dateness to track
563 * cache hits accurately). Such sub-states are maintained by the layers that
564 * are interested in them.
568 * Page is in the cache, un-owned. Page leaves cached state in the
571 * - [cl_page_state::CPS_OWNED] io comes across the page and
574 * - [cl_page_state::CPS_PAGEOUT] page is dirty, the
575 * req-formation engine decides that it wants to include this page
576 * into an cl_req being constructed, and yanks it from the cache;
578 * - [cl_page_state::CPS_FREEING] VM callback is executed to
579 * evict the page form the memory;
581 * \invariant cl_page::cp_owner == NULL && cl_page::cp_req == NULL
585 * Page is exclusively owned by some cl_io. Page may end up in this
586 * state as a result of
588 * - io creating new page and immediately owning it;
590 * - [cl_page_state::CPS_CACHED] io finding existing cached page
593 * - [cl_page_state::CPS_OWNED] io finding existing owned page
594 * and waiting for owner to release the page;
596 * Page leaves owned state in the following cases:
598 * - [cl_page_state::CPS_CACHED] io decides to leave the page in
599 * the cache, doing nothing;
601 * - [cl_page_state::CPS_PAGEIN] io starts read transfer for
604 * - [cl_page_state::CPS_PAGEOUT] io starts immediate write
605 * transfer for this page;
607 * - [cl_page_state::CPS_FREEING] io decides to destroy this
608 * page (e.g., as part of truncate or extent lock cancellation).
610 * \invariant cl_page::cp_owner != NULL && cl_page::cp_req == NULL
614 * Page is being written out, as a part of a transfer. This state is
615 * entered when req-formation logic decided that it wants this page to
616 * be sent through the wire _now_. Specifically, it means that once
617 * this state is achieved, transfer completion handler (with either
618 * success or failure indication) is guaranteed to be executed against
619 * this page independently of any locks and any scheduling decisions
620 * made by the hosting environment (that effectively means that the
621 * page is never put into cl_page_state::CPS_PAGEOUT state "in
622 * advance". This property is mentioned, because it is important when
623 * reasoning about possible dead-locks in the system). The page can
624 * enter this state as a result of
626 * - [cl_page_state::CPS_OWNED] an io requesting an immediate
627 * write-out of this page, or
629 * - [cl_page_state::CPS_CACHED] req-forming engine deciding
630 * that it has enough dirty pages cached to issue a "good"
633 * The page leaves cl_page_state::CPS_PAGEOUT state when the transfer
634 * is completed---it is moved into cl_page_state::CPS_CACHED state.
636 * Underlying VM page is locked for the duration of transfer.
638 * \invariant: cl_page::cp_owner == NULL && cl_page::cp_req != NULL
642 * Page is being read in, as a part of a transfer. This is quite
643 * similar to the cl_page_state::CPS_PAGEOUT state, except that
644 * read-in is always "immediate"---there is no such thing a sudden
645 * construction of read cl_req from cached, presumably not up to date,
648 * Underlying VM page is locked for the duration of transfer.
650 * \invariant: cl_page::cp_owner == NULL && cl_page::cp_req != NULL
654 * Page is being destroyed. This state is entered when client decides
655 * that page has to be deleted from its host object, as, e.g., a part
658 * Once this state is reached, there is no way to escape it.
660 * \invariant: cl_page::cp_owner == NULL && cl_page::cp_req == NULL
667 /** Host page, the page is from the host inode which the cl_page
671 /** Transient page, the transient cl_page is used to bind a cl_page
672 * to vmpage which is not belonging to the same object of cl_page.
673 * it is used in DirectIO, lockless IO and liblustre. */
678 * Flags maintained for every cl_page.
682 * Set when pagein completes. Used for debugging (read completes at
683 * most once for a page).
685 CPF_READ_COMPLETED = 1 << 0
689 * Fields are protected by the lock on cfs_page_t, except for atomics and
692 * \invariant Data type invariants are in cl_page_invariant(). Basically:
693 * cl_page::cp_parent and cl_page::cp_child are a well-formed double-linked
694 * list, consistent with the parent/child pointers in the cl_page::cp_obj and
695 * cl_page::cp_owner (when set).
698 /** Reference counter. */
700 /** An object this page is a part of. Immutable after creation. */
701 struct cl_object *cp_obj;
702 /** Logical page index within the object. Immutable after creation. */
704 /** List of slices. Immutable after creation. */
705 cfs_list_t cp_layers;
706 /** Parent page, NULL for top-level page. Immutable after creation. */
707 struct cl_page *cp_parent;
708 /** Lower-layer page. NULL for bottommost page. Immutable after
710 struct cl_page *cp_child;
712 * Page state. This field is const to avoid accidental update, it is
713 * modified only internally within cl_page.c. Protected by a VM lock.
715 const enum cl_page_state cp_state;
717 * Linkage of pages within some group. Protected by
718 * cl_page::cp_mutex. */
720 /** Mutex serializing membership of a page in a batch. */
721 cfs_mutex_t cp_mutex;
722 /** Linkage of pages within cl_req. */
723 cfs_list_t cp_flight;
724 /** Transfer error. */
728 * Page type. Only CPT_TRANSIENT is used so far. Immutable after
731 enum cl_page_type cp_type;
734 * Owning IO in cl_page_state::CPS_OWNED state. Sub-page can be owned
735 * by sub-io. Protected by a VM lock.
737 struct cl_io *cp_owner;
739 * Debug information, the task is owning the page.
743 * Owning IO request in cl_page_state::CPS_PAGEOUT and
744 * cl_page_state::CPS_PAGEIN states. This field is maintained only in
745 * the top-level pages. Protected by a VM lock.
747 struct cl_req *cp_req;
748 /** List of references to this page, for debugging. */
749 struct lu_ref cp_reference;
750 /** Link to an object, for debugging. */
751 struct lu_ref_link *cp_obj_ref;
752 /** Link to a queue, for debugging. */
753 struct lu_ref_link *cp_queue_ref;
754 /** Per-page flags from enum cl_page_flags. Protected by a VM lock. */
756 /** Assigned if doing a sync_io */
757 struct cl_sync_io *cp_sync_io;
761 * Per-layer part of cl_page.
763 * \see ccc_page, lov_page, osc_page
765 struct cl_page_slice {
766 struct cl_page *cpl_page;
768 * Object slice corresponding to this page slice. Immutable after
771 struct cl_object *cpl_obj;
772 const struct cl_page_operations *cpl_ops;
773 /** Linkage into cl_page::cp_layers. Immutable after creation. */
774 cfs_list_t cpl_linkage;
778 * Lock mode. For the client extent locks.
780 * \warning: cl_lock_mode_match() assumes particular ordering here.
785 * Mode of a lock that protects no data, and exists only as a
786 * placeholder. This is used for `glimpse' requests. A phantom lock
787 * might get promoted to real lock at some point.
796 * Requested transfer type.
806 * Per-layer page operations.
808 * Methods taking an \a io argument are for the activity happening in the
809 * context of given \a io. Page is assumed to be owned by that io, except for
810 * the obvious cases (like cl_page_operations::cpo_own()).
812 * \see vvp_page_ops, lov_page_ops, osc_page_ops
814 struct cl_page_operations {
816 * cl_page<->cfs_page_t methods. Only one layer in the stack has to
817 * implement these. Current code assumes that this functionality is
818 * provided by the topmost layer, see cl_page_disown0() as an example.
822 * \return the underlying VM page. Optional.
824 cfs_page_t *(*cpo_vmpage)(const struct lu_env *env,
825 const struct cl_page_slice *slice);
827 * Called when \a io acquires this page into the exclusive
828 * ownership. When this method returns, it is guaranteed that the is
829 * not owned by other io, and no transfer is going on against
833 * \see vvp_page_own(), lov_page_own()
835 int (*cpo_own)(const struct lu_env *env,
836 const struct cl_page_slice *slice,
837 struct cl_io *io, int nonblock);
838 /** Called when ownership it yielded. Optional.
840 * \see cl_page_disown()
841 * \see vvp_page_disown()
843 void (*cpo_disown)(const struct lu_env *env,
844 const struct cl_page_slice *slice, struct cl_io *io);
846 * Called for a page that is already "owned" by \a io from VM point of
849 * \see cl_page_assume()
850 * \see vvp_page_assume(), lov_page_assume()
852 void (*cpo_assume)(const struct lu_env *env,
853 const struct cl_page_slice *slice, struct cl_io *io);
854 /** Dual to cl_page_operations::cpo_assume(). Optional. Called
855 * bottom-to-top when IO releases a page without actually unlocking
858 * \see cl_page_unassume()
859 * \see vvp_page_unassume()
861 void (*cpo_unassume)(const struct lu_env *env,
862 const struct cl_page_slice *slice,
865 * Announces whether the page contains valid data or not by \a uptodate.
867 * \see cl_page_export()
868 * \see vvp_page_export()
870 void (*cpo_export)(const struct lu_env *env,
871 const struct cl_page_slice *slice, int uptodate);
873 * Unmaps page from the user space (if it is mapped).
875 * \see cl_page_unmap()
876 * \see vvp_page_unmap()
878 int (*cpo_unmap)(const struct lu_env *env,
879 const struct cl_page_slice *slice, struct cl_io *io);
881 * Checks whether underlying VM page is locked (in the suitable
882 * sense). Used for assertions.
884 * \retval -EBUSY: page is protected by a lock of a given mode;
885 * \retval -ENODATA: page is not protected by a lock;
886 * \retval 0: this layer cannot decide. (Should never happen.)
888 int (*cpo_is_vmlocked)(const struct lu_env *env,
889 const struct cl_page_slice *slice);
895 * Called when page is truncated from the object. Optional.
897 * \see cl_page_discard()
898 * \see vvp_page_discard(), osc_page_discard()
900 void (*cpo_discard)(const struct lu_env *env,
901 const struct cl_page_slice *slice,
904 * Called when page is removed from the cache, and is about to being
905 * destroyed. Optional.
907 * \see cl_page_delete()
908 * \see vvp_page_delete(), osc_page_delete()
910 void (*cpo_delete)(const struct lu_env *env,
911 const struct cl_page_slice *slice);
912 /** Destructor. Frees resources and slice itself. */
913 void (*cpo_fini)(const struct lu_env *env,
914 struct cl_page_slice *slice);
917 * Checks whether the page is protected by a cl_lock. This is a
918 * per-layer method, because certain layers have ways to check for the
919 * lock much more efficiently than through the generic locks scan, or
920 * implement locking mechanisms separate from cl_lock, e.g.,
921 * LL_FILE_GROUP_LOCKED in vvp. If \a pending is true, check for locks
922 * being canceled, or scheduled for cancellation as soon as the last
923 * user goes away, too.
925 * \retval -EBUSY: page is protected by a lock of a given mode;
926 * \retval -ENODATA: page is not protected by a lock;
927 * \retval 0: this layer cannot decide.
929 * \see cl_page_is_under_lock()
931 int (*cpo_is_under_lock)(const struct lu_env *env,
932 const struct cl_page_slice *slice,
936 * Optional debugging helper. Prints given page slice.
938 * \see cl_page_print()
940 int (*cpo_print)(const struct lu_env *env,
941 const struct cl_page_slice *slice,
942 void *cookie, lu_printer_t p);
946 * Transfer methods. See comment on cl_req for a description of
947 * transfer formation and life-cycle.
952 * Request type dependent vector of operations.
954 * Transfer operations depend on transfer mode (cl_req_type). To avoid
955 * passing transfer mode to each and every of these methods, and to
956 * avoid branching on request type inside of the methods, separate
957 * methods for cl_req_type:CRT_READ and cl_req_type:CRT_WRITE are
958 * provided. That is, method invocation usually looks like
960 * slice->cp_ops.io[req->crq_type].cpo_method(env, slice, ...);
964 * Called when a page is submitted for a transfer as a part of
967 * \return 0 : page is eligible for submission;
968 * \return -EALREADY : skip this page;
969 * \return -ve : error.
971 * \see cl_page_prep()
973 int (*cpo_prep)(const struct lu_env *env,
974 const struct cl_page_slice *slice,
977 * Completion handler. This is guaranteed to be eventually
978 * fired after cl_page_operations::cpo_prep() or
979 * cl_page_operations::cpo_make_ready() call.
981 * This method can be called in a non-blocking context. It is
982 * guaranteed however, that the page involved and its object
983 * are pinned in memory (and, hence, calling cl_page_put() is
986 * \see cl_page_completion()
988 void (*cpo_completion)(const struct lu_env *env,
989 const struct cl_page_slice *slice,
992 * Called when cached page is about to be added to the
993 * cl_req as a part of req formation.
995 * \return 0 : proceed with this page;
996 * \return -EAGAIN : skip this page;
997 * \return -ve : error.
999 * \see cl_page_make_ready()
1001 int (*cpo_make_ready)(const struct lu_env *env,
1002 const struct cl_page_slice *slice);
1004 * Announce that this page is to be written out
1005 * opportunistically, that is, page is dirty, it is not
1006 * necessary to start write-out transfer right now, but
1007 * eventually page has to be written out.
1009 * Main caller of this is the write path (see
1010 * vvp_io_commit_write()), using this method to build a
1011 * "transfer cache" from which large transfers are then
1012 * constructed by the req-formation engine.
1014 * \todo XXX it would make sense to add page-age tracking
1015 * semantics here, and to oblige the req-formation engine to
1016 * send the page out not later than it is too old.
1018 * \see cl_page_cache_add()
1020 int (*cpo_cache_add)(const struct lu_env *env,
1021 const struct cl_page_slice *slice,
1025 * Tell transfer engine that only [to, from] part of a page should be
1028 * This is used for immediate transfers.
1030 * \todo XXX this is not very good interface. It would be much better
1031 * if all transfer parameters were supplied as arguments to
1032 * cl_io_operations::cio_submit() call, but it is not clear how to do
1033 * this for page queues.
1035 * \see cl_page_clip()
1037 void (*cpo_clip)(const struct lu_env *env,
1038 const struct cl_page_slice *slice,
1041 * \pre the page was queued for transferring.
1042 * \post page is removed from client's pending list, or -EBUSY
1043 * is returned if it has already been in transferring.
1045 * This is one of seldom page operation which is:
1046 * 0. called from top level;
1047 * 1. don't have vmpage locked;
1048 * 2. every layer should synchronize execution of its ->cpo_cancel()
1049 * with completion handlers. Osc uses client obd lock for this
1050 * purpose. Based on there is no vvp_page_cancel and
1051 * lov_page_cancel(), cpo_cancel is defacto protected by client lock.
1053 * \see osc_page_cancel().
1055 int (*cpo_cancel)(const struct lu_env *env,
1056 const struct cl_page_slice *slice);
1061 * Helper macro, dumping detailed information about \a page into a log.
1063 #define CL_PAGE_DEBUG(mask, env, page, format, ...) \
1065 static DECLARE_LU_CDEBUG_PRINT_INFO(__info, mask); \
1067 if (cfs_cdebug_show(mask, DEBUG_SUBSYSTEM)) { \
1068 cl_page_print(env, &__info, lu_cdebug_printer, page); \
1069 CDEBUG(mask, format , ## __VA_ARGS__); \
1074 * Helper macro, dumping shorter information about \a page into a log.
1076 #define CL_PAGE_HEADER(mask, env, page, format, ...) \
1078 static DECLARE_LU_CDEBUG_PRINT_INFO(__info, mask); \
1080 if (cfs_cdebug_show(mask, DEBUG_SUBSYSTEM)) { \
1081 cl_page_header_print(env, &__info, lu_cdebug_printer, page); \
1082 CDEBUG(mask, format , ## __VA_ARGS__); \
1088 /** \addtogroup cl_lock cl_lock
1092 * Extent locking on the client.
1096 * The locking model of the new client code is built around
1100 * data-type representing an extent lock on a regular file. cl_lock is a
1101 * layered object (much like cl_object and cl_page), it consists of a header
1102 * (struct cl_lock) and a list of layers (struct cl_lock_slice), linked to
1103 * cl_lock::cll_layers list through cl_lock_slice::cls_linkage.
1105 * All locks for a given object are linked into cl_object_header::coh_locks
1106 * list (protected by cl_object_header::coh_lock_guard spin-lock) through
1107 * cl_lock::cll_linkage. Currently this list is not sorted in any way. We can
1108 * sort it in starting lock offset, or use altogether different data structure
1111 * Typical cl_lock consists of the two layers:
1113 * - vvp_lock (vvp specific data), and
1114 * - lov_lock (lov specific data).
1116 * lov_lock contains an array of sub-locks. Each of these sub-locks is a
1117 * normal cl_lock: it has a header (struct cl_lock) and a list of layers:
1119 * - lovsub_lock, and
1122 * Each sub-lock is associated with a cl_object (representing stripe
1123 * sub-object or the file to which top-level cl_lock is associated to), and is
1124 * linked into that cl_object::coh_locks. In this respect cl_lock is similar to
1125 * cl_object (that at lov layer also fans out into multiple sub-objects), and
1126 * is different from cl_page, that doesn't fan out (there is usually exactly
1127 * one osc_page for every vvp_page). We shall call vvp-lov portion of the lock
1128 * a "top-lock" and its lovsub-osc portion a "sub-lock".
1132 * cl_lock is reference counted. When reference counter drops to 0, lock is
1133 * placed in the cache, except when lock is in CLS_FREEING state. CLS_FREEING
1134 * lock is destroyed when last reference is released. Referencing between
1135 * top-lock and its sub-locks is described in the lov documentation module.
1139 * Also, cl_lock is a state machine. This requires some clarification. One of
1140 * the goals of client IO re-write was to make IO path non-blocking, or at
1141 * least to make it easier to make it non-blocking in the future. Here
1142 * `non-blocking' means that when a system call (read, write, truncate)
1143 * reaches a situation where it has to wait for a communication with the
1144 * server, it should --instead of waiting-- remember its current state and
1145 * switch to some other work. E.g,. instead of waiting for a lock enqueue,
1146 * client should proceed doing IO on the next stripe, etc. Obviously this is
1147 * rather radical redesign, and it is not planned to be fully implemented at
1148 * this time, instead we are putting some infrastructure in place, that would
1149 * make it easier to do asynchronous non-blocking IO easier in the
1150 * future. Specifically, where old locking code goes to sleep (waiting for
1151 * enqueue, for example), new code returns cl_lock_transition::CLO_WAIT. When
1152 * enqueue reply comes, its completion handler signals that lock state-machine
1153 * is ready to transit to the next state. There is some generic code in
1154 * cl_lock.c that sleeps, waiting for these signals. As a result, for users of
1155 * this cl_lock.c code, it looks like locking is done in normal blocking
1156 * fashion, and it the same time it is possible to switch to the non-blocking
1157 * locking (simply by returning cl_lock_transition::CLO_WAIT from cl_lock.c
1160 * For a description of state machine states and transitions see enum
1163 * There are two ways to restrict a set of states which lock might move to:
1165 * - placing a "hold" on a lock guarantees that lock will not be moved
1166 * into cl_lock_state::CLS_FREEING state until hold is released. Hold
1167 * can be only acquired on a lock that is not in
1168 * cl_lock_state::CLS_FREEING. All holds on a lock are counted in
1169 * cl_lock::cll_holds. Hold protects lock from cancellation and
1170 * destruction. Requests to cancel and destroy a lock on hold will be
1171 * recorded, but only honored when last hold on a lock is released;
1173 * - placing a "user" on a lock guarantees that lock will not leave
1174 * cl_lock_state::CLS_NEW, cl_lock_state::CLS_QUEUING,
1175 * cl_lock_state::CLS_ENQUEUED and cl_lock_state::CLS_HELD set of
1176 * states, once it enters this set. That is, if a user is added onto a
1177 * lock in a state not from this set, it doesn't immediately enforce
1178 * lock to move to this set, but once lock enters this set it will
1179 * remain there until all users are removed. Lock users are counted in
1180 * cl_lock::cll_users.
1182 * User is used to assure that lock is not canceled or destroyed while
1183 * it is being enqueued, or actively used by some IO.
1185 * Currently, a user always comes with a hold (cl_lock_invariant()
1186 * checks that a number of holds is not less than a number of users).
1190 * This is how lock state-machine operates. struct cl_lock contains a mutex
1191 * cl_lock::cll_guard that protects struct fields.
1193 * - mutex is taken, and cl_lock::cll_state is examined.
1195 * - for every state there are possible target states where lock can move
1196 * into. They are tried in order. Attempts to move into next state are
1197 * done by _try() functions in cl_lock.c:cl_{enqueue,unlock,wait}_try().
1199 * - if the transition can be performed immediately, state is changed,
1200 * and mutex is released.
1202 * - if the transition requires blocking, _try() function returns
1203 * cl_lock_transition::CLO_WAIT. Caller unlocks mutex and goes to
1204 * sleep, waiting for possibility of lock state change. It is woken
1205 * up when some event occurs, that makes lock state change possible
1206 * (e.g., the reception of the reply from the server), and repeats
1209 * Top-lock and sub-lock has separate mutexes and the latter has to be taken
1210 * first to avoid dead-lock.
1212 * To see an example of interaction of all these issues, take a look at the
1213 * lov_cl.c:lov_lock_enqueue() function. It is called as a part of
1214 * cl_enqueue_try(), and tries to advance top-lock to ENQUEUED state, by
1215 * advancing state-machines of its sub-locks (lov_lock_enqueue_one()). Note
1216 * also, that it uses trylock to grab sub-lock mutex to avoid dead-lock. It
1217 * also has to handle CEF_ASYNC enqueue, when sub-locks enqueues have to be
1218 * done in parallel, rather than one after another (this is used for glimpse
1219 * locks, that cannot dead-lock).
1221 * INTERFACE AND USAGE
1223 * struct cl_lock_operations provide a number of call-backs that are invoked
1224 * when events of interest occurs. Layers can intercept and handle glimpse,
1225 * blocking, cancel ASTs and a reception of the reply from the server.
1227 * One important difference with the old client locking model is that new
1228 * client has a representation for the top-lock, whereas in the old code only
1229 * sub-locks existed as real data structures and file-level locks are
1230 * represented by "request sets" that are created and destroyed on each and
1231 * every lock creation.
1233 * Top-locks are cached, and can be found in the cache by the system calls. It
1234 * is possible that top-lock is in cache, but some of its sub-locks were
1235 * canceled and destroyed. In that case top-lock has to be enqueued again
1236 * before it can be used.
1238 * Overall process of the locking during IO operation is as following:
1240 * - once parameters for IO are setup in cl_io, cl_io_operations::cio_lock()
1241 * is called on each layer. Responsibility of this method is to add locks,
1242 * needed by a given layer into cl_io.ci_lockset.
1244 * - once locks for all layers were collected, they are sorted to avoid
1245 * dead-locks (cl_io_locks_sort()), and enqueued.
1247 * - when all locks are acquired, IO is performed;
1249 * - locks are released into cache.
1251 * Striping introduces major additional complexity into locking. The
1252 * fundamental problem is that it is generally unsafe to actively use (hold)
1253 * two locks on the different OST servers at the same time, as this introduces
1254 * inter-server dependency and can lead to cascading evictions.
1256 * Basic solution is to sub-divide large read/write IOs into smaller pieces so
1257 * that no multi-stripe locks are taken (note that this design abandons POSIX
1258 * read/write semantics). Such pieces ideally can be executed concurrently. At
1259 * the same time, certain types of IO cannot be sub-divived, without
1260 * sacrificing correctness. This includes:
1262 * - O_APPEND write, where [0, EOF] lock has to be taken, to guarantee
1265 * - ftruncate(fd, offset), where [offset, EOF] lock has to be taken.
1267 * Also, in the case of read(fd, buf, count) or write(fd, buf, count), where
1268 * buf is a part of memory mapped Lustre file, a lock or locks protecting buf
1269 * has to be held together with the usual lock on [offset, offset + count].
1271 * As multi-stripe locks have to be allowed, it makes sense to cache them, so
1272 * that, for example, a sequence of O_APPEND writes can proceed quickly
1273 * without going down to the individual stripes to do lock matching. On the
1274 * other hand, multi-stripe locks shouldn't be used by normal read/write
1275 * calls. To achieve this, every layer can implement ->clo_fits_into() method,
1276 * that is called by lock matching code (cl_lock_lookup()), and that can be
1277 * used to selectively disable matching of certain locks for certain IOs. For
1278 * exmaple, lov layer implements lov_lock_fits_into() that allow multi-stripe
1279 * locks to be matched only for truncates and O_APPEND writes.
1281 * Interaction with DLM
1283 * In the expected setup, cl_lock is ultimately backed up by a collection of
1284 * DLM locks (struct ldlm_lock). Association between cl_lock and DLM lock is
1285 * implemented in osc layer, that also matches DLM events (ASTs, cancellation,
1286 * etc.) into cl_lock_operation calls. See struct osc_lock for a more detailed
1287 * description of interaction with DLM.
1293 struct cl_lock_descr {
1294 /** Object this lock is granted for. */
1295 struct cl_object *cld_obj;
1296 /** Index of the first page protected by this lock. */
1298 /** Index of the last page (inclusive) protected by this lock. */
1300 /** Group ID, for group lock */
1303 enum cl_lock_mode cld_mode;
1305 * flags to enqueue lock. A combination of bit-flags from
1306 * enum cl_enq_flags.
1308 __u32 cld_enq_flags;
1311 #define DDESCR "%s(%d):[%lu, %lu]"
1312 #define PDESCR(descr) \
1313 cl_lock_mode_name((descr)->cld_mode), (descr)->cld_mode, \
1314 (descr)->cld_start, (descr)->cld_end
1316 const char *cl_lock_mode_name(const enum cl_lock_mode mode);
1319 * Lock state-machine states.
1324 * Possible state transitions:
1326 * +------------------>NEW
1328 * | | cl_enqueue_try()
1330 * | cl_unuse_try() V
1331 * | +--------------QUEUING (*)
1333 * | | | cl_enqueue_try()
1335 * | | cl_unuse_try() V
1336 * sub-lock | +-------------ENQUEUED (*)
1338 * | | | cl_wait_try()
1343 * | | HELD<---------+
1345 * | | | | cl_use_try()
1346 * | | cl_unuse_try() | |
1349 * | +------------>INTRANSIT (D) <--+
1351 * | cl_unuse_try() | | cached lock found
1352 * | | | cl_use_try()
1355 * +------------------CACHED---------+
1364 * In states marked with (*) transition to the same state (i.e., a loop
1365 * in the diagram) is possible.
1367 * (R) is the point where Receive call-back is invoked: it allows layers
1368 * to handle arrival of lock reply.
1370 * (C) is the point where Cancellation call-back is invoked.
1372 * (D) is the transit state which means the lock is changing.
1374 * Transition to FREEING state is possible from any other state in the
1375 * diagram in case of unrecoverable error.
1379 * These states are for individual cl_lock object. Top-lock and its sub-locks
1380 * can be in the different states. Another way to say this is that we have
1381 * nested state-machines.
1383 * Separate QUEUING and ENQUEUED states are needed to support non-blocking
1384 * operation for locks with multiple sub-locks. Imagine lock on a file F, that
1385 * intersects 3 stripes S0, S1, and S2. To enqueue F client has to send
1386 * enqueue to S0, wait for its completion, then send enqueue for S1, wait for
1387 * its completion and at last enqueue lock for S2, and wait for its
1388 * completion. In that case, top-lock is in QUEUING state while S0, S1 are
1389 * handled, and is in ENQUEUED state after enqueue to S2 has been sent (note
1390 * that in this case, sub-locks move from state to state, and top-lock remains
1391 * in the same state).
1393 enum cl_lock_state {
1395 * Lock that wasn't yet enqueued
1399 * Enqueue is in progress, blocking for some intermediate interaction
1400 * with the other side.
1404 * Lock is fully enqueued, waiting for server to reply when it is
1409 * Lock granted, actively used by some IO.
1413 * This state is used to mark the lock is being used, or unused.
1414 * We need this state because the lock may have several sublocks,
1415 * so it's impossible to have an atomic way to bring all sublocks
1416 * into CLS_HELD state at use case, or all sublocks to CLS_CACHED
1418 * If a thread is referring to a lock, and it sees the lock is in this
1419 * state, it must wait for the lock.
1420 * See state diagram for details.
1424 * Lock granted, not used.
1428 * Lock is being destroyed.
1434 enum cl_lock_flags {
1436 * lock has been cancelled. This flag is never cleared once set (by
1437 * cl_lock_cancel0()).
1439 CLF_CANCELLED = 1 << 0,
1440 /** cancellation is pending for this lock. */
1441 CLF_CANCELPEND = 1 << 1,
1442 /** destruction is pending for this lock. */
1449 * Lock closure is a collection of locks (both top-locks and sub-locks) that
1450 * might be updated in a result of an operation on a certain lock (which lock
1451 * this is a closure of).
1453 * Closures are needed to guarantee dead-lock freedom in the presence of
1455 * - nested state-machines (top-lock state-machine composed of sub-lock
1456 * state-machines), and
1458 * - shared sub-locks.
1460 * Specifically, many operations, such as lock enqueue, wait, unlock,
1461 * etc. start from a top-lock, and then operate on a sub-locks of this
1462 * top-lock, holding a top-lock mutex. When sub-lock state changes as a result
1463 * of such operation, this change has to be propagated to all top-locks that
1464 * share this sub-lock. Obviously, no natural lock ordering (e.g.,
1465 * top-to-bottom or bottom-to-top) captures this scenario, so try-locking has
1466 * to be used. Lock closure systematizes this try-and-repeat logic.
1468 struct cl_lock_closure {
1470 * Lock that is mutexed when closure construction is started. When
1471 * closure in is `wait' mode (cl_lock_closure::clc_wait), mutex on
1472 * origin is released before waiting.
1474 struct cl_lock *clc_origin;
1476 * List of enclosed locks, so far. Locks are linked here through
1477 * cl_lock::cll_inclosure.
1479 cfs_list_t clc_list;
1481 * True iff closure is in a `wait' mode. This determines what
1482 * cl_lock_enclosure() does when a lock L to be added to the closure
1483 * is currently mutexed by some other thread.
1485 * If cl_lock_closure::clc_wait is not set, then closure construction
1486 * fails with CLO_REPEAT immediately.
1488 * In wait mode, cl_lock_enclosure() waits until next attempt to build
1489 * a closure might succeed. To this end it releases an origin mutex
1490 * (cl_lock_closure::clc_origin), that has to be the only lock mutex
1491 * owned by the current thread, and then waits on L mutex (by grabbing
1492 * it and immediately releasing), before returning CLO_REPEAT to the
1496 /** Number of locks in the closure. */
1501 * Layered client lock.
1504 /** Reference counter. */
1505 cfs_atomic_t cll_ref;
1506 /** List of slices. Immutable after creation. */
1507 cfs_list_t cll_layers;
1509 * Linkage into cl_lock::cll_descr::cld_obj::coh_locks list. Protected
1510 * by cl_lock::cll_descr::cld_obj::coh_lock_guard.
1512 cfs_list_t cll_linkage;
1514 * Parameters of this lock. Protected by
1515 * cl_lock::cll_descr::cld_obj::coh_lock_guard nested within
1516 * cl_lock::cll_guard. Modified only on lock creation and in
1519 struct cl_lock_descr cll_descr;
1520 /** Protected by cl_lock::cll_guard. */
1521 enum cl_lock_state cll_state;
1522 /** signals state changes. */
1525 * Recursive lock, most fields in cl_lock{} are protected by this.
1527 * Locking rules: this mutex is never held across network
1528 * communication, except when lock is being canceled.
1530 * Lock ordering: a mutex of a sub-lock is taken first, then a mutex
1531 * on a top-lock. Other direction is implemented through a
1532 * try-lock-repeat loop. Mutices of unrelated locks can be taken only
1535 * \see osc_lock_enqueue_wait(), lov_lock_cancel(), lov_sublock_wait().
1537 cfs_mutex_t cll_guard;
1538 cfs_task_t *cll_guarder;
1542 * the owner for INTRANSIT state
1544 cfs_task_t *cll_intransit_owner;
1547 * Number of holds on a lock. A hold prevents a lock from being
1548 * canceled and destroyed. Protected by cl_lock::cll_guard.
1550 * \see cl_lock_hold(), cl_lock_unhold(), cl_lock_release()
1554 * Number of lock users. Valid in cl_lock_state::CLS_HELD state
1555 * only. Lock user pins lock in CLS_HELD state. Protected by
1556 * cl_lock::cll_guard.
1558 * \see cl_wait(), cl_unuse().
1562 * Flag bit-mask. Values from enum cl_lock_flags. Updates are
1563 * protected by cl_lock::cll_guard.
1565 unsigned long cll_flags;
1567 * A linkage into a list of locks in a closure.
1569 * \see cl_lock_closure
1571 cfs_list_t cll_inclosure;
1573 * Confict lock at queuing time.
1575 struct cl_lock *cll_conflict;
1577 * A list of references to this lock, for debugging.
1579 struct lu_ref cll_reference;
1581 * A list of holds on this lock, for debugging.
1583 struct lu_ref cll_holders;
1585 * A reference for cl_lock::cll_descr::cld_obj. For debugging.
1587 struct lu_ref_link *cll_obj_ref;
1588 #ifdef CONFIG_LOCKDEP
1589 /* "dep_map" name is assumed by lockdep.h macros. */
1590 struct lockdep_map dep_map;
1595 * Per-layer part of cl_lock
1597 * \see ccc_lock, lov_lock, lovsub_lock, osc_lock
1599 struct cl_lock_slice {
1600 struct cl_lock *cls_lock;
1601 /** Object slice corresponding to this lock slice. Immutable after
1603 struct cl_object *cls_obj;
1604 const struct cl_lock_operations *cls_ops;
1605 /** Linkage into cl_lock::cll_layers. Immutable after creation. */
1606 cfs_list_t cls_linkage;
1610 * Possible (non-error) return values of ->clo_{enqueue,wait,unlock}().
1612 * NOTE: lov_subresult() depends on ordering here.
1614 enum cl_lock_transition {
1615 /** operation cannot be completed immediately. Wait for state change. */
1617 /** operation had to release lock mutex, restart. */
1623 * \see vvp_lock_ops, lov_lock_ops, lovsub_lock_ops, osc_lock_ops
1625 struct cl_lock_operations {
1627 * \name statemachine
1629 * State machine transitions. These 3 methods are called to transfer
1630 * lock from one state to another, as described in the commentary
1631 * above enum #cl_lock_state.
1633 * \retval 0 this layer has nothing more to do to before
1634 * transition to the target state happens;
1636 * \retval CLO_REPEAT method had to release and re-acquire cl_lock
1637 * mutex, repeat invocation of transition method
1638 * across all layers;
1640 * \retval CLO_WAIT this layer cannot move to the target state
1641 * immediately, as it has to wait for certain event
1642 * (e.g., the communication with the server). It
1643 * is guaranteed, that when the state transfer
1644 * becomes possible, cl_lock::cll_wq wait-queue
1645 * is signaled. Caller can wait for this event by
1646 * calling cl_lock_state_wait();
1648 * \retval -ve failure, abort state transition, move the lock
1649 * into cl_lock_state::CLS_FREEING state, and set
1650 * cl_lock::cll_error.
1652 * Once all layers voted to agree to transition (by returning 0), lock
1653 * is moved into corresponding target state. All state transition
1654 * methods are optional.
1658 * Attempts to enqueue the lock. Called top-to-bottom.
1660 * \see ccc_lock_enqueue(), lov_lock_enqueue(), lovsub_lock_enqueue(),
1661 * \see osc_lock_enqueue()
1663 int (*clo_enqueue)(const struct lu_env *env,
1664 const struct cl_lock_slice *slice,
1665 struct cl_io *io, __u32 enqflags);
1667 * Attempts to wait for enqueue result. Called top-to-bottom.
1669 * \see ccc_lock_wait(), lov_lock_wait(), osc_lock_wait()
1671 int (*clo_wait)(const struct lu_env *env,
1672 const struct cl_lock_slice *slice);
1674 * Attempts to unlock the lock. Called bottom-to-top. In addition to
1675 * usual return values of lock state-machine methods, this can return
1676 * -ESTALE to indicate that lock cannot be returned to the cache, and
1677 * has to be re-initialized.
1678 * unuse is a one-shot operation, so it must NOT return CLO_WAIT.
1680 * \see ccc_lock_unuse(), lov_lock_unuse(), osc_lock_unuse()
1682 int (*clo_unuse)(const struct lu_env *env,
1683 const struct cl_lock_slice *slice);
1685 * Notifies layer that cached lock is started being used.
1687 * \pre lock->cll_state == CLS_CACHED
1689 * \see lov_lock_use(), osc_lock_use()
1691 int (*clo_use)(const struct lu_env *env,
1692 const struct cl_lock_slice *slice);
1693 /** @} statemachine */
1695 * A method invoked when lock state is changed (as a result of state
1696 * transition). This is used, for example, to track when the state of
1697 * a sub-lock changes, to propagate this change to the corresponding
1698 * top-lock. Optional
1700 * \see lovsub_lock_state()
1702 void (*clo_state)(const struct lu_env *env,
1703 const struct cl_lock_slice *slice,
1704 enum cl_lock_state st);
1706 * Returns true, iff given lock is suitable for the given io, idea
1707 * being, that there are certain "unsafe" locks, e.g., ones acquired
1708 * for O_APPEND writes, that we don't want to re-use for a normal
1709 * write, to avoid the danger of cascading evictions. Optional. Runs
1710 * under cl_object_header::coh_lock_guard.
1712 * XXX this should take more information about lock needed by
1713 * io. Probably lock description or something similar.
1715 * \see lov_fits_into()
1717 int (*clo_fits_into)(const struct lu_env *env,
1718 const struct cl_lock_slice *slice,
1719 const struct cl_lock_descr *need,
1720 const struct cl_io *io);
1723 * Asynchronous System Traps. All of then are optional, all are
1724 * executed bottom-to-top.
1729 * Cancellation callback. Cancel a lock voluntarily, or under
1730 * the request of server.
1732 void (*clo_cancel)(const struct lu_env *env,
1733 const struct cl_lock_slice *slice);
1735 * Lock weighting ast. Executed to estimate how precious this lock
1736 * is. The sum of results across all layers is used to determine
1737 * whether lock worth keeping in cache given present memory usage.
1739 * \see osc_lock_weigh(), vvp_lock_weigh(), lovsub_lock_weigh().
1741 unsigned long (*clo_weigh)(const struct lu_env *env,
1742 const struct cl_lock_slice *slice);
1746 * \see lovsub_lock_closure()
1748 int (*clo_closure)(const struct lu_env *env,
1749 const struct cl_lock_slice *slice,
1750 struct cl_lock_closure *closure);
1752 * Executed bottom-to-top when lock description changes (e.g., as a
1753 * result of server granting more generous lock than was requested).
1755 * \see lovsub_lock_modify()
1757 int (*clo_modify)(const struct lu_env *env,
1758 const struct cl_lock_slice *slice,
1759 const struct cl_lock_descr *updated);
1761 * Notifies layers (bottom-to-top) that lock is going to be
1762 * destroyed. Responsibility of layers is to prevent new references on
1763 * this lock from being acquired once this method returns.
1765 * This can be called multiple times due to the races.
1767 * \see cl_lock_delete()
1768 * \see osc_lock_delete(), lovsub_lock_delete()
1770 void (*clo_delete)(const struct lu_env *env,
1771 const struct cl_lock_slice *slice);
1773 * Destructor. Frees resources and the slice.
1775 * \see ccc_lock_fini(), lov_lock_fini(), lovsub_lock_fini(),
1776 * \see osc_lock_fini()
1778 void (*clo_fini)(const struct lu_env *env, struct cl_lock_slice *slice);
1780 * Optional debugging helper. Prints given lock slice.
1782 int (*clo_print)(const struct lu_env *env,
1783 void *cookie, lu_printer_t p,
1784 const struct cl_lock_slice *slice);
1787 #define CL_LOCK_DEBUG(mask, env, lock, format, ...) \
1789 static DECLARE_LU_CDEBUG_PRINT_INFO(__info, mask); \
1791 if (cfs_cdebug_show(mask, DEBUG_SUBSYSTEM)) { \
1792 cl_lock_print(env, &__info, lu_cdebug_printer, lock); \
1793 CDEBUG(mask, format , ## __VA_ARGS__); \
1799 /** \addtogroup cl_page_list cl_page_list
1800 * Page list used to perform collective operations on a group of pages.
1802 * Pages are added to the list one by one. cl_page_list acquires a reference
1803 * for every page in it. Page list is used to perform collective operations on
1806 * - submit pages for an immediate transfer,
1808 * - own pages on behalf of certain io (waiting for each page in turn),
1812 * When list is finalized, it releases references on all pages it still has.
1814 * \todo XXX concurrency control.
1818 struct cl_page_list {
1820 cfs_list_t pl_pages;
1821 cfs_task_t *pl_owner;
1825 * A 2-queue of pages. A convenience data-type for common use case, 2-queue
1826 * contains an incoming page list and an outgoing page list.
1829 struct cl_page_list c2_qin;
1830 struct cl_page_list c2_qout;
1833 /** @} cl_page_list */
1835 /** \addtogroup cl_io cl_io
1840 * cl_io represents a high level I/O activity like
1841 * read(2)/write(2)/truncate(2) system call, or cancellation of an extent
1844 * cl_io is a layered object, much like cl_{object,page,lock} but with one
1845 * important distinction. We want to minimize number of calls to the allocator
1846 * in the fast path, e.g., in the case of read(2) when everything is cached:
1847 * client already owns the lock over region being read, and data are cached
1848 * due to read-ahead. To avoid allocation of cl_io layers in such situations,
1849 * per-layer io state is stored in the session, associated with the io, see
1850 * struct {vvp,lov,osc}_io for example. Sessions allocation is amortized
1851 * by using free-lists, see cl_env_get().
1853 * There is a small predefined number of possible io types, enumerated in enum
1856 * cl_io is a state machine, that can be advanced concurrently by the multiple
1857 * threads. It is up to these threads to control the concurrency and,
1858 * specifically, to detect when io is done, and its state can be safely
1861 * For read/write io overall execution plan is as following:
1863 * (0) initialize io state through all layers;
1865 * (1) loop: prepare chunk of work to do
1867 * (2) call all layers to collect locks they need to process current chunk
1869 * (3) sort all locks to avoid dead-locks, and acquire them
1871 * (4) process the chunk: call per-page methods
1872 * (cl_io_operations::cio_read_page() for read,
1873 * cl_io_operations::cio_prepare_write(),
1874 * cl_io_operations::cio_commit_write() for write)
1880 * To implement the "parallel IO mode", lov layer creates sub-io's (lazily to
1881 * address allocation efficiency issues mentioned above), and returns with the
1882 * special error condition from per-page method when current sub-io has to
1883 * block. This causes io loop to be repeated, and lov switches to the next
1884 * sub-io in its cl_io_operations::cio_iter_init() implementation.
1889 /** read system call */
1891 /** write system call */
1893 /** truncate, utime system calls */
1896 * page fault handling
1900 * Miscellaneous io. This is used for occasional io activity that
1901 * doesn't fit into other types. Currently this is used for:
1903 * - cancellation of an extent lock. This io exists as a context
1904 * to write dirty pages from under the lock being canceled back
1907 * - VM induced page write-out. An io context for writing page out
1908 * for memory cleansing;
1910 * - glimpse. An io context to acquire glimpse lock.
1912 * - grouplock. An io context to acquire group lock.
1914 * CIT_MISC io is used simply as a context in which locks and pages
1915 * are manipulated. Such io has no internal "process", that is,
1916 * cl_io_loop() is never called for it.
1923 * States of cl_io state machine
1926 /** Not initialized. */
1930 /** IO iteration started. */
1934 /** Actual IO is in progress. */
1936 /** IO for the current iteration finished. */
1938 /** Locks released. */
1940 /** Iteration completed. */
1942 /** cl_io finalized. */
1946 enum cl_req_priority {
1952 * IO state private for a layer.
1954 * This is usually embedded into layer session data, rather than allocated
1957 * \see vvp_io, lov_io, osc_io, ccc_io
1959 struct cl_io_slice {
1960 struct cl_io *cis_io;
1961 /** corresponding object slice. Immutable after creation. */
1962 struct cl_object *cis_obj;
1963 /** io operations. Immutable after creation. */
1964 const struct cl_io_operations *cis_iop;
1966 * linkage into a list of all slices for a given cl_io, hanging off
1967 * cl_io::ci_layers. Immutable after creation.
1969 cfs_list_t cis_linkage;
1974 * Per-layer io operations.
1975 * \see vvp_io_ops, lov_io_ops, lovsub_io_ops, osc_io_ops
1977 struct cl_io_operations {
1979 * Vector of io state transition methods for every io type.
1981 * \see cl_page_operations::io
1985 * Prepare io iteration at a given layer.
1987 * Called top-to-bottom at the beginning of each iteration of
1988 * "io loop" (if it makes sense for this type of io). Here
1989 * layer selects what work it will do during this iteration.
1991 * \see cl_io_operations::cio_iter_fini()
1993 int (*cio_iter_init) (const struct lu_env *env,
1994 const struct cl_io_slice *slice);
1996 * Finalize io iteration.
1998 * Called bottom-to-top at the end of each iteration of "io
1999 * loop". Here layers can decide whether IO has to be
2002 * \see cl_io_operations::cio_iter_init()
2004 void (*cio_iter_fini) (const struct lu_env *env,
2005 const struct cl_io_slice *slice);
2007 * Collect locks for the current iteration of io.
2009 * Called top-to-bottom to collect all locks necessary for
2010 * this iteration. This methods shouldn't actually enqueue
2011 * anything, instead it should post a lock through
2012 * cl_io_lock_add(). Once all locks are collected, they are
2013 * sorted and enqueued in the proper order.
2015 int (*cio_lock) (const struct lu_env *env,
2016 const struct cl_io_slice *slice);
2018 * Finalize unlocking.
2020 * Called bottom-to-top to finish layer specific unlocking
2021 * functionality, after generic code released all locks
2022 * acquired by cl_io_operations::cio_lock().
2024 void (*cio_unlock)(const struct lu_env *env,
2025 const struct cl_io_slice *slice);
2027 * Start io iteration.
2029 * Once all locks are acquired, called top-to-bottom to
2030 * commence actual IO. In the current implementation,
2031 * top-level vvp_io_{read,write}_start() does all the work
2032 * synchronously by calling generic_file_*(), so other layers
2033 * are called when everything is done.
2035 int (*cio_start)(const struct lu_env *env,
2036 const struct cl_io_slice *slice);
2038 * Called top-to-bottom at the end of io loop. Here layer
2039 * might wait for an unfinished asynchronous io.
2041 void (*cio_end) (const struct lu_env *env,
2042 const struct cl_io_slice *slice);
2044 * Called bottom-to-top to notify layers that read/write IO
2045 * iteration finished, with \a nob bytes transferred.
2047 void (*cio_advance)(const struct lu_env *env,
2048 const struct cl_io_slice *slice,
2051 * Called once per io, bottom-to-top to release io resources.
2053 void (*cio_fini) (const struct lu_env *env,
2054 const struct cl_io_slice *slice);
2058 * Submit pages from \a queue->c2_qin for IO, and move
2059 * successfully submitted pages into \a queue->c2_qout. Return
2060 * non-zero if failed to submit even the single page. If
2061 * submission failed after some pages were moved into \a
2062 * queue->c2_qout, completion callback with non-zero ioret is
2065 int (*cio_submit)(const struct lu_env *env,
2066 const struct cl_io_slice *slice,
2067 enum cl_req_type crt,
2068 struct cl_2queue *queue,
2069 enum cl_req_priority priority);
2072 * Read missing page.
2074 * Called by a top-level cl_io_operations::op[CIT_READ]::cio_start()
2075 * method, when it hits not-up-to-date page in the range. Optional.
2077 * \pre io->ci_type == CIT_READ
2079 int (*cio_read_page)(const struct lu_env *env,
2080 const struct cl_io_slice *slice,
2081 const struct cl_page_slice *page);
2083 * Prepare write of a \a page. Called bottom-to-top by a top-level
2084 * cl_io_operations::op[CIT_WRITE]::cio_start() to prepare page for
2085 * get data from user-level buffer.
2087 * \pre io->ci_type == CIT_WRITE
2089 * \see vvp_io_prepare_write(), lov_io_prepare_write(),
2090 * osc_io_prepare_write().
2092 int (*cio_prepare_write)(const struct lu_env *env,
2093 const struct cl_io_slice *slice,
2094 const struct cl_page_slice *page,
2095 unsigned from, unsigned to);
2098 * \pre io->ci_type == CIT_WRITE
2100 * \see vvp_io_commit_write(), lov_io_commit_write(),
2101 * osc_io_commit_write().
2103 int (*cio_commit_write)(const struct lu_env *env,
2104 const struct cl_io_slice *slice,
2105 const struct cl_page_slice *page,
2106 unsigned from, unsigned to);
2108 * Optional debugging helper. Print given io slice.
2110 int (*cio_print)(const struct lu_env *env, void *cookie,
2111 lu_printer_t p, const struct cl_io_slice *slice);
2115 * Flags to lock enqueue procedure.
2120 * instruct server to not block, if conflicting lock is found. Instead
2121 * -EWOULDBLOCK is returned immediately.
2123 CEF_NONBLOCK = 0x00000001,
2125 * take lock asynchronously (out of order), as it cannot
2126 * deadlock. This is for LDLM_FL_HAS_INTENT locks used for glimpsing.
2128 CEF_ASYNC = 0x00000002,
2130 * tell the server to instruct (though a flag in the blocking ast) an
2131 * owner of the conflicting lock, that it can drop dirty pages
2132 * protected by this lock, without sending them to the server.
2134 CEF_DISCARD_DATA = 0x00000004,
2136 * tell the sub layers that it must be a `real' lock. This is used for
2137 * mmapped-buffer locks and glimpse locks that must be never converted
2138 * into lockless mode.
2140 * \see vvp_mmap_locks(), cl_glimpse_lock().
2142 CEF_MUST = 0x00000008,
2144 * tell the sub layers that never request a `real' lock. This flag is
2145 * not used currently.
2147 * cl_io::ci_lockreq and CEF_{MUST,NEVER} flags specify lockless
2148 * conversion policy: ci_lockreq describes generic information of lock
2149 * requirement for this IO, especially for locks which belong to the
2150 * object doing IO; however, lock itself may have precise requirements
2151 * that are described by the enqueue flags.
2153 CEF_NEVER = 0x00000010,
2155 * mask of enq_flags.
2157 CEF_MASK = 0x0000001f
2161 * Link between lock and io. Intermediate structure is needed, because the
2162 * same lock can be part of multiple io's simultaneously.
2164 struct cl_io_lock_link {
2165 /** linkage into one of cl_lockset lists. */
2166 cfs_list_t cill_linkage;
2167 struct cl_lock_descr cill_descr;
2168 struct cl_lock *cill_lock;
2169 /** optional destructor */
2170 void (*cill_fini)(const struct lu_env *env,
2171 struct cl_io_lock_link *link);
2175 * Lock-set represents a collection of locks, that io needs at a
2176 * time. Generally speaking, client tries to avoid holding multiple locks when
2179 * - holding extent locks over multiple ost's introduces the danger of
2180 * "cascading timeouts";
2182 * - holding multiple locks over the same ost is still dead-lock prone,
2183 * see comment in osc_lock_enqueue(),
2185 * but there are certain situations where this is unavoidable:
2187 * - O_APPEND writes have to take [0, EOF] lock for correctness;
2189 * - truncate has to take [new-size, EOF] lock for correctness;
2191 * - SNS has to take locks across full stripe for correctness;
2193 * - in the case when user level buffer, supplied to {read,write}(file0),
2194 * is a part of a memory mapped lustre file, client has to take a dlm
2195 * locks on file0, and all files that back up the buffer (or a part of
2196 * the buffer, that is being processed in the current chunk, in any
2197 * case, there are situations where at least 2 locks are necessary).
2199 * In such cases we at least try to take locks in the same consistent
2200 * order. To this end, all locks are first collected, then sorted, and then
2204 /** locks to be acquired. */
2205 cfs_list_t cls_todo;
2206 /** locks currently being processed. */
2207 cfs_list_t cls_curr;
2208 /** locks acquired. */
2209 cfs_list_t cls_done;
2213 * Lock requirements(demand) for IO. It should be cl_io_lock_req,
2214 * but 'req' is always to be thought as 'request' :-)
2216 enum cl_io_lock_dmd {
2217 /** Always lock data (e.g., O_APPEND). */
2219 /** Layers are free to decide between local and global locking. */
2221 /** Never lock: there is no cache (e.g., liblustre). */
2225 struct cl_io_rw_common {
2235 * cl_io is shared by all threads participating in this IO (in current
2236 * implementation only one thread advances IO, but parallel IO design and
2237 * concurrent copy_*_user() require multiple threads acting on the same IO. It
2238 * is up to these threads to serialize their activities, including updates to
2239 * mutable cl_io fields.
2242 /** type of this IO. Immutable after creation. */
2243 enum cl_io_type ci_type;
2244 /** current state of cl_io state machine. */
2245 enum cl_io_state ci_state;
2246 /** main object this io is against. Immutable after creation. */
2247 struct cl_object *ci_obj;
2249 * Upper layer io, of which this io is a part of. Immutable after
2252 struct cl_io *ci_parent;
2253 /** List of slices. Immutable after creation. */
2254 cfs_list_t ci_layers;
2255 /** list of locks (to be) acquired by this io. */
2256 struct cl_lockset ci_lockset;
2257 /** lock requirements, this is just a help info for sublayers. */
2258 enum cl_io_lock_dmd ci_lockreq;
2260 * This io has held grouplock, to inform sublayers that
2261 * don't do lockless i/o.
2266 struct cl_io_rw_common rd;
2269 struct cl_io_rw_common wr;
2272 struct cl_io_rw_common ci_rw;
2273 struct cl_setattr_io {
2274 struct ost_lvb sa_attr;
2275 unsigned int sa_valid;
2276 struct obd_capa *sa_capa;
2278 struct cl_fault_io {
2279 /** page index within file. */
2281 /** bytes valid byte on a faulted page. */
2283 /** writable page? */
2285 /** page of an executable? */
2287 /** resulting page */
2288 struct cl_page *ft_page;
2291 struct cl_2queue ci_queue;
2296 * Number of pages owned by this IO. For invariant checking.
2298 unsigned ci_owned_nr;
2303 /** \addtogroup cl_req cl_req
2308 * There are two possible modes of transfer initiation on the client:
2310 * - immediate transfer: this is started when a high level io wants a page
2311 * or a collection of pages to be transferred right away. Examples:
2312 * read-ahead, synchronous read in the case of non-page aligned write,
2313 * page write-out as a part of extent lock cancellation, page write-out
2314 * as a part of memory cleansing. Immediate transfer can be both
2315 * cl_req_type::CRT_READ and cl_req_type::CRT_WRITE;
2317 * - opportunistic transfer (cl_req_type::CRT_WRITE only), that happens
2318 * when io wants to transfer a page to the server some time later, when
2319 * it can be done efficiently. Example: pages dirtied by the write(2)
2322 * In any case, transfer takes place in the form of a cl_req, which is a
2323 * representation for a network RPC.
2325 * Pages queued for an opportunistic transfer are cached until it is decided
2326 * that efficient RPC can be composed of them. This decision is made by "a
2327 * req-formation engine", currently implemented as a part of osc
2328 * layer. Req-formation depends on many factors: the size of the resulting
2329 * RPC, whether or not multi-object RPCs are supported by the server,
2330 * max-rpc-in-flight limitations, size of the dirty cache, etc.
2332 * For the immediate transfer io submits a cl_page_list, that req-formation
2333 * engine slices into cl_req's, possibly adding cached pages to some of
2334 * the resulting req's.
2336 * Whenever a page from cl_page_list is added to a newly constructed req, its
2337 * cl_page_operations::cpo_prep() layer methods are called. At that moment,
2338 * page state is atomically changed from cl_page_state::CPS_OWNED to
2339 * cl_page_state::CPS_PAGEOUT or cl_page_state::CPS_PAGEIN, cl_page::cp_owner
2340 * is zeroed, and cl_page::cp_req is set to the
2341 * req. cl_page_operations::cpo_prep() method at the particular layer might
2342 * return -EALREADY to indicate that it does not need to submit this page
2343 * at all. This is possible, for example, if page, submitted for read,
2344 * became up-to-date in the meantime; and for write, the page don't have
2345 * dirty bit marked. \see cl_io_submit_rw()
2347 * Whenever a cached page is added to a newly constructed req, its
2348 * cl_page_operations::cpo_make_ready() layer methods are called. At that
2349 * moment, page state is atomically changed from cl_page_state::CPS_CACHED to
2350 * cl_page_state::CPS_PAGEOUT, and cl_page::cp_req is set to
2351 * req. cl_page_operations::cpo_make_ready() method at the particular layer
2352 * might return -EAGAIN to indicate that this page is not eligible for the
2353 * transfer right now.
2357 * Plan is to divide transfers into "priority bands" (indicated when
2358 * submitting cl_page_list, and queuing a page for the opportunistic transfer)
2359 * and allow glueing of cached pages to immediate transfers only within single
2360 * band. This would make high priority transfers (like lock cancellation or
2361 * memory pressure induced write-out) really high priority.
2366 * Per-transfer attributes.
2368 struct cl_req_attr {
2369 /** Generic attributes for the server consumption. */
2370 struct obdo *cra_oa;
2372 struct obd_capa *cra_capa;
2376 * Transfer request operations definable at every layer.
2378 * Concurrency: transfer formation engine synchronizes calls to all transfer
2381 struct cl_req_operations {
2383 * Invoked top-to-bottom by cl_req_prep() when transfer formation is
2384 * complete (all pages are added).
2386 * \see osc_req_prep()
2388 int (*cro_prep)(const struct lu_env *env,
2389 const struct cl_req_slice *slice);
2391 * Called top-to-bottom to fill in \a oa fields. This is called twice
2392 * with different flags, see bug 10150 and osc_build_req().
2394 * \param obj an object from cl_req which attributes are to be set in
2397 * \param oa struct obdo where attributes are placed
2399 * \param flags \a oa fields to be filled.
2401 void (*cro_attr_set)(const struct lu_env *env,
2402 const struct cl_req_slice *slice,
2403 const struct cl_object *obj,
2404 struct cl_req_attr *attr, obd_valid flags);
2406 * Called top-to-bottom from cl_req_completion() to notify layers that
2407 * transfer completed. Has to free all state allocated by
2408 * cl_device_operations::cdo_req_init().
2410 void (*cro_completion)(const struct lu_env *env,
2411 const struct cl_req_slice *slice, int ioret);
2415 * A per-object state that (potentially multi-object) transfer request keeps.
2418 /** object itself */
2419 struct cl_object *ro_obj;
2420 /** reference to cl_req_obj::ro_obj. For debugging. */
2421 struct lu_ref_link *ro_obj_ref;
2422 /* something else? Number of pages for a given object? */
2428 * Transfer requests are not reference counted, because IO sub-system owns
2429 * them exclusively and knows when to free them.
2433 * cl_req is created by cl_req_alloc() that calls
2434 * cl_device_operations::cdo_req_init() device methods to allocate per-req
2435 * state in every layer.
2437 * Then pages are added (cl_req_page_add()), req keeps track of all objects it
2438 * contains pages for.
2440 * Once all pages were collected, cl_page_operations::cpo_prep() method is
2441 * called top-to-bottom. At that point layers can modify req, let it pass, or
2442 * deny it completely. This is to support things like SNS that have transfer
2443 * ordering requirements invisible to the individual req-formation engine.
2445 * On transfer completion (or transfer timeout, or failure to initiate the
2446 * transfer of an allocated req), cl_req_operations::cro_completion() method
2447 * is called, after execution of cl_page_operations::cpo_completion() of all
2451 enum cl_req_type crq_type;
2452 /** A list of pages being transfered */
2453 cfs_list_t crq_pages;
2454 /** Number of pages in cl_req::crq_pages */
2455 unsigned crq_nrpages;
2456 /** An array of objects which pages are in ->crq_pages */
2457 struct cl_req_obj *crq_o;
2458 /** Number of elements in cl_req::crq_objs[] */
2459 unsigned crq_nrobjs;
2460 cfs_list_t crq_layers;
2464 * Per-layer state for request.
2466 struct cl_req_slice {
2467 struct cl_req *crs_req;
2468 struct cl_device *crs_dev;
2469 cfs_list_t crs_linkage;
2470 const struct cl_req_operations *crs_ops;
2476 * Stats for a generic cache (similar to inode, lu_object, etc. caches).
2478 struct cache_stats {
2479 const char *cs_name;
2480 /** how many entities were created at all */
2481 cfs_atomic_t cs_created;
2482 /** how many cache lookups were performed */
2483 cfs_atomic_t cs_lookup;
2484 /** how many times cache lookup resulted in a hit */
2485 cfs_atomic_t cs_hit;
2486 /** how many entities are in the cache right now */
2487 cfs_atomic_t cs_total;
2488 /** how many entities in the cache are actively used (and cannot be
2489 * evicted) right now */
2490 cfs_atomic_t cs_busy;
2493 /** These are not exported so far */
2494 void cache_stats_init (struct cache_stats *cs, const char *name);
2495 int cache_stats_print(const struct cache_stats *cs,
2496 char *page, int count, int header);
2499 * Client-side site. This represents particular client stack. "Global"
2500 * variables should (directly or indirectly) be added here to allow multiple
2501 * clients to co-exist in the single address space.
2504 struct lu_site cs_lu;
2506 * Statistical counters. Atomics do not scale, something better like
2507 * per-cpu counters is needed.
2509 * These are exported as /proc/fs/lustre/llite/.../site
2511 * When interpreting keep in mind that both sub-locks (and sub-pages)
2512 * and top-locks (and top-pages) are accounted here.
2514 struct cache_stats cs_pages;
2515 struct cache_stats cs_locks;
2516 cfs_atomic_t cs_pages_state[CPS_NR];
2517 cfs_atomic_t cs_locks_state[CLS_NR];
2520 int cl_site_init (struct cl_site *s, struct cl_device *top);
2521 void cl_site_fini (struct cl_site *s);
2522 void cl_stack_fini(const struct lu_env *env, struct cl_device *cl);
2525 * Output client site statistical counters into a buffer. Suitable for
2526 * ll_rd_*()-style functions.
2528 int cl_site_stats_print(const struct cl_site *s, char *page, int count);
2533 * Type conversion and accessory functions.
2537 static inline struct cl_site *lu2cl_site(const struct lu_site *site)
2539 return container_of(site, struct cl_site, cs_lu);
2542 static inline int lu_device_is_cl(const struct lu_device *d)
2544 return d->ld_type->ldt_tags & LU_DEVICE_CL;
2547 static inline struct cl_device *lu2cl_dev(const struct lu_device *d)
2549 LASSERT(d == NULL || IS_ERR(d) || lu_device_is_cl(d));
2550 return container_of0(d, struct cl_device, cd_lu_dev);
2553 static inline struct lu_device *cl2lu_dev(struct cl_device *d)
2555 return &d->cd_lu_dev;
2558 static inline struct cl_object *lu2cl(const struct lu_object *o)
2560 LASSERT(o == NULL || IS_ERR(o) || lu_device_is_cl(o->lo_dev));
2561 return container_of0(o, struct cl_object, co_lu);
2564 static inline const struct cl_object_conf *
2565 lu2cl_conf(const struct lu_object_conf *conf)
2567 return container_of0(conf, struct cl_object_conf, coc_lu);
2570 static inline struct cl_object *cl_object_next(const struct cl_object *obj)
2572 return obj ? lu2cl(lu_object_next(&obj->co_lu)) : NULL;
2575 static inline struct cl_device *cl_object_device(const struct cl_object *o)
2577 LASSERT(o == NULL || IS_ERR(o) || lu_device_is_cl(o->co_lu.lo_dev));
2578 return container_of0(o->co_lu.lo_dev, struct cl_device, cd_lu_dev);
2581 static inline struct cl_object_header *luh2coh(const struct lu_object_header *h)
2583 return container_of0(h, struct cl_object_header, coh_lu);
2586 static inline struct cl_site *cl_object_site(const struct cl_object *obj)
2588 return lu2cl_site(obj->co_lu.lo_dev->ld_site);
2592 struct cl_object_header *cl_object_header(const struct cl_object *obj)
2594 return luh2coh(obj->co_lu.lo_header);
2597 static inline int cl_device_init(struct cl_device *d, struct lu_device_type *t)
2599 return lu_device_init(&d->cd_lu_dev, t);
2602 static inline void cl_device_fini(struct cl_device *d)
2604 lu_device_fini(&d->cd_lu_dev);
2607 void cl_page_slice_add(struct cl_page *page, struct cl_page_slice *slice,
2608 struct cl_object *obj,
2609 const struct cl_page_operations *ops);
2610 void cl_lock_slice_add(struct cl_lock *lock, struct cl_lock_slice *slice,
2611 struct cl_object *obj,
2612 const struct cl_lock_operations *ops);
2613 void cl_io_slice_add(struct cl_io *io, struct cl_io_slice *slice,
2614 struct cl_object *obj, const struct cl_io_operations *ops);
2615 void cl_req_slice_add(struct cl_req *req, struct cl_req_slice *slice,
2616 struct cl_device *dev,
2617 const struct cl_req_operations *ops);
2620 /** \defgroup cl_object cl_object
2622 struct cl_object *cl_object_top (struct cl_object *o);
2623 struct cl_object *cl_object_find(const struct lu_env *env, struct cl_device *cd,
2624 const struct lu_fid *fid,
2625 const struct cl_object_conf *c);
2627 int cl_object_header_init(struct cl_object_header *h);
2628 void cl_object_header_fini(struct cl_object_header *h);
2629 void cl_object_put (const struct lu_env *env, struct cl_object *o);
2630 void cl_object_get (struct cl_object *o);
2631 void cl_object_attr_lock (struct cl_object *o);
2632 void cl_object_attr_unlock(struct cl_object *o);
2633 int cl_object_attr_get (const struct lu_env *env, struct cl_object *obj,
2634 struct cl_attr *attr);
2635 int cl_object_attr_set (const struct lu_env *env, struct cl_object *obj,
2636 const struct cl_attr *attr, unsigned valid);
2637 int cl_object_glimpse (const struct lu_env *env, struct cl_object *obj,
2638 struct ost_lvb *lvb);
2639 int cl_conf_set (const struct lu_env *env, struct cl_object *obj,
2640 const struct cl_object_conf *conf);
2641 void cl_object_prune (const struct lu_env *env, struct cl_object *obj);
2642 void cl_object_kill (const struct lu_env *env, struct cl_object *obj);
2643 int cl_object_has_locks (struct cl_object *obj);
2646 * Returns true, iff \a o0 and \a o1 are slices of the same object.
2648 static inline int cl_object_same(struct cl_object *o0, struct cl_object *o1)
2650 return cl_object_header(o0) == cl_object_header(o1);
2655 /** \defgroup cl_page cl_page
2657 struct cl_page *cl_page_lookup(struct cl_object_header *hdr,
2659 void cl_page_gang_lookup(const struct lu_env *env,
2660 struct cl_object *obj,
2662 pgoff_t start, pgoff_t end,
2663 struct cl_page_list *plist,
2666 struct cl_page *cl_page_find (const struct lu_env *env,
2667 struct cl_object *obj,
2668 pgoff_t idx, struct page *vmpage,
2669 enum cl_page_type type);
2670 struct cl_page *cl_page_find_sub (const struct lu_env *env,
2671 struct cl_object *obj,
2672 pgoff_t idx, struct page *vmpage,
2673 struct cl_page *parent);
2674 void cl_page_get (struct cl_page *page);
2675 void cl_page_put (const struct lu_env *env,
2676 struct cl_page *page);
2677 void cl_page_print (const struct lu_env *env, void *cookie,
2678 lu_printer_t printer,
2679 const struct cl_page *pg);
2680 void cl_page_header_print(const struct lu_env *env, void *cookie,
2681 lu_printer_t printer,
2682 const struct cl_page *pg);
2683 cfs_page_t *cl_page_vmpage (const struct lu_env *env,
2684 struct cl_page *page);
2685 struct cl_page *cl_vmpage_page (cfs_page_t *vmpage, struct cl_object *obj);
2686 struct cl_page *cl_page_top (struct cl_page *page);
2688 const struct cl_page_slice *cl_page_at(const struct cl_page *page,
2689 const struct lu_device_type *dtype);
2694 * Functions dealing with the ownership of page by io.
2698 int cl_page_own (const struct lu_env *env,
2699 struct cl_io *io, struct cl_page *page);
2700 int cl_page_own_try (const struct lu_env *env,
2701 struct cl_io *io, struct cl_page *page);
2702 void cl_page_assume (const struct lu_env *env,
2703 struct cl_io *io, struct cl_page *page);
2704 void cl_page_unassume (const struct lu_env *env,
2705 struct cl_io *io, struct cl_page *pg);
2706 void cl_page_disown (const struct lu_env *env,
2707 struct cl_io *io, struct cl_page *page);
2708 int cl_page_is_owned (const struct cl_page *pg, const struct cl_io *io);
2715 * Functions dealing with the preparation of a page for a transfer, and
2716 * tracking transfer state.
2719 int cl_page_prep (const struct lu_env *env, struct cl_io *io,
2720 struct cl_page *pg, enum cl_req_type crt);
2721 void cl_page_completion (const struct lu_env *env,
2722 struct cl_page *pg, enum cl_req_type crt, int ioret);
2723 int cl_page_make_ready (const struct lu_env *env, struct cl_page *pg,
2724 enum cl_req_type crt);
2725 int cl_page_cache_add (const struct lu_env *env, struct cl_io *io,
2726 struct cl_page *pg, enum cl_req_type crt);
2727 void cl_page_clip (const struct lu_env *env, struct cl_page *pg,
2729 int cl_page_cancel (const struct lu_env *env, struct cl_page *page);
2735 * \name helper routines
2736 * Functions to discard, delete and export a cl_page.
2739 void cl_page_discard (const struct lu_env *env, struct cl_io *io,
2740 struct cl_page *pg);
2741 void cl_page_delete (const struct lu_env *env, struct cl_page *pg);
2742 int cl_page_unmap (const struct lu_env *env, struct cl_io *io,
2743 struct cl_page *pg);
2744 int cl_page_is_vmlocked (const struct lu_env *env,
2745 const struct cl_page *pg);
2746 void cl_page_export (const struct lu_env *env,
2747 struct cl_page *pg, int uptodate);
2748 int cl_page_is_under_lock(const struct lu_env *env, struct cl_io *io,
2749 struct cl_page *page);
2750 loff_t cl_offset (const struct cl_object *obj, pgoff_t idx);
2751 pgoff_t cl_index (const struct cl_object *obj, loff_t offset);
2752 int cl_page_size (const struct cl_object *obj);
2753 int cl_pages_prune (const struct lu_env *env, struct cl_object *obj);
2755 void cl_lock_print (const struct lu_env *env, void *cookie,
2756 lu_printer_t printer, const struct cl_lock *lock);
2757 void cl_lock_descr_print(const struct lu_env *env, void *cookie,
2758 lu_printer_t printer,
2759 const struct cl_lock_descr *descr);
2764 /** \defgroup cl_lock cl_lock
2767 struct cl_lock *cl_lock_hold(const struct lu_env *env, const struct cl_io *io,
2768 const struct cl_lock_descr *need,
2769 const char *scope, const void *source);
2770 struct cl_lock *cl_lock_peek(const struct lu_env *env, const struct cl_io *io,
2771 const struct cl_lock_descr *need,
2772 const char *scope, const void *source);
2773 struct cl_lock *cl_lock_request(const struct lu_env *env, struct cl_io *io,
2774 const struct cl_lock_descr *need,
2775 const char *scope, const void *source);
2776 struct cl_lock *cl_lock_at_page(const struct lu_env *env, struct cl_object *obj,
2777 struct cl_page *page, struct cl_lock *except,
2778 int pending, int canceld);
2780 const struct cl_lock_slice *cl_lock_at(const struct cl_lock *lock,
2781 const struct lu_device_type *dtype);
2783 void cl_lock_get (struct cl_lock *lock);
2784 void cl_lock_get_trust (struct cl_lock *lock);
2785 void cl_lock_put (const struct lu_env *env, struct cl_lock *lock);
2786 void cl_lock_hold_add (const struct lu_env *env, struct cl_lock *lock,
2787 const char *scope, const void *source);
2788 void cl_lock_unhold (const struct lu_env *env, struct cl_lock *lock,
2789 const char *scope, const void *source);
2790 void cl_lock_release (const struct lu_env *env, struct cl_lock *lock,
2791 const char *scope, const void *source);
2792 void cl_lock_user_add (const struct lu_env *env, struct cl_lock *lock);
2793 int cl_lock_user_del (const struct lu_env *env, struct cl_lock *lock);
2795 enum cl_lock_state cl_lock_intransit(const struct lu_env *env,
2796 struct cl_lock *lock);
2797 void cl_lock_extransit(const struct lu_env *env, struct cl_lock *lock,
2798 enum cl_lock_state state);
2799 int cl_lock_is_intransit(struct cl_lock *lock);
2801 int cl_lock_enqueue_wait(const struct lu_env *env, struct cl_lock *lock,
2804 /** \name statemachine statemachine
2805 * Interface to lock state machine consists of 3 parts:
2807 * - "try" functions that attempt to effect a state transition. If state
2808 * transition is not possible right now (e.g., if it has to wait for some
2809 * asynchronous event to occur), these functions return
2810 * cl_lock_transition::CLO_WAIT.
2812 * - "non-try" functions that implement synchronous blocking interface on
2813 * top of non-blocking "try" functions. These functions repeatedly call
2814 * corresponding "try" versions, and if state transition is not possible
2815 * immediately, wait for lock state change.
2817 * - methods from cl_lock_operations, called by "try" functions. Lock can
2818 * be advanced to the target state only when all layers voted that they
2819 * are ready for this transition. "Try" functions call methods under lock
2820 * mutex. If a layer had to release a mutex, it re-acquires it and returns
2821 * cl_lock_transition::CLO_REPEAT, causing "try" function to call all
2824 * TRY NON-TRY METHOD FINAL STATE
2826 * cl_enqueue_try() cl_enqueue() cl_lock_operations::clo_enqueue() CLS_ENQUEUED
2828 * cl_wait_try() cl_wait() cl_lock_operations::clo_wait() CLS_HELD
2830 * cl_unuse_try() cl_unuse() cl_lock_operations::clo_unuse() CLS_CACHED
2832 * cl_use_try() NONE cl_lock_operations::clo_use() CLS_HELD
2836 int cl_enqueue (const struct lu_env *env, struct cl_lock *lock,
2837 struct cl_io *io, __u32 flags);
2838 int cl_wait (const struct lu_env *env, struct cl_lock *lock);
2839 void cl_unuse (const struct lu_env *env, struct cl_lock *lock);
2840 int cl_enqueue_try(const struct lu_env *env, struct cl_lock *lock,
2841 struct cl_io *io, __u32 flags);
2842 int cl_unuse_try (const struct lu_env *env, struct cl_lock *lock);
2843 int cl_wait_try (const struct lu_env *env, struct cl_lock *lock);
2844 int cl_use_try (const struct lu_env *env, struct cl_lock *lock, int atomic);
2846 /** @} statemachine */
2848 void cl_lock_signal (const struct lu_env *env, struct cl_lock *lock);
2849 int cl_lock_state_wait (const struct lu_env *env, struct cl_lock *lock);
2850 void cl_lock_state_set (const struct lu_env *env, struct cl_lock *lock,
2851 enum cl_lock_state state);
2852 int cl_queue_match (const cfs_list_t *queue,
2853 const struct cl_lock_descr *need);
2855 void cl_lock_mutex_get (const struct lu_env *env, struct cl_lock *lock);
2856 int cl_lock_mutex_try (const struct lu_env *env, struct cl_lock *lock);
2857 void cl_lock_mutex_put (const struct lu_env *env, struct cl_lock *lock);
2858 int cl_lock_is_mutexed (struct cl_lock *lock);
2859 int cl_lock_nr_mutexed (const struct lu_env *env);
2860 int cl_lock_page_out (const struct lu_env *env, struct cl_lock *lock,
2862 int cl_lock_ext_match (const struct cl_lock_descr *has,
2863 const struct cl_lock_descr *need);
2864 int cl_lock_descr_match(const struct cl_lock_descr *has,
2865 const struct cl_lock_descr *need);
2866 int cl_lock_mode_match (enum cl_lock_mode has, enum cl_lock_mode need);
2867 int cl_lock_modify (const struct lu_env *env, struct cl_lock *lock,
2868 const struct cl_lock_descr *desc);
2870 void cl_lock_closure_init (const struct lu_env *env,
2871 struct cl_lock_closure *closure,
2872 struct cl_lock *origin, int wait);
2873 void cl_lock_closure_fini (struct cl_lock_closure *closure);
2874 int cl_lock_closure_build(const struct lu_env *env, struct cl_lock *lock,
2875 struct cl_lock_closure *closure);
2876 void cl_lock_disclosure (const struct lu_env *env,
2877 struct cl_lock_closure *closure);
2878 int cl_lock_enclosure (const struct lu_env *env, struct cl_lock *lock,
2879 struct cl_lock_closure *closure);
2881 void cl_lock_cancel(const struct lu_env *env, struct cl_lock *lock);
2882 void cl_lock_delete(const struct lu_env *env, struct cl_lock *lock);
2883 void cl_lock_error (const struct lu_env *env, struct cl_lock *lock, int error);
2884 void cl_locks_prune(const struct lu_env *env, struct cl_object *obj, int wait);
2886 unsigned long cl_lock_weigh(const struct lu_env *env, struct cl_lock *lock);
2890 /** \defgroup cl_io cl_io
2893 int cl_io_init (const struct lu_env *env, struct cl_io *io,
2894 enum cl_io_type iot, struct cl_object *obj);
2895 int cl_io_sub_init (const struct lu_env *env, struct cl_io *io,
2896 enum cl_io_type iot, struct cl_object *obj);
2897 int cl_io_rw_init (const struct lu_env *env, struct cl_io *io,
2898 enum cl_io_type iot, loff_t pos, size_t count);
2899 int cl_io_loop (const struct lu_env *env, struct cl_io *io);
2901 void cl_io_fini (const struct lu_env *env, struct cl_io *io);
2902 int cl_io_iter_init (const struct lu_env *env, struct cl_io *io);
2903 void cl_io_iter_fini (const struct lu_env *env, struct cl_io *io);
2904 int cl_io_lock (const struct lu_env *env, struct cl_io *io);
2905 void cl_io_unlock (const struct lu_env *env, struct cl_io *io);
2906 int cl_io_start (const struct lu_env *env, struct cl_io *io);
2907 void cl_io_end (const struct lu_env *env, struct cl_io *io);
2908 int cl_io_lock_add (const struct lu_env *env, struct cl_io *io,
2909 struct cl_io_lock_link *link);
2910 int cl_io_lock_alloc_add(const struct lu_env *env, struct cl_io *io,
2911 struct cl_lock_descr *descr);
2912 int cl_io_read_page (const struct lu_env *env, struct cl_io *io,
2913 struct cl_page *page);
2914 int cl_io_prepare_write(const struct lu_env *env, struct cl_io *io,
2915 struct cl_page *page, unsigned from, unsigned to);
2916 int cl_io_commit_write (const struct lu_env *env, struct cl_io *io,
2917 struct cl_page *page, unsigned from, unsigned to);
2918 int cl_io_submit_rw (const struct lu_env *env, struct cl_io *io,
2919 enum cl_req_type iot, struct cl_2queue *queue,
2920 enum cl_req_priority priority);
2921 int cl_io_submit_sync (const struct lu_env *env, struct cl_io *io,
2922 enum cl_req_type iot, struct cl_2queue *queue,
2923 enum cl_req_priority priority, long timeout);
2924 void cl_io_rw_advance (const struct lu_env *env, struct cl_io *io,
2926 int cl_io_cancel (const struct lu_env *env, struct cl_io *io,
2927 struct cl_page_list *queue);
2928 int cl_io_is_going (const struct lu_env *env);
2931 * True, iff \a io is an O_APPEND write(2).
2933 static inline int cl_io_is_append(const struct cl_io *io)
2935 return io->ci_type == CIT_WRITE && io->u.ci_wr.wr_append;
2939 * True, iff \a io is a truncate(2).
2941 static inline int cl_io_is_trunc(const struct cl_io *io)
2943 return io->ci_type == CIT_SETATTR &&
2944 (io->u.ci_setattr.sa_valid & ATTR_SIZE);
2947 struct cl_io *cl_io_top(struct cl_io *io);
2949 void cl_io_print(const struct lu_env *env, void *cookie,
2950 lu_printer_t printer, const struct cl_io *io);
2952 #define CL_IO_SLICE_CLEAN(foo_io, base) \
2954 typeof(foo_io) __foo_io = (foo_io); \
2956 CLASSERT(offsetof(typeof(*__foo_io), base) == 0); \
2957 memset(&__foo_io->base + 1, 0, \
2958 (sizeof *__foo_io) - sizeof __foo_io->base); \
2963 /** \defgroup cl_page_list cl_page_list
2967 * Iterate over pages in a page list.
2969 #define cl_page_list_for_each(page, list) \
2970 cfs_list_for_each_entry((page), &(list)->pl_pages, cp_batch)
2973 * Iterate over pages in a page list, taking possible removals into account.
2975 #define cl_page_list_for_each_safe(page, temp, list) \
2976 cfs_list_for_each_entry_safe((page), (temp), &(list)->pl_pages, cp_batch)
2978 void cl_page_list_init (struct cl_page_list *plist);
2979 void cl_page_list_add (struct cl_page_list *plist, struct cl_page *page);
2980 void cl_page_list_move (struct cl_page_list *dst, struct cl_page_list *src,
2981 struct cl_page *page);
2982 void cl_page_list_splice (struct cl_page_list *list,
2983 struct cl_page_list *head);
2984 void cl_page_list_del (const struct lu_env *env,
2985 struct cl_page_list *plist, struct cl_page *page);
2986 void cl_page_list_disown (const struct lu_env *env,
2987 struct cl_io *io, struct cl_page_list *plist);
2988 int cl_page_list_own (const struct lu_env *env,
2989 struct cl_io *io, struct cl_page_list *plist);
2990 void cl_page_list_assume (const struct lu_env *env,
2991 struct cl_io *io, struct cl_page_list *plist);
2992 void cl_page_list_discard(const struct lu_env *env,
2993 struct cl_io *io, struct cl_page_list *plist);
2994 int cl_page_list_unmap (const struct lu_env *env,
2995 struct cl_io *io, struct cl_page_list *plist);
2996 void cl_page_list_fini (const struct lu_env *env, struct cl_page_list *plist);
2998 void cl_2queue_init (struct cl_2queue *queue);
2999 void cl_2queue_add (struct cl_2queue *queue, struct cl_page *page);
3000 void cl_2queue_disown (const struct lu_env *env,
3001 struct cl_io *io, struct cl_2queue *queue);
3002 void cl_2queue_assume (const struct lu_env *env,
3003 struct cl_io *io, struct cl_2queue *queue);
3004 void cl_2queue_discard (const struct lu_env *env,
3005 struct cl_io *io, struct cl_2queue *queue);
3006 void cl_2queue_fini (const struct lu_env *env, struct cl_2queue *queue);
3007 void cl_2queue_init_page(struct cl_2queue *queue, struct cl_page *page);
3009 /** @} cl_page_list */
3011 /** \defgroup cl_req cl_req
3013 struct cl_req *cl_req_alloc(const struct lu_env *env, struct cl_page *page,
3014 enum cl_req_type crt, int nr_objects);
3016 void cl_req_page_add (const struct lu_env *env, struct cl_req *req,
3017 struct cl_page *page);
3018 void cl_req_page_done (const struct lu_env *env, struct cl_page *page);
3019 int cl_req_prep (const struct lu_env *env, struct cl_req *req);
3020 void cl_req_attr_set (const struct lu_env *env, struct cl_req *req,
3021 struct cl_req_attr *attr, obd_valid flags);
3022 void cl_req_completion(const struct lu_env *env, struct cl_req *req, int ioret);
3024 /** \defgroup cl_sync_io cl_sync_io
3028 * Anchor for synchronous transfer. This is allocated on a stack by thread
3029 * doing synchronous transfer, and a pointer to this structure is set up in
3030 * every page submitted for transfer. Transfer completion routine updates
3031 * anchor and wakes up waiting thread when transfer is complete.
3034 /** number of pages yet to be transferred. */
3035 cfs_atomic_t csi_sync_nr;
3036 /** completion to be signaled when transfer is complete. */
3037 cfs_waitq_t csi_waitq;
3042 void cl_sync_io_init(struct cl_sync_io *anchor, int nrpages);
3043 int cl_sync_io_wait(const struct lu_env *env, struct cl_io *io,
3044 struct cl_page_list *queue, struct cl_sync_io *anchor,
3046 void cl_sync_io_note(struct cl_sync_io *anchor, int ioret);
3048 /** @} cl_sync_io */
3052 /** \defgroup cl_env cl_env
3054 * lu_env handling for a client.
3056 * lu_env is an environment within which lustre code executes. Its major part
3057 * is lu_context---a fast memory allocation mechanism that is used to conserve
3058 * precious kernel stack space. Originally lu_env was designed for a server,
3061 * - there is a (mostly) fixed number of threads, and
3063 * - call chains have no non-lustre portions inserted between lustre code.
3065 * On a client both these assumtpion fails, because every user thread can
3066 * potentially execute lustre code as part of a system call, and lustre calls
3067 * into VFS or MM that call back into lustre.
3069 * To deal with that, cl_env wrapper functions implement the following
3072 * - allocation and destruction of environment is amortized by caching no
3073 * longer used environments instead of destroying them;
3075 * - there is a notion of "current" environment, attached to the kernel
3076 * data structure representing current thread Top-level lustre code
3077 * allocates an environment and makes it current, then calls into
3078 * non-lustre code, that in turn calls lustre back. Low-level lustre
3079 * code thus called can fetch environment created by the top-level code
3080 * and reuse it, avoiding additional environment allocation.
3081 * Right now, three interfaces can attach the cl_env to running thread:
3084 * - cl_env_reexit(cl_env_reenter had to be called priorly)
3086 * \see lu_env, lu_context, lu_context_key
3089 struct cl_env_nest {
3094 struct lu_env *cl_env_peek (int *refcheck);
3095 struct lu_env *cl_env_get (int *refcheck);
3096 struct lu_env *cl_env_alloc (int *refcheck, __u32 tags);
3097 struct lu_env *cl_env_nested_get (struct cl_env_nest *nest);
3098 void cl_env_put (struct lu_env *env, int *refcheck);
3099 void cl_env_nested_put (struct cl_env_nest *nest, struct lu_env *env);
3100 void *cl_env_reenter (void);
3101 void cl_env_reexit (void *cookie);
3102 void cl_env_implant (struct lu_env *env, int *refcheck);
3103 void cl_env_unplant (struct lu_env *env, int *refcheck);
3104 unsigned cl_env_cache_purge(unsigned nr);
3111 void cl_attr2lvb(struct ost_lvb *lvb, const struct cl_attr *attr);
3112 void cl_lvb2attr(struct cl_attr *attr, const struct ost_lvb *lvb);
3114 struct cl_device *cl_type_setup(const struct lu_env *env, struct lu_site *site,
3115 struct lu_device_type *ldt,
3116 struct lu_device *next);
3119 #endif /* _LINUX_CL_OBJECT_H */