4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 only,
8 * as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License version 2 for more details (a copy is included
14 * in the LICENSE file that accompanied this code).
16 * You should have received a copy of the GNU General Public License
17 * version 2 along with this program; If not, see
18 * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
20 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21 * CA 95054 USA or visit www.sun.com if you need additional information or
27 * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
28 * Use is subject to license terms.
30 * Copyright (c) 2011, 2015, Intel Corporation.
33 * This file is part of Lustre, http://www.lustre.org/
34 * Lustre is a trademark of Sun Microsystems, Inc.
36 * Client Lustre Object.
38 * Author: Nikita Danilov <nikita.danilov@sun.com>
39 * Author: Jinshan Xiong <jinshan.xiong@intel.com>
51 #define DEBUG_SUBSYSTEM S_CLASS
53 #include <linux/list.h>
54 #include <libcfs/libcfs.h>
55 /* class_put_type() */
56 #include <obd_class.h>
57 #include <obd_support.h>
58 #include <lustre_fid.h>
59 #include <libcfs/libcfs_hash.h> /* for cfs_hash stuff */
60 #include <cl_object.h>
61 #include <lu_object.h>
62 #include "cl_internal.h"
64 static struct kmem_cache *cl_env_kmem;
66 /** Lock class of cl_object_header::coh_attr_guard */
67 static struct lock_class_key cl_attr_guard_class;
70 * Initialize cl_object_header.
72 int cl_object_header_init(struct cl_object_header *h)
77 result = lu_object_header_init(&h->coh_lu);
79 spin_lock_init(&h->coh_attr_guard);
80 lockdep_set_class(&h->coh_attr_guard, &cl_attr_guard_class);
81 h->coh_page_bufsize = 0;
85 EXPORT_SYMBOL(cl_object_header_init);
88 * Finalize cl_object_header.
90 void cl_object_header_fini(struct cl_object_header *h)
92 lu_object_header_fini(&h->coh_lu);
96 * Returns a cl_object with a given \a fid.
98 * Returns either cached or newly created object. Additional reference on the
99 * returned object is acquired.
101 * \see lu_object_find(), cl_page_find(), cl_lock_find()
103 struct cl_object *cl_object_find(const struct lu_env *env,
104 struct cl_device *cd, const struct lu_fid *fid,
105 const struct cl_object_conf *c)
108 return lu2cl(lu_object_find_slice(env, cl2lu_dev(cd), fid, &c->coc_lu));
110 EXPORT_SYMBOL(cl_object_find);
113 * Releases a reference on \a o.
115 * When last reference is released object is returned to the cache, unless
116 * lu_object_header_flags::LU_OBJECT_HEARD_BANSHEE bit is set in its header.
118 * \see cl_page_put(), cl_lock_put().
120 void cl_object_put(const struct lu_env *env, struct cl_object *o)
122 lu_object_put(env, &o->co_lu);
124 EXPORT_SYMBOL(cl_object_put);
127 * Acquire an additional reference to the object \a o.
129 * This can only be used to acquire _additional_ reference, i.e., caller
130 * already has to possess at least one reference to \a o before calling this.
132 * \see cl_page_get(), cl_lock_get().
134 void cl_object_get(struct cl_object *o)
136 lu_object_get(&o->co_lu);
138 EXPORT_SYMBOL(cl_object_get);
141 * Returns the top-object for a given \a o.
145 struct cl_object *cl_object_top(struct cl_object *o)
147 struct cl_object_header *hdr = cl_object_header(o);
148 struct cl_object *top;
150 while (hdr->coh_parent != NULL)
151 hdr = hdr->coh_parent;
153 top = lu2cl(lu_object_top(&hdr->coh_lu));
154 CDEBUG(D_TRACE, "%p -> %p\n", o, top);
157 EXPORT_SYMBOL(cl_object_top);
160 * Returns pointer to the lock protecting data-attributes for the given object
163 * Data-attributes are protected by the cl_object_header::coh_attr_guard
164 * spin-lock in the top-object.
166 * \see cl_attr, cl_object_attr_lock(), cl_object_operations::coo_attr_get().
168 static spinlock_t *cl_object_attr_guard(struct cl_object *o)
170 return &cl_object_header(cl_object_top(o))->coh_attr_guard;
174 * Locks data-attributes.
176 * Prevents data-attributes from changing, until lock is released by
177 * cl_object_attr_unlock(). This has to be called before calls to
178 * cl_object_attr_get(), cl_object_attr_update().
180 void cl_object_attr_lock(struct cl_object *o)
181 __acquires(cl_object_attr_guard(o))
183 spin_lock(cl_object_attr_guard(o));
185 EXPORT_SYMBOL(cl_object_attr_lock);
188 * Releases data-attributes lock, acquired by cl_object_attr_lock().
190 void cl_object_attr_unlock(struct cl_object *o)
191 __releases(cl_object_attr_guard(o))
193 spin_unlock(cl_object_attr_guard(o));
195 EXPORT_SYMBOL(cl_object_attr_unlock);
198 * Returns data-attributes of an object \a obj.
200 * Every layer is asked (by calling cl_object_operations::coo_attr_get())
201 * top-to-bottom to fill in parts of \a attr that this layer is responsible
204 int cl_object_attr_get(const struct lu_env *env, struct cl_object *obj,
205 struct cl_attr *attr)
207 struct lu_object_header *top;
210 assert_spin_locked(cl_object_attr_guard(obj));
213 top = obj->co_lu.lo_header;
215 list_for_each_entry(obj, &top->loh_layers, co_lu.lo_linkage) {
216 if (obj->co_ops->coo_attr_get != NULL) {
217 result = obj->co_ops->coo_attr_get(env, obj, attr);
227 EXPORT_SYMBOL(cl_object_attr_get);
230 * Updates data-attributes of an object \a obj.
232 * Only attributes, mentioned in a validness bit-mask \a v are
233 * updated. Calls cl_object_operations::coo_upd_attr() on every layer, bottom
236 int cl_object_attr_update(const struct lu_env *env, struct cl_object *obj,
237 const struct cl_attr *attr, unsigned v)
239 struct lu_object_header *top;
242 assert_spin_locked(cl_object_attr_guard(obj));
245 top = obj->co_lu.lo_header;
247 list_for_each_entry_reverse(obj, &top->loh_layers, co_lu.lo_linkage) {
248 if (obj->co_ops->coo_attr_update != NULL) {
249 result = obj->co_ops->coo_attr_update(env, obj, attr,
260 EXPORT_SYMBOL(cl_object_attr_update);
263 * Notifies layers (bottom-to-top) that glimpse AST was received.
265 * Layers have to fill \a lvb fields with information that will be shipped
266 * back to glimpse issuer.
268 * \see cl_lock_operations::clo_glimpse()
270 int cl_object_glimpse(const struct lu_env *env, struct cl_object *obj,
273 struct lu_object_header *top;
277 top = obj->co_lu.lo_header;
279 list_for_each_entry_reverse(obj, &top->loh_layers, co_lu.lo_linkage) {
280 if (obj->co_ops->coo_glimpse != NULL) {
281 result = obj->co_ops->coo_glimpse(env, obj, lvb);
286 LU_OBJECT_HEADER(D_DLMTRACE, env, lu_object_top(top),
287 "size: %llu mtime: %llu atime: %llu "
288 "ctime: %llu blocks: %llu\n",
289 lvb->lvb_size, lvb->lvb_mtime, lvb->lvb_atime,
290 lvb->lvb_ctime, lvb->lvb_blocks);
293 EXPORT_SYMBOL(cl_object_glimpse);
296 * Updates a configuration of an object \a obj.
298 int cl_conf_set(const struct lu_env *env, struct cl_object *obj,
299 const struct cl_object_conf *conf)
301 struct lu_object_header *top;
305 top = obj->co_lu.lo_header;
307 list_for_each_entry(obj, &top->loh_layers, co_lu.lo_linkage) {
308 if (obj->co_ops->coo_conf_set != NULL) {
309 result = obj->co_ops->coo_conf_set(env, obj, conf);
316 EXPORT_SYMBOL(cl_conf_set);
319 * Prunes caches of pages and locks for this object.
321 int cl_object_prune(const struct lu_env *env, struct cl_object *obj)
323 struct lu_object_header *top;
328 top = obj->co_lu.lo_header;
330 list_for_each_entry(o, &top->loh_layers, co_lu.lo_linkage) {
331 if (o->co_ops->coo_prune != NULL) {
332 result = o->co_ops->coo_prune(env, o);
340 EXPORT_SYMBOL(cl_object_prune);
343 * Get stripe information of this object.
345 int cl_object_getstripe(const struct lu_env *env, struct cl_object *obj,
346 struct lov_user_md __user *uarg)
348 struct lu_object_header *top;
352 top = obj->co_lu.lo_header;
353 list_for_each_entry(obj, &top->loh_layers, co_lu.lo_linkage) {
354 if (obj->co_ops->coo_getstripe != NULL) {
355 result = obj->co_ops->coo_getstripe(env, obj, uarg);
362 EXPORT_SYMBOL(cl_object_getstripe);
365 * Get fiemap extents from file object.
367 * \param env [in] lustre environment
368 * \param obj [in] file object
369 * \param key [in] fiemap request argument
370 * \param fiemap [out] fiemap extents mapping retrived
371 * \param buflen [in] max buffer length of @fiemap
376 int cl_object_fiemap(const struct lu_env *env, struct cl_object *obj,
377 struct ll_fiemap_info_key *key,
378 struct fiemap *fiemap, size_t *buflen)
380 struct lu_object_header *top;
384 top = obj->co_lu.lo_header;
385 list_for_each_entry(obj, &top->loh_layers, co_lu.lo_linkage) {
386 if (obj->co_ops->coo_fiemap != NULL) {
387 result = obj->co_ops->coo_fiemap(env, obj, key, fiemap,
395 EXPORT_SYMBOL(cl_object_fiemap);
397 int cl_object_layout_get(const struct lu_env *env, struct cl_object *obj,
398 struct cl_layout *cl)
400 struct lu_object_header *top = obj->co_lu.lo_header;
403 list_for_each_entry(obj, &top->loh_layers, co_lu.lo_linkage) {
404 if (obj->co_ops->coo_layout_get != NULL)
405 return obj->co_ops->coo_layout_get(env, obj, cl);
410 EXPORT_SYMBOL(cl_object_layout_get);
412 loff_t cl_object_maxbytes(struct cl_object *obj)
414 struct lu_object_header *top = obj->co_lu.lo_header;
415 loff_t maxbytes = LLONG_MAX;
418 list_for_each_entry(obj, &top->loh_layers, co_lu.lo_linkage) {
419 if (obj->co_ops->coo_maxbytes != NULL)
420 maxbytes = min_t(loff_t, obj->co_ops->coo_maxbytes(obj),
426 EXPORT_SYMBOL(cl_object_maxbytes);
429 * Helper function removing all object locks, and marking object for
430 * deletion. All object pages must have been deleted at this point.
432 * This is called by cl_inode_fini() and lov_object_delete() to destroy top-
433 * and sub- objects respectively.
435 void cl_object_kill(const struct lu_env *env, struct cl_object *obj)
437 struct cl_object_header *hdr = cl_object_header(obj);
439 set_bit(LU_OBJECT_HEARD_BANSHEE, &hdr->coh_lu.loh_flags);
441 EXPORT_SYMBOL(cl_object_kill);
443 void cache_stats_init(struct cache_stats *cs, const char *name)
448 for (i = 0; i < CS_NR; i++)
449 atomic_set(&cs->cs_stats[i], 0);
452 static int cache_stats_print(const struct cache_stats *cs,
453 struct seq_file *m, int h)
458 * lookup hit total cached create
459 * env: ...... ...... ...... ...... ......
462 const char *names[CS_NR] = CS_NAMES;
464 seq_printf(m, "%6s", " ");
465 for (i = 0; i < CS_NR; i++)
466 seq_printf(m, "%8s", names[i]);
470 seq_printf(m, "%5.5s:", cs->cs_name);
471 for (i = 0; i < CS_NR; i++)
472 seq_printf(m, "%8u", atomic_read(&cs->cs_stats[i]));
476 static void cl_env_percpu_refill(void);
479 * Initialize client site.
481 * Perform common initialization (lu_site_init()), and initialize statistical
482 * counters. Also perform global initializations on the first call.
484 int cl_site_init(struct cl_site *s, struct cl_device *d)
489 result = lu_site_init(&s->cs_lu, &d->cd_lu_dev);
491 cache_stats_init(&s->cs_pages, "pages");
492 for (i = 0; i < ARRAY_SIZE(s->cs_pages_state); ++i)
493 atomic_set(&s->cs_pages_state[0], 0);
494 cl_env_percpu_refill();
498 EXPORT_SYMBOL(cl_site_init);
501 * Finalize client site. Dual to cl_site_init().
503 void cl_site_fini(struct cl_site *s)
505 lu_site_fini(&s->cs_lu);
507 EXPORT_SYMBOL(cl_site_fini);
509 static struct cache_stats cl_env_stats = {
511 .cs_stats = { ATOMIC_INIT(0), }
515 * Outputs client site statistical counters into a buffer. Suitable for
516 * ll_rd_*()-style functions.
518 int cl_site_stats_print(const struct cl_site *site, struct seq_file *m)
520 static const char *pstate[] = {
530 lookup hit total busy create
531 pages: ...... ...... ...... ...... ...... [...... ...... ...... ......]
532 locks: ...... ...... ...... ...... ...... [...... ...... ...... ...... ......]
533 env: ...... ...... ...... ...... ......
535 lu_site_stats_seq_print(&site->cs_lu, m);
536 cache_stats_print(&site->cs_pages, m, 1);
538 for (i = 0; i < ARRAY_SIZE(site->cs_pages_state); ++i)
539 seq_printf(m, "%s: %u ", pstate[i],
540 atomic_read(&site->cs_pages_state[i]));
541 seq_printf(m, "]\n");
542 cache_stats_print(&cl_env_stats, m, 0);
546 EXPORT_SYMBOL(cl_site_stats_print);
548 /*****************************************************************************
550 * lu_env handling on client.
555 * The most efficient way is to store cl_env pointer in task specific
556 * structures. On Linux, it wont' be easy to use task_struct->journal_info
557 * because Lustre code may call into other fs which has certain assumptions
558 * about journal_info. Currently following fields in task_struct are identified
559 * can be used for this purpose:
560 * - cl_env: for liblustre.
561 * - tux_info: ony on RedHat kernel.
563 * \note As long as we use task_struct to store cl_env, we assume that once
564 * called into Lustre, we'll never call into the other part of the kernel
565 * which will use those fields in task_struct without explicitly exiting
568 * If there's no space in task_struct is available, hash will be used.
572 static unsigned cl_envs_cached_max = 32; /* XXX: prototype: arbitrary limit
574 static struct cl_env_cache {
577 struct list_head cec_envs;
583 struct lu_context ce_ses;
586 * Linkage into global list of all client environments. Used for
587 * garbage collection.
589 struct list_head ce_linkage;
595 * Debugging field: address of the caller who made original
601 #ifdef CONFIG_DEBUG_PAGESTATE_TRACKING
602 #define CL_ENV_INC(counter) atomic_inc(&cl_env_stats.cs_stats[CS_##counter])
604 #define CL_ENV_DEC(counter) do { \
605 LASSERT(atomic_read(&cl_env_stats.cs_stats[CS_##counter]) > 0); \
606 atomic_dec(&cl_env_stats.cs_stats[CS_##counter]); \
609 #define CL_ENV_INC(counter)
610 #define CL_ENV_DEC(counter)
613 static void cl_env_init0(struct cl_env *cle, void *debug)
615 LASSERT(cle->ce_ref == 0);
616 LASSERT(cle->ce_magic == &cl_env_init0);
617 LASSERT(cle->ce_debug == NULL);
620 cle->ce_debug = debug;
624 static struct lu_env *cl_env_new(__u32 ctx_tags, __u32 ses_tags, void *debug)
629 OBD_SLAB_ALLOC_PTR_GFP(cle, cl_env_kmem, GFP_NOFS);
633 INIT_LIST_HEAD(&cle->ce_linkage);
634 cle->ce_magic = &cl_env_init0;
636 rc = lu_env_init(env, LCT_CL_THREAD|ctx_tags);
638 rc = lu_context_init(&cle->ce_ses,
639 LCT_SESSION | ses_tags);
641 lu_context_enter(&cle->ce_ses);
642 env->le_ses = &cle->ce_ses;
643 cl_env_init0(cle, debug);
648 OBD_SLAB_FREE_PTR(cle, cl_env_kmem);
655 env = ERR_PTR(-ENOMEM);
659 static void cl_env_fini(struct cl_env *cle)
662 lu_context_fini(&cle->ce_lu.le_ctx);
663 lu_context_fini(&cle->ce_ses);
664 OBD_SLAB_FREE_PTR(cle, cl_env_kmem);
667 static struct lu_env *cl_env_obtain(void *debug)
675 read_lock(&cl_envs[cpu].cec_guard);
676 LASSERT(equi(cl_envs[cpu].cec_count == 0,
677 list_empty(&cl_envs[cpu].cec_envs)));
678 if (cl_envs[cpu].cec_count > 0) {
681 cle = container_of(cl_envs[cpu].cec_envs.next, struct cl_env,
683 list_del_init(&cle->ce_linkage);
684 cl_envs[cpu].cec_count--;
685 read_unlock(&cl_envs[cpu].cec_guard);
689 rc = lu_env_refill(env);
691 cl_env_init0(cle, debug);
692 lu_context_enter(&env->le_ctx);
693 lu_context_enter(&cle->ce_ses);
699 read_unlock(&cl_envs[cpu].cec_guard);
701 env = cl_env_new(lu_context_tags_default,
702 lu_session_tags_default, debug);
707 static inline struct cl_env *cl_env_container(struct lu_env *env)
709 return container_of(env, struct cl_env, ce_lu);
713 * Returns lu_env: if there already is an environment associated with the
714 * current thread, it is returned, otherwise, new environment is allocated.
716 * Allocations are amortized through the global cache of environments.
718 * \param refcheck pointer to a counter used to detect environment leaks. In
719 * the usual case cl_env_get() and cl_env_put() are called in the same lexical
720 * scope and pointer to the same integer is passed as \a refcheck. This is
721 * used to detect missed cl_env_put().
725 struct lu_env *cl_env_get(__u16 *refcheck)
729 env = cl_env_obtain(__builtin_return_address(0));
733 cle = cl_env_container(env);
734 *refcheck = cle->ce_ref;
735 CDEBUG(D_OTHER, "%d@%p\n", cle->ce_ref, cle);
739 EXPORT_SYMBOL(cl_env_get);
742 * Forces an allocation of a fresh environment with given tags.
746 struct lu_env *cl_env_alloc(__u16 *refcheck, __u32 tags)
750 env = cl_env_new(tags, tags, __builtin_return_address(0));
754 cle = cl_env_container(env);
755 *refcheck = cle->ce_ref;
756 CDEBUG(D_OTHER, "%d@%p\n", cle->ce_ref, cle);
760 EXPORT_SYMBOL(cl_env_alloc);
762 static void cl_env_exit(struct cl_env *cle)
764 lu_context_exit(&cle->ce_lu.le_ctx);
765 lu_context_exit(&cle->ce_ses);
769 * Finalizes and frees a given number of cached environments. This is done to
770 * (1) free some memory (not currently hooked into VM), or (2) release
771 * references to modules.
773 unsigned cl_env_cache_purge(unsigned nr)
779 for_each_possible_cpu(i) {
780 write_lock(&cl_envs[i].cec_guard);
781 for (; !list_empty(&cl_envs[i].cec_envs) && nr > 0; --nr) {
782 cle = container_of(cl_envs[i].cec_envs.next,
783 struct cl_env, ce_linkage);
784 list_del_init(&cle->ce_linkage);
785 LASSERT(cl_envs[i].cec_count > 0);
786 cl_envs[i].cec_count--;
787 write_unlock(&cl_envs[i].cec_guard);
790 write_lock(&cl_envs[i].cec_guard);
792 LASSERT(equi(cl_envs[i].cec_count == 0,
793 list_empty(&cl_envs[i].cec_envs)));
794 write_unlock(&cl_envs[i].cec_guard);
798 EXPORT_SYMBOL(cl_env_cache_purge);
801 * Release an environment.
803 * Decrement \a env reference counter. When counter drops to 0, nothing in
804 * this thread is using environment and it is returned to the allocation
805 * cache, or freed straight away, if cache is large enough.
807 void cl_env_put(struct lu_env *env, __u16 *refcheck)
811 cle = cl_env_container(env);
813 LASSERT(cle->ce_ref > 0);
814 LASSERT(ergo(refcheck != NULL, cle->ce_ref == *refcheck));
816 CDEBUG(D_OTHER, "%d@%p\n", cle->ce_ref, cle);
817 if (--cle->ce_ref == 0) {
821 cle->ce_debug = NULL;
824 * Don't bother to take a lock here.
826 * Return environment to the cache only when it was allocated
827 * with the standard tags.
829 if (cl_envs[cpu].cec_count < cl_envs_cached_max &&
830 (env->le_ctx.lc_tags & ~LCT_HAS_EXIT) == LCT_CL_THREAD &&
831 (env->le_ses->lc_tags & ~LCT_HAS_EXIT) == LCT_SESSION) {
832 read_lock(&cl_envs[cpu].cec_guard);
833 list_add(&cle->ce_linkage, &cl_envs[cpu].cec_envs);
834 cl_envs[cpu].cec_count++;
835 read_unlock(&cl_envs[cpu].cec_guard);
841 EXPORT_SYMBOL(cl_env_put);
844 * Converts struct cl_attr to struct ost_lvb.
848 void cl_attr2lvb(struct ost_lvb *lvb, const struct cl_attr *attr)
851 lvb->lvb_size = attr->cat_size;
852 lvb->lvb_mtime = attr->cat_mtime;
853 lvb->lvb_atime = attr->cat_atime;
854 lvb->lvb_ctime = attr->cat_ctime;
855 lvb->lvb_blocks = attr->cat_blocks;
860 * Converts struct ost_lvb to struct cl_attr.
864 void cl_lvb2attr(struct cl_attr *attr, const struct ost_lvb *lvb)
867 attr->cat_size = lvb->lvb_size;
868 attr->cat_mtime = lvb->lvb_mtime;
869 attr->cat_atime = lvb->lvb_atime;
870 attr->cat_ctime = lvb->lvb_ctime;
871 attr->cat_blocks = lvb->lvb_blocks;
874 EXPORT_SYMBOL(cl_lvb2attr);
876 static struct cl_env cl_env_percpu[NR_CPUS];
878 static int cl_env_percpu_init(void)
881 int tags = LCT_REMEMBER | LCT_NOREF;
885 for_each_possible_cpu(i) {
888 rwlock_init(&cl_envs[i].cec_guard);
889 INIT_LIST_HEAD(&cl_envs[i].cec_envs);
890 cl_envs[i].cec_count = 0;
892 cle = &cl_env_percpu[i];
895 INIT_LIST_HEAD(&cle->ce_linkage);
896 cle->ce_magic = &cl_env_init0;
897 rc = lu_env_init(env, LCT_CL_THREAD | tags);
899 rc = lu_context_init(&cle->ce_ses, LCT_SESSION | tags);
901 lu_context_enter(&cle->ce_ses);
902 env->le_ses = &cle->ce_ses;
911 /* Indices 0 to i (excluding i) were correctly initialized,
912 * thus we must uninitialize up to i, the rest are undefined. */
913 for (j = 0; j < i; j++) {
914 cle = &cl_env_percpu[i];
915 lu_context_exit(&cle->ce_ses);
916 lu_context_fini(&cle->ce_ses);
917 lu_env_fini(&cle->ce_lu);
924 static void cl_env_percpu_fini(void)
928 for_each_possible_cpu(i) {
929 struct cl_env *cle = &cl_env_percpu[i];
931 lu_context_exit(&cle->ce_ses);
932 lu_context_fini(&cle->ce_ses);
933 lu_env_fini(&cle->ce_lu);
937 static void cl_env_percpu_refill(void)
941 for_each_possible_cpu(i)
942 lu_env_refill(&cl_env_percpu[i].ce_lu);
945 void cl_env_percpu_put(struct lu_env *env)
950 cpu = smp_processor_id();
951 cle = cl_env_container(env);
952 LASSERT(cle == &cl_env_percpu[cpu]);
955 LASSERT(cle->ce_ref == 0);
958 cle->ce_debug = NULL;
962 EXPORT_SYMBOL(cl_env_percpu_put);
964 struct lu_env *cl_env_percpu_get()
968 cle = &cl_env_percpu[get_cpu()];
969 cl_env_init0(cle, __builtin_return_address(0));
973 EXPORT_SYMBOL(cl_env_percpu_get);
975 /*****************************************************************************
977 * Temporary prototype thing: mirror obd-devices into cl devices.
981 struct cl_device *cl_type_setup(const struct lu_env *env, struct lu_site *site,
982 struct lu_device_type *ldt,
983 struct lu_device *next)
985 const char *typename;
988 LASSERT(ldt != NULL);
990 typename = ldt->ldt_name;
991 d = ldt->ldt_ops->ldto_device_alloc(env, ldt, NULL);
997 rc = ldt->ldt_ops->ldto_device_init(env, d, typename, next);
1000 lu_ref_add(&d->ld_reference,
1001 "lu-stack", &lu_site_init);
1003 ldt->ldt_ops->ldto_device_free(env, d);
1004 CERROR("can't init device '%s', %d\n", typename, rc);
1008 CERROR("Cannot allocate device: '%s'\n", typename);
1009 return lu2cl_dev(d);
1011 EXPORT_SYMBOL(cl_type_setup);
1014 * Finalize device stack by calling lu_stack_fini().
1016 void cl_stack_fini(const struct lu_env *env, struct cl_device *cl)
1018 lu_stack_fini(env, cl2lu_dev(cl));
1020 EXPORT_SYMBOL(cl_stack_fini);
1022 static struct lu_context_key cl_key;
1024 struct cl_thread_info *cl_env_info(const struct lu_env *env)
1026 return lu_context_key_get(&env->le_ctx, &cl_key);
1029 /* defines cl0_key_{init,fini}() */
1030 LU_KEY_INIT_FINI(cl0, struct cl_thread_info);
1032 static void *cl_key_init(const struct lu_context *ctx,
1033 struct lu_context_key *key)
1035 return cl0_key_init(ctx, key);
1038 static void cl_key_fini(const struct lu_context *ctx,
1039 struct lu_context_key *key, void *data)
1041 cl0_key_fini(ctx, key, data);
1044 static struct lu_context_key cl_key = {
1045 .lct_tags = LCT_CL_THREAD,
1046 .lct_init = cl_key_init,
1047 .lct_fini = cl_key_fini,
1050 static struct lu_kmem_descr cl_object_caches[] = {
1052 .ckd_cache = &cl_env_kmem,
1053 .ckd_name = "cl_env_kmem",
1054 .ckd_size = sizeof (struct cl_env)
1062 * Global initialization of cl-data. Create kmem caches, register
1063 * lu_context_key's, etc.
1065 * \see cl_global_fini()
1067 int cl_global_init(void)
1071 OBD_ALLOC(cl_envs, sizeof(*cl_envs) * num_possible_cpus());
1072 if (cl_envs == NULL)
1073 GOTO(out, result = -ENOMEM);
1075 result = lu_kmem_init(cl_object_caches);
1077 GOTO(out_envs, result);
1079 LU_CONTEXT_KEY_INIT(&cl_key);
1080 result = lu_context_key_register(&cl_key);
1082 GOTO(out_kmem, result);
1084 result = cl_env_percpu_init();
1085 if (result) /* no cl_env_percpu_fini on error */
1086 GOTO(out_keys, result);
1091 lu_context_key_degister(&cl_key);
1093 lu_kmem_fini(cl_object_caches);
1095 OBD_FREE(cl_envs, sizeof(*cl_envs) * num_possible_cpus());
1101 * Finalization of global cl-data. Dual to cl_global_init().
1103 void cl_global_fini(void)
1105 cl_env_percpu_fini();
1106 lu_context_key_degister(&cl_key);
1107 lu_kmem_fini(cl_object_caches);
1108 OBD_FREE(cl_envs, sizeof(*cl_envs) * num_possible_cpus());