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.gnu.org/licenses/gpl-2.0.html
23 * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Use is subject to license terms.
26 * Copyright (c) 2011, 2017, Intel Corporation.
29 * This file is part of Lustre, http://www.lustre.org/
30 * Lustre is a trademark of Sun Microsystems, Inc.
32 * Client Lustre Object.
34 * Author: Nikita Danilov <nikita.danilov@sun.com>
35 * Author: Jinshan Xiong <jinshan.xiong@intel.com>
47 #define DEBUG_SUBSYSTEM S_CLASS
49 #include <linux/list.h>
50 #include <libcfs/libcfs.h>
51 /* class_put_type() */
52 #include <obd_class.h>
53 #include <obd_support.h>
54 #include <lustre_fid.h>
55 #include <libcfs/libcfs_hash.h> /* for cfs_hash stuff */
56 #include <cl_object.h>
57 #include <lu_object.h>
58 #include "cl_internal.h"
60 static struct kmem_cache *cl_env_kmem;
62 /** Lock class of cl_object_header::coh_attr_guard */
63 static struct lock_class_key cl_attr_guard_class;
66 * Initialize cl_object_header.
68 int cl_object_header_init(struct cl_object_header *h)
73 result = lu_object_header_init(&h->coh_lu);
75 spin_lock_init(&h->coh_attr_guard);
76 lockdep_set_class(&h->coh_attr_guard, &cl_attr_guard_class);
77 h->coh_page_bufsize = 0;
81 EXPORT_SYMBOL(cl_object_header_init);
84 * Finalize cl_object_header.
86 void cl_object_header_fini(struct cl_object_header *h)
88 lu_object_header_fini(&h->coh_lu);
92 * Returns a cl_object with a given \a fid.
94 * Returns either cached or newly created object. Additional reference on the
95 * returned object is acquired.
97 * \see lu_object_find(), cl_page_find(), cl_lock_find()
99 struct cl_object *cl_object_find(const struct lu_env *env,
100 struct cl_device *cd, const struct lu_fid *fid,
101 const struct cl_object_conf *c)
104 return lu2cl(lu_object_find_slice(env, cl2lu_dev(cd), fid, &c->coc_lu));
106 EXPORT_SYMBOL(cl_object_find);
109 * Releases a reference on \a o.
111 * When last reference is released object is returned to the cache, unless
112 * lu_object_header_flags::LU_OBJECT_HEARD_BANSHEE bit is set in its header.
114 * \see cl_page_put(), cl_lock_put().
116 void cl_object_put(const struct lu_env *env, struct cl_object *o)
118 lu_object_put(env, &o->co_lu);
120 EXPORT_SYMBOL(cl_object_put);
123 * Acquire an additional reference to the object \a o.
125 * This can only be used to acquire _additional_ reference, i.e., caller
126 * already has to possess at least one reference to \a o before calling this.
128 * \see cl_page_get(), cl_lock_get().
130 void cl_object_get(struct cl_object *o)
132 lu_object_get(&o->co_lu);
134 EXPORT_SYMBOL(cl_object_get);
137 * Returns the top-object for a given \a o.
141 struct cl_object *cl_object_top(struct cl_object *o)
143 struct cl_object_header *hdr = cl_object_header(o);
144 struct cl_object *top;
146 while (hdr->coh_parent != NULL)
147 hdr = hdr->coh_parent;
149 top = lu2cl(lu_object_top(&hdr->coh_lu));
150 CDEBUG(D_TRACE, "%p -> %p\n", o, top);
153 EXPORT_SYMBOL(cl_object_top);
156 * Returns pointer to the lock protecting data-attributes for the given object
159 * Data-attributes are protected by the cl_object_header::coh_attr_guard
160 * spin-lock in the top-object.
162 * \see cl_attr, cl_object_attr_lock(), cl_object_operations::coo_attr_get().
164 static spinlock_t *cl_object_attr_guard(struct cl_object *o)
166 return &cl_object_header(cl_object_top(o))->coh_attr_guard;
170 * Locks data-attributes.
172 * Prevents data-attributes from changing, until lock is released by
173 * cl_object_attr_unlock(). This has to be called before calls to
174 * cl_object_attr_get(), cl_object_attr_update().
176 void cl_object_attr_lock(struct cl_object *o)
177 __acquires(cl_object_attr_guard(o))
179 spin_lock(cl_object_attr_guard(o));
181 EXPORT_SYMBOL(cl_object_attr_lock);
184 * Releases data-attributes lock, acquired by cl_object_attr_lock().
186 void cl_object_attr_unlock(struct cl_object *o)
187 __releases(cl_object_attr_guard(o))
189 spin_unlock(cl_object_attr_guard(o));
191 EXPORT_SYMBOL(cl_object_attr_unlock);
194 * Returns data-attributes of an object \a obj.
196 * Every layer is asked (by calling cl_object_operations::coo_attr_get())
197 * top-to-bottom to fill in parts of \a attr that this layer is responsible
200 int cl_object_attr_get(const struct lu_env *env, struct cl_object *obj,
201 struct cl_attr *attr)
203 struct lu_object_header *top;
206 assert_spin_locked(cl_object_attr_guard(obj));
209 top = obj->co_lu.lo_header;
211 list_for_each_entry(obj, &top->loh_layers, co_lu.lo_linkage) {
212 if (obj->co_ops->coo_attr_get != NULL) {
213 result = obj->co_ops->coo_attr_get(env, obj, attr);
223 EXPORT_SYMBOL(cl_object_attr_get);
226 * Updates data-attributes of an object \a obj.
228 * Only attributes, mentioned in a validness bit-mask \a v are
229 * updated. Calls cl_object_operations::coo_upd_attr() on every layer, bottom
232 int cl_object_attr_update(const struct lu_env *env, struct cl_object *obj,
233 const struct cl_attr *attr, unsigned v)
235 struct lu_object_header *top;
238 assert_spin_locked(cl_object_attr_guard(obj));
241 top = obj->co_lu.lo_header;
243 list_for_each_entry_reverse(obj, &top->loh_layers, co_lu.lo_linkage) {
244 if (obj->co_ops->coo_attr_update != NULL) {
245 result = obj->co_ops->coo_attr_update(env, obj, attr,
256 EXPORT_SYMBOL(cl_object_attr_update);
259 * Notifies layers (bottom-to-top) that glimpse AST was received.
261 * Layers have to fill \a lvb fields with information that will be shipped
262 * back to glimpse issuer.
264 * \see cl_lock_operations::clo_glimpse()
266 int cl_object_glimpse(const struct lu_env *env, struct cl_object *obj,
269 struct lu_object_header *top;
273 top = obj->co_lu.lo_header;
275 list_for_each_entry_reverse(obj, &top->loh_layers, co_lu.lo_linkage) {
276 if (obj->co_ops->coo_glimpse != NULL) {
277 result = obj->co_ops->coo_glimpse(env, obj, lvb);
282 LU_OBJECT_HEADER(D_DLMTRACE, env, lu_object_top(top),
283 "size: %llu mtime: %llu atime: %llu "
284 "ctime: %llu blocks: %llu\n",
285 lvb->lvb_size, lvb->lvb_mtime, lvb->lvb_atime,
286 lvb->lvb_ctime, lvb->lvb_blocks);
289 EXPORT_SYMBOL(cl_object_glimpse);
292 * Updates a configuration of an object \a obj.
294 int cl_conf_set(const struct lu_env *env, struct cl_object *obj,
295 const struct cl_object_conf *conf)
297 struct lu_object_header *top;
301 top = obj->co_lu.lo_header;
303 list_for_each_entry(obj, &top->loh_layers, co_lu.lo_linkage) {
304 if (obj->co_ops->coo_conf_set != NULL) {
305 result = obj->co_ops->coo_conf_set(env, obj, conf);
312 EXPORT_SYMBOL(cl_conf_set);
315 * Prunes caches of pages and locks for this object.
317 int cl_object_prune(const struct lu_env *env, struct cl_object *obj)
319 struct lu_object_header *top;
324 top = obj->co_lu.lo_header;
326 list_for_each_entry(o, &top->loh_layers, co_lu.lo_linkage) {
327 if (o->co_ops->coo_prune != NULL) {
328 result = o->co_ops->coo_prune(env, o);
336 EXPORT_SYMBOL(cl_object_prune);
339 * Get stripe information of this object.
341 int cl_object_getstripe(const struct lu_env *env, struct cl_object *obj,
342 struct lov_user_md __user *uarg, size_t size)
344 struct lu_object_header *top;
348 top = obj->co_lu.lo_header;
349 list_for_each_entry(obj, &top->loh_layers, co_lu.lo_linkage) {
350 if (obj->co_ops->coo_getstripe != NULL) {
351 result = obj->co_ops->coo_getstripe(env, obj, uarg,
359 EXPORT_SYMBOL(cl_object_getstripe);
362 * Get fiemap extents from file object.
364 * \param env [in] lustre environment
365 * \param obj [in] file object
366 * \param key [in] fiemap request argument
367 * \param fiemap [out] fiemap extents mapping retrived
368 * \param buflen [in] max buffer length of @fiemap
373 int cl_object_fiemap(const struct lu_env *env, struct cl_object *obj,
374 struct ll_fiemap_info_key *key,
375 struct fiemap *fiemap, size_t *buflen)
377 struct lu_object_header *top;
381 top = obj->co_lu.lo_header;
382 list_for_each_entry(obj, &top->loh_layers, co_lu.lo_linkage) {
383 if (obj->co_ops->coo_fiemap != NULL) {
384 result = obj->co_ops->coo_fiemap(env, obj, key, fiemap,
392 EXPORT_SYMBOL(cl_object_fiemap);
394 int cl_object_layout_get(const struct lu_env *env, struct cl_object *obj,
395 struct cl_layout *cl)
397 struct lu_object_header *top = obj->co_lu.lo_header;
400 list_for_each_entry(obj, &top->loh_layers, co_lu.lo_linkage) {
401 if (obj->co_ops->coo_layout_get != NULL)
402 return obj->co_ops->coo_layout_get(env, obj, cl);
407 EXPORT_SYMBOL(cl_object_layout_get);
409 loff_t cl_object_maxbytes(struct cl_object *obj)
411 struct lu_object_header *top = obj->co_lu.lo_header;
412 loff_t maxbytes = LLONG_MAX;
415 list_for_each_entry(obj, &top->loh_layers, co_lu.lo_linkage) {
416 if (obj->co_ops->coo_maxbytes != NULL)
417 maxbytes = min_t(loff_t, obj->co_ops->coo_maxbytes(obj),
423 EXPORT_SYMBOL(cl_object_maxbytes);
426 * Helper function removing all object locks, and marking object for
427 * deletion. All object pages must have been deleted at this point.
429 * This is called by cl_inode_fini() and lov_object_delete() to destroy top-
430 * and sub- objects respectively.
432 void cl_object_kill(const struct lu_env *env, struct cl_object *obj)
434 struct cl_object_header *hdr = cl_object_header(obj);
436 set_bit(LU_OBJECT_HEARD_BANSHEE, &hdr->coh_lu.loh_flags);
438 EXPORT_SYMBOL(cl_object_kill);
440 void cache_stats_init(struct cache_stats *cs, const char *name)
445 for (i = 0; i < CS_NR; i++)
446 atomic_set(&cs->cs_stats[i], 0);
449 static int cache_stats_print(const struct cache_stats *cs,
450 struct seq_file *m, int h)
455 * lookup hit total cached create
456 * env: ...... ...... ...... ...... ......
459 const char *names[CS_NR] = CS_NAMES;
461 seq_printf(m, "%6s", " ");
462 for (i = 0; i < CS_NR; i++)
463 seq_printf(m, "%8s", names[i]);
467 seq_printf(m, "%5.5s:", cs->cs_name);
468 for (i = 0; i < CS_NR; i++)
469 seq_printf(m, "%8u", atomic_read(&cs->cs_stats[i]));
473 static void cl_env_percpu_refill(void);
476 * Initialize client site.
478 * Perform common initialization (lu_site_init()), and initialize statistical
479 * counters. Also perform global initializations on the first call.
481 int cl_site_init(struct cl_site *s, struct cl_device *d)
486 result = lu_site_init(&s->cs_lu, &d->cd_lu_dev);
488 cache_stats_init(&s->cs_pages, "pages");
489 for (i = 0; i < ARRAY_SIZE(s->cs_pages_state); ++i)
490 atomic_set(&s->cs_pages_state[0], 0);
491 cl_env_percpu_refill();
495 EXPORT_SYMBOL(cl_site_init);
498 * Finalize client site. Dual to cl_site_init().
500 void cl_site_fini(struct cl_site *s)
502 lu_site_fini(&s->cs_lu);
504 EXPORT_SYMBOL(cl_site_fini);
506 static struct cache_stats cl_env_stats = {
508 .cs_stats = { ATOMIC_INIT(0), }
512 * Outputs client site statistical counters into a buffer. Suitable for
513 * ll_rd_*()-style functions.
515 int cl_site_stats_print(const struct cl_site *site, struct seq_file *m)
517 static const char *pstate[] = {
527 lookup hit total busy create
528 pages: ...... ...... ...... ...... ...... [...... ...... ...... ......]
529 locks: ...... ...... ...... ...... ...... [...... ...... ...... ...... ......]
530 env: ...... ...... ...... ...... ......
532 lu_site_stats_seq_print(&site->cs_lu, m);
533 cache_stats_print(&site->cs_pages, m, 1);
535 for (i = 0; i < ARRAY_SIZE(site->cs_pages_state); ++i)
536 seq_printf(m, "%s: %u ", pstate[i],
537 atomic_read(&site->cs_pages_state[i]));
538 seq_printf(m, "]\n");
539 cache_stats_print(&cl_env_stats, m, 0);
543 EXPORT_SYMBOL(cl_site_stats_print);
545 /*****************************************************************************
547 * lu_env handling on client.
552 * The most efficient way is to store cl_env pointer in task specific
553 * structures. On Linux, it isn't easy to use task_struct->journal_info
554 * because Lustre code may call into other fs during memory reclaim, which
555 * has certain assumptions about journal_info. There are not currently any
556 * fields in task_struct that can be used for this purpose.
557 * \note As long as we use task_struct to store cl_env, we assume that once
558 * called into Lustre, we'll never call into the other part of the kernel
559 * which will use those fields in task_struct without explicitly exiting
562 * Since there's no space in task_struct is available, hash will be used.
566 static unsigned cl_envs_cached_max = 32; /* XXX: prototype: arbitrary limit
568 static struct cl_env_cache {
571 struct list_head cec_envs;
577 struct lu_context ce_ses;
580 * Linkage into global list of all client environments. Used for
581 * garbage collection.
583 struct list_head ce_linkage;
589 * Debugging field: address of the caller who made original
595 static void cl_env_inc(enum cache_stats_item item)
597 #ifdef CONFIG_DEBUG_PAGESTATE_TRACKING
598 atomic_inc(&cl_env_stats.cs_stats[item]);
602 static void cl_env_dec(enum cache_stats_item item)
604 #ifdef CONFIG_DEBUG_PAGESTATE_TRACKING
605 LASSERT(atomic_read(&cl_env_stats.cs_stats[item]) > 0);
606 atomic_dec(&cl_env_stats.cs_stats[item]);
610 static void cl_env_init0(struct cl_env *cle, void *debug)
612 LASSERT(cle->ce_ref == 0);
613 LASSERT(cle->ce_magic == &cl_env_init0);
614 LASSERT(cle->ce_debug == NULL);
617 cle->ce_debug = debug;
621 static struct lu_env *cl_env_new(__u32 ctx_tags, __u32 ses_tags, void *debug)
626 OBD_SLAB_ALLOC_PTR_GFP(cle, cl_env_kmem, GFP_NOFS);
630 INIT_LIST_HEAD(&cle->ce_linkage);
631 cle->ce_magic = &cl_env_init0;
633 rc = lu_env_init(env, LCT_CL_THREAD|ctx_tags);
635 rc = lu_context_init(&cle->ce_ses,
636 LCT_SESSION | ses_tags);
638 lu_context_enter(&cle->ce_ses);
639 env->le_ses = &cle->ce_ses;
640 cl_env_init0(cle, debug);
645 OBD_SLAB_FREE_PTR(cle, cl_env_kmem);
648 cl_env_inc(CS_create);
649 cl_env_inc(CS_total);
652 env = ERR_PTR(-ENOMEM);
656 static void cl_env_fini(struct cl_env *cle)
658 cl_env_dec(CS_total);
659 lu_context_fini(&cle->ce_lu.le_ctx);
660 lu_context_fini(&cle->ce_ses);
661 OBD_SLAB_FREE_PTR(cle, cl_env_kmem);
664 static struct lu_env *cl_env_obtain(void *debug)
672 read_lock(&cl_envs[cpu].cec_guard);
673 LASSERT(equi(cl_envs[cpu].cec_count == 0,
674 list_empty(&cl_envs[cpu].cec_envs)));
675 if (cl_envs[cpu].cec_count > 0) {
678 cle = container_of(cl_envs[cpu].cec_envs.next, struct cl_env,
680 list_del_init(&cle->ce_linkage);
681 cl_envs[cpu].cec_count--;
682 read_unlock(&cl_envs[cpu].cec_guard);
686 rc = lu_env_refill(env);
688 cl_env_init0(cle, debug);
689 lu_context_enter(&env->le_ctx);
690 lu_context_enter(&cle->ce_ses);
696 read_unlock(&cl_envs[cpu].cec_guard);
698 env = cl_env_new(lu_context_tags_default,
699 lu_session_tags_default, debug);
704 static inline struct cl_env *cl_env_container(struct lu_env *env)
706 return container_of(env, struct cl_env, ce_lu);
710 * Returns lu_env: if there already is an environment associated with the
711 * current thread, it is returned, otherwise, new environment is allocated.
713 * Allocations are amortized through the global cache of environments.
715 * \param refcheck pointer to a counter used to detect environment leaks. In
716 * the usual case cl_env_get() and cl_env_put() are called in the same lexical
717 * scope and pointer to the same integer is passed as \a refcheck. This is
718 * used to detect missed cl_env_put().
722 struct lu_env *cl_env_get(__u16 *refcheck)
726 env = cl_env_obtain(__builtin_return_address(0));
730 cle = cl_env_container(env);
731 *refcheck = cle->ce_ref;
732 CDEBUG(D_OTHER, "%d@%p\n", cle->ce_ref, cle);
736 EXPORT_SYMBOL(cl_env_get);
739 * Forces an allocation of a fresh environment with given tags.
743 struct lu_env *cl_env_alloc(__u16 *refcheck, __u32 tags)
747 env = cl_env_new(tags, tags, __builtin_return_address(0));
751 cle = cl_env_container(env);
752 *refcheck = cle->ce_ref;
753 CDEBUG(D_OTHER, "%d@%p\n", cle->ce_ref, cle);
757 EXPORT_SYMBOL(cl_env_alloc);
759 static void cl_env_exit(struct cl_env *cle)
761 lu_context_exit(&cle->ce_lu.le_ctx);
762 lu_context_exit(&cle->ce_ses);
766 * Finalizes and frees a given number of cached environments. This is done to
767 * (1) free some memory (not currently hooked into VM), or (2) release
768 * references to modules.
770 unsigned cl_env_cache_purge(unsigned nr)
776 for_each_possible_cpu(i) {
777 write_lock(&cl_envs[i].cec_guard);
778 for (; !list_empty(&cl_envs[i].cec_envs) && nr > 0; --nr) {
779 cle = container_of(cl_envs[i].cec_envs.next,
780 struct cl_env, ce_linkage);
781 list_del_init(&cle->ce_linkage);
782 LASSERT(cl_envs[i].cec_count > 0);
783 cl_envs[i].cec_count--;
784 write_unlock(&cl_envs[i].cec_guard);
787 write_lock(&cl_envs[i].cec_guard);
789 LASSERT(equi(cl_envs[i].cec_count == 0,
790 list_empty(&cl_envs[i].cec_envs)));
791 write_unlock(&cl_envs[i].cec_guard);
795 EXPORT_SYMBOL(cl_env_cache_purge);
798 * Release an environment.
800 * Decrement \a env reference counter. When counter drops to 0, nothing in
801 * this thread is using environment and it is returned to the allocation
802 * cache, or freed straight away, if cache is large enough.
804 void cl_env_put(struct lu_env *env, __u16 *refcheck)
808 cle = cl_env_container(env);
810 LASSERT(cle->ce_ref > 0);
811 LASSERT(ergo(refcheck != NULL, cle->ce_ref == *refcheck));
813 CDEBUG(D_OTHER, "%d@%p\n", cle->ce_ref, cle);
814 if (--cle->ce_ref == 0) {
818 cle->ce_debug = NULL;
821 * Don't bother to take a lock here.
823 * Return environment to the cache only when it was allocated
824 * with the standard tags.
826 if (cl_envs[cpu].cec_count < cl_envs_cached_max &&
827 (env->le_ctx.lc_tags & ~LCT_HAS_EXIT) == LCT_CL_THREAD &&
828 (env->le_ses->lc_tags & ~LCT_HAS_EXIT) == LCT_SESSION) {
829 read_lock(&cl_envs[cpu].cec_guard);
830 list_add(&cle->ce_linkage, &cl_envs[cpu].cec_envs);
831 cl_envs[cpu].cec_count++;
832 read_unlock(&cl_envs[cpu].cec_guard);
838 EXPORT_SYMBOL(cl_env_put);
841 * Converts struct cl_attr to struct ost_lvb.
845 void cl_attr2lvb(struct ost_lvb *lvb, const struct cl_attr *attr)
847 lvb->lvb_size = attr->cat_size;
848 lvb->lvb_mtime = attr->cat_mtime;
849 lvb->lvb_atime = attr->cat_atime;
850 lvb->lvb_ctime = attr->cat_ctime;
851 lvb->lvb_blocks = attr->cat_blocks;
855 * Converts struct ost_lvb to struct cl_attr.
859 void cl_lvb2attr(struct cl_attr *attr, const struct ost_lvb *lvb)
861 attr->cat_size = lvb->lvb_size;
862 attr->cat_mtime = lvb->lvb_mtime;
863 attr->cat_atime = lvb->lvb_atime;
864 attr->cat_ctime = lvb->lvb_ctime;
865 attr->cat_blocks = lvb->lvb_blocks;
867 EXPORT_SYMBOL(cl_lvb2attr);
869 static struct cl_env cl_env_percpu[NR_CPUS];
871 static int cl_env_percpu_init(void)
874 int tags = LCT_REMEMBER | LCT_NOREF;
878 for_each_possible_cpu(i) {
881 rwlock_init(&cl_envs[i].cec_guard);
882 INIT_LIST_HEAD(&cl_envs[i].cec_envs);
883 cl_envs[i].cec_count = 0;
885 cle = &cl_env_percpu[i];
888 INIT_LIST_HEAD(&cle->ce_linkage);
889 cle->ce_magic = &cl_env_init0;
890 rc = lu_env_init(env, LCT_CL_THREAD | tags);
892 rc = lu_context_init(&cle->ce_ses, LCT_SESSION | tags);
894 lu_context_enter(&cle->ce_ses);
895 env->le_ses = &cle->ce_ses;
904 /* Indices 0 to i (excluding i) were correctly initialized,
905 * thus we must uninitialize up to i, the rest are undefined. */
906 for (j = 0; j < i; j++) {
907 cle = &cl_env_percpu[j];
908 lu_context_exit(&cle->ce_ses);
909 lu_context_fini(&cle->ce_ses);
910 lu_env_fini(&cle->ce_lu);
917 static void cl_env_percpu_fini(void)
921 for_each_possible_cpu(i) {
922 struct cl_env *cle = &cl_env_percpu[i];
924 lu_context_exit(&cle->ce_ses);
925 lu_context_fini(&cle->ce_ses);
926 lu_env_fini(&cle->ce_lu);
930 static void cl_env_percpu_refill(void)
934 for_each_possible_cpu(i)
935 lu_env_refill(&cl_env_percpu[i].ce_lu);
938 void cl_env_percpu_put(struct lu_env *env)
943 cpu = smp_processor_id();
944 cle = cl_env_container(env);
945 LASSERT(cle == &cl_env_percpu[cpu]);
948 LASSERT(cle->ce_ref == 0);
951 cle->ce_debug = NULL;
955 EXPORT_SYMBOL(cl_env_percpu_put);
957 struct lu_env *cl_env_percpu_get()
961 cle = &cl_env_percpu[get_cpu()];
962 cl_env_init0(cle, __builtin_return_address(0));
966 EXPORT_SYMBOL(cl_env_percpu_get);
968 /*****************************************************************************
970 * Temporary prototype thing: mirror obd-devices into cl devices.
974 struct cl_device *cl_type_setup(const struct lu_env *env, struct lu_site *site,
975 struct lu_device_type *ldt,
976 struct lu_device *next)
978 const char *typename;
981 LASSERT(ldt != NULL);
983 typename = ldt->ldt_name;
984 d = ldt->ldt_ops->ldto_device_alloc(env, ldt, NULL);
990 rc = ldt->ldt_ops->ldto_device_init(env, d, typename, next);
993 lu_ref_add(&d->ld_reference,
994 "lu-stack", &lu_site_init);
996 ldt->ldt_ops->ldto_device_free(env, d);
997 CERROR("can't init device '%s', %d\n", typename, rc);
1001 CERROR("Cannot allocate device: '%s'\n", typename);
1002 return lu2cl_dev(d);
1004 EXPORT_SYMBOL(cl_type_setup);
1007 * Finalize device stack by calling lu_stack_fini().
1009 void cl_stack_fini(const struct lu_env *env, struct cl_device *cl)
1011 lu_stack_fini(env, cl2lu_dev(cl));
1013 EXPORT_SYMBOL(cl_stack_fini);
1015 static struct lu_context_key cl_key;
1017 struct cl_thread_info *cl_env_info(const struct lu_env *env)
1019 return lu_context_key_get(&env->le_ctx, &cl_key);
1022 /* defines cl_key_{init,fini}() */
1023 LU_KEY_INIT_FINI(cl, struct cl_thread_info);
1025 static struct lu_context_key cl_key = {
1026 .lct_tags = LCT_CL_THREAD,
1027 .lct_init = cl_key_init,
1028 .lct_fini = cl_key_fini,
1031 static struct lu_kmem_descr cl_object_caches[] = {
1033 .ckd_cache = &cl_env_kmem,
1034 .ckd_name = "cl_env_kmem",
1035 .ckd_size = sizeof (struct cl_env)
1043 * Global initialization of cl-data. Create kmem caches, register
1044 * lu_context_key's, etc.
1046 * \see cl_global_fini()
1048 int cl_global_init(void)
1052 OBD_ALLOC(cl_envs, sizeof(*cl_envs) * num_possible_cpus());
1053 if (cl_envs == NULL)
1054 GOTO(out, result = -ENOMEM);
1056 result = lu_kmem_init(cl_object_caches);
1058 GOTO(out_envs, result);
1060 LU_CONTEXT_KEY_INIT(&cl_key);
1061 result = lu_context_key_register(&cl_key);
1063 GOTO(out_kmem, result);
1065 result = cl_env_percpu_init();
1066 if (result) /* no cl_env_percpu_fini on error */
1067 GOTO(out_keys, result);
1072 lu_context_key_degister(&cl_key);
1074 lu_kmem_fini(cl_object_caches);
1076 OBD_FREE(cl_envs, sizeof(*cl_envs) * num_possible_cpus());
1082 * Finalization of global cl-data. Dual to cl_global_init().
1084 void cl_global_fini(void)
1086 cl_env_percpu_fini();
1087 lu_context_key_degister(&cl_key);
1088 lu_kmem_fini(cl_object_caches);
1089 OBD_FREE(cl_envs, sizeof(*cl_envs) * num_possible_cpus());