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/
31 * Client Lustre Object.
33 * Author: Nikita Danilov <nikita.danilov@sun.com>
34 * Author: Jinshan Xiong <jinshan.xiong@intel.com>
46 #define DEBUG_SUBSYSTEM S_CLASS
48 #include <linux/list.h>
49 #include <libcfs/libcfs.h>
50 #include <obd_class.h>
51 #include <obd_support.h>
52 #include <lustre_fid.h>
53 #include <libcfs/libcfs_hash.h> /* for cfs_hash stuff */
54 #include <cl_object.h>
55 #include <lu_object.h>
56 #include "cl_internal.h"
58 static struct kmem_cache *cl_env_kmem;
59 struct kmem_cache *cl_dio_aio_kmem;
60 struct kmem_cache *cl_page_kmem_array[16];
61 unsigned short cl_page_kmem_size_array[16];
63 /** Lock class of cl_object_header::coh_attr_guard */
64 static struct lock_class_key cl_attr_guard_class;
67 * Initialize cl_object_header.
69 int cl_object_header_init(struct cl_object_header *h)
74 result = lu_object_header_init(&h->coh_lu);
76 spin_lock_init(&h->coh_attr_guard);
77 lockdep_set_class(&h->coh_attr_guard, &cl_attr_guard_class);
78 h->coh_page_bufsize = 0;
82 EXPORT_SYMBOL(cl_object_header_init);
85 * Finalize cl_object_header.
87 void cl_object_header_fini(struct cl_object_header *h)
89 lu_object_header_fini(&h->coh_lu);
93 * Returns a cl_object with a given \a fid.
95 * Returns either cached or newly created object. Additional reference on the
96 * returned object is acquired.
98 * \see lu_object_find(), cl_page_find(), cl_lock_find()
100 struct cl_object *cl_object_find(const struct lu_env *env,
101 struct cl_device *cd, const struct lu_fid *fid,
102 const struct cl_object_conf *c)
105 return lu2cl(lu_object_find_slice(env, cl2lu_dev(cd), fid, &c->coc_lu));
107 EXPORT_SYMBOL(cl_object_find);
110 * Releases a reference on \a o.
112 * When last reference is released object is returned to the cache, unless
113 * lu_object_header_flags::LU_OBJECT_HEARD_BANSHEE bit is set in its header.
115 * \see cl_page_put(), cl_lock_put().
117 void cl_object_put(const struct lu_env *env, struct cl_object *o)
119 lu_object_put(env, &o->co_lu);
121 EXPORT_SYMBOL(cl_object_put);
124 * Acquire an additional reference to the object \a o.
126 * This can only be used to acquire _additional_ reference, i.e., caller
127 * already has to possess at least one reference to \a o before calling this.
129 * \see cl_page_get(), cl_lock_get().
131 void cl_object_get(struct cl_object *o)
133 lu_object_get(&o->co_lu);
135 EXPORT_SYMBOL(cl_object_get);
138 * Returns the top-object for a given \a o.
142 struct cl_object *cl_object_top(struct cl_object *o)
144 struct cl_object_header *hdr = cl_object_header(o);
145 struct cl_object *top;
147 while (hdr->coh_parent != NULL)
148 hdr = hdr->coh_parent;
150 top = lu2cl(lu_object_top(&hdr->coh_lu));
151 CDEBUG(D_TRACE, "%p -> %p\n", o, top);
154 EXPORT_SYMBOL(cl_object_top);
157 * Returns pointer to the lock protecting data-attributes for the given object
160 * Data-attributes are protected by the cl_object_header::coh_attr_guard
161 * spin-lock in the top-object.
163 * \see cl_attr, cl_object_attr_lock(), cl_object_operations::coo_attr_get().
165 static spinlock_t *cl_object_attr_guard(struct cl_object *o)
167 return &cl_object_header(cl_object_top(o))->coh_attr_guard;
171 * Locks data-attributes.
173 * Prevents data-attributes from changing, until lock is released by
174 * cl_object_attr_unlock(). This has to be called before calls to
175 * cl_object_attr_get(), cl_object_attr_update().
177 void cl_object_attr_lock(struct cl_object *o)
178 __acquires(cl_object_attr_guard(o))
180 spin_lock(cl_object_attr_guard(o));
182 EXPORT_SYMBOL(cl_object_attr_lock);
185 * Releases data-attributes lock, acquired by cl_object_attr_lock().
187 void cl_object_attr_unlock(struct cl_object *o)
188 __releases(cl_object_attr_guard(o))
190 spin_unlock(cl_object_attr_guard(o));
192 EXPORT_SYMBOL(cl_object_attr_unlock);
195 * Returns data-attributes of an object \a obj.
197 * Every layer is asked (by calling cl_object_operations::coo_attr_get())
198 * top-to-bottom to fill in parts of \a attr that this layer is responsible
201 int cl_object_attr_get(const struct lu_env *env, struct cl_object *top,
202 struct cl_attr *attr)
204 struct cl_object *obj;
207 assert_spin_locked(cl_object_attr_guard(top));
210 cl_object_for_each(obj, top) {
211 if (obj->co_ops->coo_attr_get != NULL) {
212 result = obj->co_ops->coo_attr_get(env, obj, attr);
222 EXPORT_SYMBOL(cl_object_attr_get);
225 * Updates data-attributes of an object \a obj.
227 * Only attributes, mentioned in a validness bit-mask \a v are
228 * updated. Calls cl_object_operations::coo_upd_attr() on every layer, bottom
231 int cl_object_attr_update(const struct lu_env *env, struct cl_object *top,
232 const struct cl_attr *attr, unsigned v)
234 struct cl_object *obj;
237 assert_spin_locked(cl_object_attr_guard(top));
240 cl_object_for_each_reverse(obj, top) {
241 if (obj->co_ops->coo_attr_update != NULL) {
242 result = obj->co_ops->coo_attr_update(env, obj, attr,
253 EXPORT_SYMBOL(cl_object_attr_update);
256 * Notifies layers (bottom-to-top) that glimpse AST was received.
258 * Layers have to fill \a lvb fields with information that will be shipped
259 * back to glimpse issuer.
261 * \see cl_lock_operations::clo_glimpse()
263 int cl_object_glimpse(const struct lu_env *env, struct cl_object *top,
266 struct cl_object *obj;
270 cl_object_for_each_reverse(obj, top) {
271 if (obj->co_ops->coo_glimpse != NULL) {
272 result = obj->co_ops->coo_glimpse(env, obj, lvb);
277 LU_OBJECT_HEADER(D_DLMTRACE, env, lu_object_top(top->co_lu.lo_header),
278 "size: %llu mtime: %llu atime: %llu "
279 "ctime: %llu blocks: %llu\n",
280 lvb->lvb_size, lvb->lvb_mtime, lvb->lvb_atime,
281 lvb->lvb_ctime, lvb->lvb_blocks);
284 EXPORT_SYMBOL(cl_object_glimpse);
287 * Updates a configuration of an object \a obj.
289 int cl_conf_set(const struct lu_env *env, struct cl_object *top,
290 const struct cl_object_conf *conf)
292 struct cl_object *obj;
296 cl_object_for_each(obj, top) {
297 if (obj->co_ops->coo_conf_set != NULL) {
298 result = obj->co_ops->coo_conf_set(env, obj, conf);
305 EXPORT_SYMBOL(cl_conf_set);
308 * Prunes caches of pages and locks for this object.
310 int cl_object_prune(const struct lu_env *env, struct cl_object *top)
312 struct cl_object *obj;
316 cl_object_for_each(obj, top) {
317 if (obj->co_ops->coo_prune != NULL) {
318 result = obj->co_ops->coo_prune(env, obj);
326 EXPORT_SYMBOL(cl_object_prune);
329 * Get stripe information of this object.
331 int cl_object_getstripe(const struct lu_env *env, struct cl_object *top,
332 struct lov_user_md __user *uarg, size_t size)
334 struct cl_object *obj;
338 cl_object_for_each(obj, top) {
339 if (obj->co_ops->coo_getstripe) {
340 result = obj->co_ops->coo_getstripe(env, obj, uarg,
348 EXPORT_SYMBOL(cl_object_getstripe);
351 * Get fiemap extents from file object.
353 * \param env [in] lustre environment
354 * \param obj [in] file object
355 * \param key [in] fiemap request argument
356 * \param fiemap [out] fiemap extents mapping retrived
357 * \param buflen [in] max buffer length of @fiemap
362 int cl_object_fiemap(const struct lu_env *env, struct cl_object *top,
363 struct ll_fiemap_info_key *key,
364 struct fiemap *fiemap, size_t *buflen)
366 struct cl_object *obj;
370 cl_object_for_each(obj, top) {
371 if (obj->co_ops->coo_fiemap) {
372 result = obj->co_ops->coo_fiemap(env, obj, key, fiemap,
380 EXPORT_SYMBOL(cl_object_fiemap);
382 int cl_object_layout_get(const struct lu_env *env, struct cl_object *top,
383 struct cl_layout *cl)
385 struct cl_object *obj;
388 cl_object_for_each(obj, top) {
389 if (obj->co_ops->coo_layout_get)
390 return obj->co_ops->coo_layout_get(env, obj, cl);
395 EXPORT_SYMBOL(cl_object_layout_get);
397 loff_t cl_object_maxbytes(struct cl_object *top)
399 struct cl_object *obj;
400 loff_t maxbytes = LLONG_MAX;
403 cl_object_for_each(obj, top) {
404 if (obj->co_ops->coo_maxbytes)
405 maxbytes = min_t(loff_t, obj->co_ops->coo_maxbytes(obj),
411 EXPORT_SYMBOL(cl_object_maxbytes);
413 int cl_object_flush(const struct lu_env *env, struct cl_object *top,
414 struct ldlm_lock *lock)
416 struct cl_object *obj;
420 cl_object_for_each(obj, top) {
421 if (obj->co_ops->coo_object_flush) {
422 rc = obj->co_ops->coo_object_flush(env, obj, lock);
429 EXPORT_SYMBOL(cl_object_flush);
432 * Helper function removing all object locks, and marking object for
433 * deletion. All object pages must have been deleted at this point.
435 * This is called by cl_inode_fini() and lov_object_delete() to destroy top-
436 * and sub- objects respectively.
438 void cl_object_kill(const struct lu_env *env, struct cl_object *obj)
440 struct cl_object_header *hdr = cl_object_header(obj);
442 set_bit(LU_OBJECT_HEARD_BANSHEE, &hdr->coh_lu.loh_flags);
444 EXPORT_SYMBOL(cl_object_kill);
446 void cache_stats_init(struct cache_stats *cs, const char *name)
451 for (i = 0; i < CS_NR; i++)
452 atomic_set(&cs->cs_stats[i], 0);
455 static int cache_stats_print(const struct cache_stats *cs,
456 struct seq_file *m, int h)
461 * lookup hit total cached create
462 * env: ...... ...... ...... ...... ......
465 const char *names[CS_NR] = CS_NAMES;
467 seq_printf(m, "%6s", " ");
468 for (i = 0; i < CS_NR; i++)
469 seq_printf(m, "%8s", names[i]);
473 seq_printf(m, "%5.5s:", cs->cs_name);
474 for (i = 0; i < CS_NR; i++)
475 seq_printf(m, "%8u", atomic_read(&cs->cs_stats[i]));
479 static void cl_env_percpu_refill(void);
482 * Initialize client site.
484 * Perform common initialization (lu_site_init()), and initialize statistical
485 * counters. Also perform global initializations on the first call.
487 int cl_site_init(struct cl_site *s, struct cl_device *d)
492 result = lu_site_init(&s->cs_lu, &d->cd_lu_dev);
494 cache_stats_init(&s->cs_pages, "pages");
495 for (i = 0; i < ARRAY_SIZE(s->cs_pages_state); ++i)
496 atomic_set(&s->cs_pages_state[0], 0);
497 cl_env_percpu_refill();
501 EXPORT_SYMBOL(cl_site_init);
504 * Finalize client site. Dual to cl_site_init().
506 void cl_site_fini(struct cl_site *s)
508 lu_site_fini(&s->cs_lu);
510 EXPORT_SYMBOL(cl_site_fini);
512 static struct cache_stats cl_env_stats = {
514 .cs_stats = { ATOMIC_INIT(0), }
518 * Outputs client site statistical counters into a buffer. Suitable for
519 * ll_rd_*()-style functions.
521 int cl_site_stats_print(const struct cl_site *site, struct seq_file *m)
523 static const char *const pstate[] = {
533 lookup hit total busy create
534 pages: ...... ...... ...... ...... ...... [...... ...... ...... ......]
535 locks: ...... ...... ...... ...... ...... [...... ...... ...... ...... ......]
536 env: ...... ...... ...... ...... ......
538 lu_site_stats_seq_print(&site->cs_lu, m);
539 cache_stats_print(&site->cs_pages, m, 1);
541 for (i = 0; i < ARRAY_SIZE(site->cs_pages_state); ++i)
542 seq_printf(m, "%s: %u ", pstate[i],
543 atomic_read(&site->cs_pages_state[i]));
544 seq_printf(m, "]\n");
545 cache_stats_print(&cl_env_stats, m, 0);
549 EXPORT_SYMBOL(cl_site_stats_print);
551 /*****************************************************************************
553 * lu_env handling on client.
558 * The most efficient way is to store cl_env pointer in task specific
559 * structures. On Linux, it isn't easy to use task_struct->journal_info
560 * because Lustre code may call into other fs during memory reclaim, which
561 * has certain assumptions about journal_info. There are not currently any
562 * fields in task_struct that can be used for this purpose.
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 * Since 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 static void cl_env_inc(enum cache_stats_item item)
603 #ifdef CONFIG_DEBUG_PAGESTATE_TRACKING
604 atomic_inc(&cl_env_stats.cs_stats[item]);
608 static void cl_env_dec(enum cache_stats_item item)
610 #ifdef CONFIG_DEBUG_PAGESTATE_TRACKING
611 LASSERT(atomic_read(&cl_env_stats.cs_stats[item]) > 0);
612 atomic_dec(&cl_env_stats.cs_stats[item]);
616 static void cl_env_init0(struct cl_env *cle, void *debug)
618 LASSERT(cle->ce_ref == 0);
619 LASSERT(cle->ce_magic == &cl_env_init0);
620 LASSERT(cle->ce_debug == NULL);
623 cle->ce_debug = debug;
627 static struct lu_env *cl_env_new(__u32 ctx_tags, __u32 ses_tags, void *debug)
632 OBD_SLAB_ALLOC_PTR_GFP(cle, cl_env_kmem, GFP_NOFS);
636 INIT_LIST_HEAD(&cle->ce_linkage);
637 cle->ce_magic = &cl_env_init0;
639 rc = lu_env_init(env, LCT_CL_THREAD|ctx_tags);
641 rc = lu_context_init(&cle->ce_ses,
642 LCT_SESSION | ses_tags);
644 lu_context_enter(&cle->ce_ses);
645 env->le_ses = &cle->ce_ses;
646 cl_env_init0(cle, debug);
651 OBD_SLAB_FREE_PTR(cle, cl_env_kmem);
654 cl_env_inc(CS_create);
655 cl_env_inc(CS_total);
658 env = ERR_PTR(-ENOMEM);
662 static void cl_env_fini(struct cl_env *cle)
664 cl_env_dec(CS_total);
665 lu_context_fini(&cle->ce_lu.le_ctx);
666 lu_context_fini(&cle->ce_ses);
667 OBD_SLAB_FREE_PTR(cle, cl_env_kmem);
670 static struct lu_env *cl_env_obtain(void *debug)
678 read_lock(&cl_envs[cpu].cec_guard);
679 LASSERT(equi(cl_envs[cpu].cec_count == 0,
680 list_empty(&cl_envs[cpu].cec_envs)));
681 if (cl_envs[cpu].cec_count > 0) {
684 cle = container_of(cl_envs[cpu].cec_envs.next, struct cl_env,
686 list_del_init(&cle->ce_linkage);
687 cl_envs[cpu].cec_count--;
688 read_unlock(&cl_envs[cpu].cec_guard);
692 rc = lu_env_refill(env);
694 cl_env_init0(cle, debug);
695 lu_context_enter(&env->le_ctx);
696 lu_context_enter(&cle->ce_ses);
702 read_unlock(&cl_envs[cpu].cec_guard);
704 env = cl_env_new(lu_context_tags_default,
705 lu_session_tags_default, debug);
710 static inline struct cl_env *cl_env_container(struct lu_env *env)
712 return container_of(env, struct cl_env, ce_lu);
716 * Returns lu_env: if there already is an environment associated with the
717 * current thread, it is returned, otherwise, new environment is allocated.
719 * Allocations are amortized through the global cache of environments.
721 * \param refcheck pointer to a counter used to detect environment leaks. In
722 * the usual case cl_env_get() and cl_env_put() are called in the same lexical
723 * scope and pointer to the same integer is passed as \a refcheck. This is
724 * used to detect missed cl_env_put().
728 struct lu_env *cl_env_get(__u16 *refcheck)
732 env = cl_env_obtain(__builtin_return_address(0));
736 cle = cl_env_container(env);
737 *refcheck = cle->ce_ref;
738 CDEBUG(D_OTHER, "%d@%p\n", cle->ce_ref, cle);
742 EXPORT_SYMBOL(cl_env_get);
745 * Forces an allocation of a fresh environment with given tags.
749 struct lu_env *cl_env_alloc(__u16 *refcheck, __u32 tags)
753 env = cl_env_new(tags, tags, __builtin_return_address(0));
757 cle = cl_env_container(env);
758 *refcheck = cle->ce_ref;
759 CDEBUG(D_OTHER, "%d@%p\n", cle->ce_ref, cle);
763 EXPORT_SYMBOL(cl_env_alloc);
765 static void cl_env_exit(struct cl_env *cle)
767 lu_context_exit(&cle->ce_lu.le_ctx);
768 lu_context_exit(&cle->ce_ses);
772 * Finalizes and frees a given number of cached environments. This is done to
773 * (1) free some memory (not currently hooked into VM), or (2) release
774 * references to modules.
776 unsigned cl_env_cache_purge(unsigned nr)
782 for_each_possible_cpu(i) {
783 write_lock(&cl_envs[i].cec_guard);
784 for (; !list_empty(&cl_envs[i].cec_envs) && nr > 0; --nr) {
785 cle = container_of(cl_envs[i].cec_envs.next,
786 struct cl_env, ce_linkage);
787 list_del_init(&cle->ce_linkage);
788 LASSERT(cl_envs[i].cec_count > 0);
789 cl_envs[i].cec_count--;
790 write_unlock(&cl_envs[i].cec_guard);
793 write_lock(&cl_envs[i].cec_guard);
795 LASSERT(equi(cl_envs[i].cec_count == 0,
796 list_empty(&cl_envs[i].cec_envs)));
797 write_unlock(&cl_envs[i].cec_guard);
801 EXPORT_SYMBOL(cl_env_cache_purge);
804 * Release an environment.
806 * Decrement \a env reference counter. When counter drops to 0, nothing in
807 * this thread is using environment and it is returned to the allocation
808 * cache, or freed straight away, if cache is large enough.
810 void cl_env_put(struct lu_env *env, __u16 *refcheck)
814 cle = cl_env_container(env);
816 LASSERT(cle->ce_ref > 0);
817 LASSERT(ergo(refcheck != NULL, cle->ce_ref == *refcheck));
819 CDEBUG(D_OTHER, "%d@%p\n", cle->ce_ref, cle);
820 if (--cle->ce_ref == 0) {
824 cle->ce_debug = NULL;
827 * Don't bother to take a lock here.
829 * Return environment to the cache only when it was allocated
830 * with the standard tags.
832 if (cl_envs[cpu].cec_count < cl_envs_cached_max &&
833 (env->le_ctx.lc_tags & ~LCT_HAS_EXIT) == lu_context_tags_default &&
834 (env->le_ses->lc_tags & ~LCT_HAS_EXIT) == lu_session_tags_default) {
835 read_lock(&cl_envs[cpu].cec_guard);
836 list_add(&cle->ce_linkage, &cl_envs[cpu].cec_envs);
837 cl_envs[cpu].cec_count++;
838 read_unlock(&cl_envs[cpu].cec_guard);
844 EXPORT_SYMBOL(cl_env_put);
847 * Converts struct cl_attr to struct ost_lvb.
851 void cl_attr2lvb(struct ost_lvb *lvb, const struct cl_attr *attr)
853 lvb->lvb_size = attr->cat_size;
854 lvb->lvb_mtime = attr->cat_mtime;
855 lvb->lvb_atime = attr->cat_atime;
856 lvb->lvb_ctime = attr->cat_ctime;
857 lvb->lvb_blocks = attr->cat_blocks;
861 * Converts struct ost_lvb to struct cl_attr.
865 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;
873 EXPORT_SYMBOL(cl_lvb2attr);
875 static struct cl_env cl_env_percpu[NR_CPUS];
876 static DEFINE_MUTEX(cl_env_percpu_mutex);
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[j];
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 mutex_lock(&cl_env_percpu_mutex);
942 for_each_possible_cpu(i)
943 lu_env_refill(&cl_env_percpu[i].ce_lu);
944 mutex_unlock(&cl_env_percpu_mutex);
947 void cl_env_percpu_put(struct lu_env *env)
952 cpu = smp_processor_id();
953 cle = cl_env_container(env);
954 LASSERT(cle == &cl_env_percpu[cpu]);
957 LASSERT(cle->ce_ref == 0);
960 cle->ce_debug = NULL;
964 EXPORT_SYMBOL(cl_env_percpu_put);
966 struct lu_env *cl_env_percpu_get(void)
970 cle = &cl_env_percpu[get_cpu()];
971 cl_env_init0(cle, __builtin_return_address(0));
975 EXPORT_SYMBOL(cl_env_percpu_get);
977 /*****************************************************************************
979 * Temporary prototype thing: mirror obd-devices into cl devices.
983 struct cl_device *cl_type_setup(const struct lu_env *env, struct lu_site *site,
984 struct lu_device_type *ldt,
985 struct lu_device *next)
987 const char *typename;
990 LASSERT(ldt != NULL);
992 typename = ldt->ldt_name;
993 d = ldt->ldt_ops->ldto_device_alloc(env, ldt, NULL);
999 rc = ldt->ldt_ops->ldto_device_init(env, d, typename, next);
1002 lu_ref_add(&d->ld_reference,
1003 "lu-stack", &lu_site_init);
1005 ldt->ldt_ops->ldto_device_free(env, d);
1006 CERROR("can't init device '%s', %d\n", typename, rc);
1010 CERROR("Cannot allocate device: '%s'\n", typename);
1011 return lu2cl_dev(d);
1013 EXPORT_SYMBOL(cl_type_setup);
1016 * Finalize device stack by calling lu_stack_fini().
1018 void cl_stack_fini(const struct lu_env *env, struct cl_device *cl)
1020 lu_stack_fini(env, cl2lu_dev(cl));
1022 EXPORT_SYMBOL(cl_stack_fini);
1024 static struct lu_context_key cl_key;
1026 struct cl_thread_info *cl_env_info(const struct lu_env *env)
1028 return lu_context_key_get(&env->le_ctx, &cl_key);
1031 /* defines cl_key_{init,fini}() */
1032 LU_KEY_INIT_FINI(cl, struct cl_thread_info);
1034 static struct lu_context_key cl_key = {
1035 .lct_tags = LCT_CL_THREAD,
1036 .lct_init = cl_key_init,
1037 .lct_fini = cl_key_fini,
1040 static struct lu_kmem_descr cl_object_caches[] = {
1042 .ckd_cache = &cl_env_kmem,
1043 .ckd_name = "cl_env_kmem",
1044 .ckd_size = sizeof(struct cl_env)
1047 .ckd_cache = &cl_dio_aio_kmem,
1048 .ckd_name = "cl_dio_aio_kmem",
1049 .ckd_size = sizeof(struct cl_dio_aio)
1057 * Global initialization of cl-data. Create kmem caches, register
1058 * lu_context_key's, etc.
1060 * \see cl_global_fini()
1062 int cl_global_init(void)
1066 OBD_ALLOC_PTR_ARRAY(cl_envs, num_possible_cpus());
1067 if (cl_envs == NULL)
1068 GOTO(out, result = -ENOMEM);
1070 result = lu_kmem_init(cl_object_caches);
1072 GOTO(out_envs, result);
1074 LU_CONTEXT_KEY_INIT(&cl_key);
1075 result = lu_context_key_register(&cl_key);
1077 GOTO(out_kmem, result);
1079 result = cl_env_percpu_init();
1080 if (result) /* no cl_env_percpu_fini on error */
1081 GOTO(out_keys, result);
1086 lu_context_key_degister(&cl_key);
1088 lu_kmem_fini(cl_object_caches);
1090 OBD_FREE_PTR_ARRAY(cl_envs, num_possible_cpus());
1096 * Finalization of global cl-data. Dual to cl_global_init().
1098 void cl_global_fini(void)
1102 for (i = 0; i < ARRAY_SIZE(cl_page_kmem_array); i++) {
1103 if (cl_page_kmem_array[i]) {
1104 kmem_cache_destroy(cl_page_kmem_array[i]);
1105 cl_page_kmem_array[i] = NULL;
1108 cl_env_percpu_fini();
1109 lu_context_key_degister(&cl_key);
1110 lu_kmem_fini(cl_object_caches);
1111 OBD_FREE_PTR_ARRAY(cl_envs, num_possible_cpus());