Whamcloud - gitweb
LU-7243 misc: update Intel copyright messages 2015
[fs/lustre-release.git] / lustre / obdclass / cl_object.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
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
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2015, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * Client Lustre Object.
37  *
38  *   Author: Nikita Danilov <nikita.danilov@sun.com>
39  *   Author: Jinshan Xiong <jinshan.xiong@intel.com>
40  */
41
42 /*
43  * Locking.
44  *
45  *  i_mutex
46  *      PG_locked
47  *          ->coh_attr_guard
48  *          ->ls_guard
49  */
50
51 #define DEBUG_SUBSYSTEM S_CLASS
52
53 #include <libcfs/libcfs.h>
54 /* class_put_type() */
55 #include <obd_class.h>
56 #include <obd_support.h>
57 #include <lustre_fid.h>
58 #include <libcfs/list.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"
63
64 static struct kmem_cache *cl_env_kmem;
65
66 /** Lock class of cl_object_header::coh_attr_guard */
67 static struct lock_class_key cl_attr_guard_class;
68
69 /**
70  * Initialize cl_object_header.
71  */
72 int cl_object_header_init(struct cl_object_header *h)
73 {
74         int result;
75
76         ENTRY;
77         result = lu_object_header_init(&h->coh_lu);
78         if (result == 0) {
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;
82         }
83         RETURN(result);
84 }
85 EXPORT_SYMBOL(cl_object_header_init);
86
87 /**
88  * Finalize cl_object_header.
89  */
90 void cl_object_header_fini(struct cl_object_header *h)
91 {
92         lu_object_header_fini(&h->coh_lu);
93 }
94
95 /**
96  * Returns a cl_object with a given \a fid.
97  *
98  * Returns either cached or newly created object. Additional reference on the
99  * returned object is acquired.
100  *
101  * \see lu_object_find(), cl_page_find(), cl_lock_find()
102  */
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)
106 {
107         might_sleep();
108         return lu2cl(lu_object_find_slice(env, cl2lu_dev(cd), fid, &c->coc_lu));
109 }
110 EXPORT_SYMBOL(cl_object_find);
111
112 /**
113  * Releases a reference on \a o.
114  *
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.
117  *
118  * \see cl_page_put(), cl_lock_put().
119  */
120 void cl_object_put(const struct lu_env *env, struct cl_object *o)
121 {
122         lu_object_put(env, &o->co_lu);
123 }
124 EXPORT_SYMBOL(cl_object_put);
125
126 /**
127  * Acquire an additional reference to the object \a o.
128  *
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.
131  *
132  * \see cl_page_get(), cl_lock_get().
133  */
134 void cl_object_get(struct cl_object *o)
135 {
136         lu_object_get(&o->co_lu);
137 }
138 EXPORT_SYMBOL(cl_object_get);
139
140 /**
141  * Returns the top-object for a given \a o.
142  *
143  * \see cl_io_top()
144  */
145 struct cl_object *cl_object_top(struct cl_object *o)
146 {
147         struct cl_object_header *hdr = cl_object_header(o);
148         struct cl_object *top;
149
150         while (hdr->coh_parent != NULL)
151                 hdr = hdr->coh_parent;
152
153         top = lu2cl(lu_object_top(&hdr->coh_lu));
154         CDEBUG(D_TRACE, "%p -> %p\n", o, top);
155         return top;
156 }
157 EXPORT_SYMBOL(cl_object_top);
158
159 /**
160  * Returns pointer to the lock protecting data-attributes for the given object
161  * \a o.
162  *
163  * Data-attributes are protected by the cl_object_header::coh_attr_guard
164  * spin-lock in the top-object.
165  *
166  * \see cl_attr, cl_object_attr_lock(), cl_object_operations::coo_attr_get().
167  */
168 static spinlock_t *cl_object_attr_guard(struct cl_object *o)
169 {
170         return &cl_object_header(cl_object_top(o))->coh_attr_guard;
171 }
172
173 /**
174  * Locks data-attributes.
175  *
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().
179  */
180 void cl_object_attr_lock(struct cl_object *o)
181 __acquires(cl_object_attr_guard(o))
182 {
183         spin_lock(cl_object_attr_guard(o));
184 }
185 EXPORT_SYMBOL(cl_object_attr_lock);
186
187 /**
188  * Releases data-attributes lock, acquired by cl_object_attr_lock().
189  */
190 void cl_object_attr_unlock(struct cl_object *o)
191 __releases(cl_object_attr_guard(o))
192 {
193         spin_unlock(cl_object_attr_guard(o));
194 }
195 EXPORT_SYMBOL(cl_object_attr_unlock);
196
197 /**
198  * Returns data-attributes of an object \a obj.
199  *
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
202  * for.
203  */
204 int cl_object_attr_get(const struct lu_env *env, struct cl_object *obj,
205                         struct cl_attr *attr)
206 {
207         struct lu_object_header *top;
208         int result;
209
210         assert_spin_locked(cl_object_attr_guard(obj));
211         ENTRY;
212
213         top = obj->co_lu.lo_header;
214         result = 0;
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);
218                         if (result != 0) {
219                                 if (result > 0)
220                                         result = 0;
221                                 break;
222                         }
223                 }
224         }
225         RETURN(result);
226 }
227 EXPORT_SYMBOL(cl_object_attr_get);
228
229 /**
230  * Updates data-attributes of an object \a obj.
231  *
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
234  * to top.
235  */
236 int cl_object_attr_update(const struct lu_env *env, struct cl_object *obj,
237                           const struct cl_attr *attr, unsigned v)
238 {
239         struct lu_object_header *top;
240         int result;
241
242         assert_spin_locked(cl_object_attr_guard(obj));
243         ENTRY;
244
245         top = obj->co_lu.lo_header;
246         result = 0;
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,
250                                                               v);
251                         if (result != 0) {
252                                 if (result > 0)
253                                         result = 0;
254                                 break;
255                         }
256                 }
257         }
258         RETURN(result);
259 }
260 EXPORT_SYMBOL(cl_object_attr_update);
261
262 /**
263  * Notifies layers (bottom-to-top) that glimpse AST was received.
264  *
265  * Layers have to fill \a lvb fields with information that will be shipped
266  * back to glimpse issuer.
267  *
268  * \see cl_lock_operations::clo_glimpse()
269  */
270 int cl_object_glimpse(const struct lu_env *env, struct cl_object *obj,
271                       struct ost_lvb *lvb)
272 {
273         struct lu_object_header *top;
274         int result;
275
276         ENTRY;
277         top = obj->co_lu.lo_header;
278         result = 0;
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);
282                         if (result != 0)
283                                 break;
284                 }
285         }
286         LU_OBJECT_HEADER(D_DLMTRACE, env, lu_object_top(top),
287                          "size: "LPU64" mtime: "LPU64" atime: "LPU64" "
288                          "ctime: "LPU64" blocks: "LPU64"\n",
289                          lvb->lvb_size, lvb->lvb_mtime, lvb->lvb_atime,
290                          lvb->lvb_ctime, lvb->lvb_blocks);
291         RETURN(result);
292 }
293 EXPORT_SYMBOL(cl_object_glimpse);
294
295 /**
296  * Updates a configuration of an object \a obj.
297  */
298 int cl_conf_set(const struct lu_env *env, struct cl_object *obj,
299                 const struct cl_object_conf *conf)
300 {
301         struct lu_object_header *top;
302         int result;
303
304         ENTRY;
305         top = obj->co_lu.lo_header;
306         result = 0;
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);
310                         if (result != 0)
311                                 break;
312                 }
313         }
314         RETURN(result);
315 }
316 EXPORT_SYMBOL(cl_conf_set);
317
318 /**
319  * Prunes caches of pages and locks for this object.
320  */
321 int cl_object_prune(const struct lu_env *env, struct cl_object *obj)
322 {
323         struct lu_object_header *top;
324         struct cl_object *o;
325         int result;
326         ENTRY;
327
328         top = obj->co_lu.lo_header;
329         result = 0;
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);
333                         if (result != 0)
334                                 break;
335                 }
336         }
337
338         RETURN(result);
339 }
340 EXPORT_SYMBOL(cl_object_prune);
341
342 /**
343  * Get stripe information of this object.
344  */
345 int cl_object_getstripe(const struct lu_env *env, struct cl_object *obj,
346                         struct lov_user_md __user *uarg)
347 {
348         struct lu_object_header *top;
349         int                     result = 0;
350         ENTRY;
351
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);
356                         if (result != 0)
357                                 break;
358                 }
359         }
360         RETURN(result);
361 }
362 EXPORT_SYMBOL(cl_object_getstripe);
363
364 /**
365  * Find whether there is any callback data (ldlm lock) attached upon this
366  * object.
367  */
368 int cl_object_find_cbdata(const struct lu_env *env, struct cl_object *obj,
369                            ldlm_iterator_t iter, void *data)
370 {
371         struct lu_object_header *top;
372         int                     result = 0;
373         ENTRY;
374
375         top = obj->co_lu.lo_header;
376         list_for_each_entry(obj, &top->loh_layers, co_lu.lo_linkage) {
377                 if (obj->co_ops->coo_find_cbdata != NULL) {
378                         result = obj->co_ops->coo_find_cbdata(env, obj, iter,
379                                                               data);
380                         if (result != 0)
381                                 break;
382                 }
383         }
384         RETURN(result);
385 }
386 EXPORT_SYMBOL(cl_object_find_cbdata);
387
388 /**
389  * Get fiemap extents from file object.
390  *
391  * \param env [in]      lustre environment
392  * \param obj [in]      file object
393  * \param key [in]      fiemap request argument
394  * \param fiemap [out]  fiemap extents mapping retrived
395  * \param buflen [in]   max buffer length of @fiemap
396  *
397  * \retval 0    success
398  * \retval < 0  error
399  */
400 int cl_object_fiemap(const struct lu_env *env, struct cl_object *obj,
401                      struct ll_fiemap_info_key *key,
402                      struct fiemap *fiemap, size_t *buflen)
403 {
404         struct lu_object_header *top;
405         int                     result = 0;
406         ENTRY;
407
408         top = obj->co_lu.lo_header;
409         list_for_each_entry(obj, &top->loh_layers, co_lu.lo_linkage) {
410                 if (obj->co_ops->coo_fiemap != NULL) {
411                         result = obj->co_ops->coo_fiemap(env, obj, key, fiemap,
412                                                          buflen);
413                         if (result != 0)
414                                 break;
415                 }
416         }
417         RETURN(result);
418 }
419 EXPORT_SYMBOL(cl_object_fiemap);
420
421 int cl_object_layout_get(const struct lu_env *env, struct cl_object *obj,
422                          struct cl_layout *cl)
423 {
424         struct lu_object_header *top = obj->co_lu.lo_header;
425         ENTRY;
426
427         list_for_each_entry(obj, &top->loh_layers, co_lu.lo_linkage) {
428                 if (obj->co_ops->coo_layout_get != NULL)
429                         return obj->co_ops->coo_layout_get(env, obj, cl);
430         }
431
432         RETURN(-EOPNOTSUPP);
433 }
434 EXPORT_SYMBOL(cl_object_layout_get);
435
436 loff_t cl_object_maxbytes(struct cl_object *obj)
437 {
438         struct lu_object_header *top = obj->co_lu.lo_header;
439         loff_t maxbytes = LLONG_MAX;
440         ENTRY;
441
442         list_for_each_entry(obj, &top->loh_layers, co_lu.lo_linkage) {
443                 if (obj->co_ops->coo_maxbytes != NULL)
444                         maxbytes = min_t(loff_t, obj->co_ops->coo_maxbytes(obj),
445                                          maxbytes);
446         }
447
448         RETURN(maxbytes);
449 }
450 EXPORT_SYMBOL(cl_object_maxbytes);
451
452 /**
453  * Helper function removing all object locks, and marking object for
454  * deletion. All object pages must have been deleted at this point.
455  *
456  * This is called by cl_inode_fini() and lov_object_delete() to destroy top-
457  * and sub- objects respectively.
458  */
459 void cl_object_kill(const struct lu_env *env, struct cl_object *obj)
460 {
461         struct cl_object_header *hdr = cl_object_header(obj);
462
463         set_bit(LU_OBJECT_HEARD_BANSHEE, &hdr->coh_lu.loh_flags);
464 }
465 EXPORT_SYMBOL(cl_object_kill);
466
467 void cache_stats_init(struct cache_stats *cs, const char *name)
468 {
469         int i;
470
471         cs->cs_name = name;
472         for (i = 0; i < CS_NR; i++)
473                 atomic_set(&cs->cs_stats[i], 0);
474 }
475
476 static int cache_stats_print(const struct cache_stats *cs,
477                              struct seq_file *m, int h)
478 {
479         int i;
480
481         /*
482          *   lookup    hit    total  cached create
483          * env: ...... ...... ...... ...... ......
484          */
485         if (h) {
486                 const char *names[CS_NR] = CS_NAMES;
487
488                 seq_printf(m, "%6s", " ");
489                 for (i = 0; i < CS_NR; i++)
490                         seq_printf(m, "%8s", names[i]);
491                 seq_printf(m, "\n");
492         }
493
494         seq_printf(m, "%5.5s:", cs->cs_name);
495         for (i = 0; i < CS_NR; i++)
496                 seq_printf(m, "%8u", atomic_read(&cs->cs_stats[i]));
497         return 0;
498 }
499
500 static void cl_env_percpu_refill(void);
501
502 /**
503  * Initialize client site.
504  *
505  * Perform common initialization (lu_site_init()), and initialize statistical
506  * counters. Also perform global initializations on the first call.
507  */
508 int cl_site_init(struct cl_site *s, struct cl_device *d)
509 {
510         size_t i;
511         int result;
512
513         result = lu_site_init(&s->cs_lu, &d->cd_lu_dev);
514         if (result == 0) {
515                 cache_stats_init(&s->cs_pages, "pages");
516                 for (i = 0; i < ARRAY_SIZE(s->cs_pages_state); ++i)
517                         atomic_set(&s->cs_pages_state[0], 0);
518                 cl_env_percpu_refill();
519         }
520         return result;
521 }
522 EXPORT_SYMBOL(cl_site_init);
523
524 /**
525  * Finalize client site. Dual to cl_site_init().
526  */
527 void cl_site_fini(struct cl_site *s)
528 {
529         lu_site_fini(&s->cs_lu);
530 }
531 EXPORT_SYMBOL(cl_site_fini);
532
533 static struct cache_stats cl_env_stats = {
534         .cs_name    = "envs",
535         .cs_stats = { ATOMIC_INIT(0), }
536 };
537
538 /**
539  * Outputs client site statistical counters into a buffer. Suitable for
540  * ll_rd_*()-style functions.
541  */
542 int cl_site_stats_print(const struct cl_site *site, struct seq_file *m)
543 {
544         static const char *pstate[] = {
545                 [CPS_CACHED]    = "c",
546                 [CPS_OWNED]     = "o",
547                 [CPS_PAGEOUT]   = "w",
548                 [CPS_PAGEIN]    = "r",
549                 [CPS_FREEING]   = "f"
550         };
551         size_t i;
552
553 /*
554        lookup    hit  total   busy create
555 pages: ...... ...... ...... ...... ...... [...... ...... ...... ......]
556 locks: ...... ...... ...... ...... ...... [...... ...... ...... ...... ......]
557   env: ...... ...... ...... ...... ......
558  */
559         lu_site_stats_seq_print(&site->cs_lu, m);
560         cache_stats_print(&site->cs_pages, m, 1);
561         seq_printf(m, " [");
562         for (i = 0; i < ARRAY_SIZE(site->cs_pages_state); ++i)
563                 seq_printf(m, "%s: %u ", pstate[i],
564                            atomic_read(&site->cs_pages_state[i]));
565         seq_printf(m, "]\n");
566         cache_stats_print(&cl_env_stats, m, 0);
567         seq_printf(m, "\n");
568         return 0;
569 }
570 EXPORT_SYMBOL(cl_site_stats_print);
571
572 /*****************************************************************************
573  *
574  * lu_env handling on client.
575  *
576  */
577
578 /**
579  * The most efficient way is to store cl_env pointer in task specific
580  * structures. On Linux, it wont' be easy to use task_struct->journal_info
581  * because Lustre code may call into other fs which has certain assumptions
582  * about journal_info. Currently following fields in task_struct are identified
583  * can be used for this purpose:
584  *  - cl_env: for liblustre.
585  *  - tux_info: ony on RedHat kernel.
586  *  - ...
587  * \note As long as we use task_struct to store cl_env, we assume that once
588  * called into Lustre, we'll never call into the other part of the kernel
589  * which will use those fields in task_struct without explicitly exiting
590  * Lustre.
591  *
592  * If there's no space in task_struct is available, hash will be used.
593  * bz20044, bz22683.
594  */
595
596 static struct list_head cl_envs;
597 static unsigned cl_envs_cached_nr  = 0;
598 static unsigned cl_envs_cached_max = 128; /* XXX: prototype: arbitrary limit
599                                            * for now. */
600 static DEFINE_SPINLOCK(cl_envs_guard);
601
602 struct cl_env {
603         void             *ce_magic;
604         struct lu_env     ce_lu;
605         struct lu_context ce_ses;
606
607 #ifdef LL_TASK_CL_ENV
608         void             *ce_prev;
609 #else
610         /**
611          * This allows cl_env to be entered into cl_env_hash which implements
612          * the current thread -> client environment lookup.
613          */
614         struct hlist_node  ce_node;
615 #endif
616         /**
617          * Owner for the current cl_env.
618          *
619          * If LL_TASK_CL_ENV is defined, this point to the owning current,
620          * only for debugging purpose ;
621          * Otherwise hash is used, and this is the key for cfs_hash.
622          * Now current thread pid is stored. Note using thread pointer would
623          * lead to unbalanced hash because of its specific allocation locality
624          * and could be varied for different platforms and OSes, even different
625          * OS versions.
626          */
627         void             *ce_owner;
628
629         /*
630          * Linkage into global list of all client environments. Used for
631          * garbage collection.
632          */
633         struct list_head  ce_linkage;
634         /*
635          *
636          */
637         int               ce_ref;
638         /*
639          * Debugging field: address of the caller who made original
640          * allocation.
641          */
642         void             *ce_debug;
643 };
644
645 #ifdef CONFIG_DEBUG_PAGESTATE_TRACKING
646 #define CL_ENV_INC(counter) atomic_inc(&cl_env_stats.cs_stats[CS_##counter])
647
648 #define CL_ENV_DEC(counter) do {                                              \
649         LASSERT(atomic_read(&cl_env_stats.cs_stats[CS_##counter]) > 0);   \
650         atomic_dec(&cl_env_stats.cs_stats[CS_##counter]);                 \
651 } while (0)
652 #else
653 #define CL_ENV_INC(counter)
654 #define CL_ENV_DEC(counter)
655 #endif
656
657 static void cl_env_init0(struct cl_env *cle, void *debug)
658 {
659         LASSERT(cle->ce_ref == 0);
660         LASSERT(cle->ce_magic == &cl_env_init0);
661         LASSERT(cle->ce_debug == NULL && cle->ce_owner == NULL);
662
663         cle->ce_ref = 1;
664         cle->ce_debug = debug;
665         CL_ENV_INC(busy);
666 }
667
668
669 #ifndef LL_TASK_CL_ENV
670 /*
671  * The implementation of using hash table to connect cl_env and thread
672  */
673
674 static struct cfs_hash *cl_env_hash;
675
676 static unsigned cl_env_hops_hash(struct cfs_hash *lh,
677                                  const void *key, unsigned mask)
678 {
679 #if BITS_PER_LONG == 64
680         return cfs_hash_u64_hash((__u64)key, mask);
681 #else
682         return cfs_hash_u32_hash((__u32)key, mask);
683 #endif
684 }
685
686 static void *cl_env_hops_obj(struct hlist_node *hn)
687 {
688         struct cl_env *cle = hlist_entry(hn, struct cl_env, ce_node);
689
690         LASSERT(cle->ce_magic == &cl_env_init0);
691         return (void *)cle;
692 }
693
694 static int cl_env_hops_keycmp(const void *key, struct hlist_node *hn)
695 {
696         struct cl_env *cle = cl_env_hops_obj(hn);
697
698         LASSERT(cle->ce_owner != NULL);
699         return (key == cle->ce_owner);
700 }
701
702 static void cl_env_hops_noop(struct cfs_hash *hs, struct hlist_node *hn)
703 {
704         struct cl_env *cle = hlist_entry(hn, struct cl_env, ce_node);
705         LASSERT(cle->ce_magic == &cl_env_init0);
706 }
707
708 static struct cfs_hash_ops cl_env_hops = {
709         .hs_hash        = cl_env_hops_hash,
710         .hs_key         = cl_env_hops_obj,
711         .hs_keycmp      = cl_env_hops_keycmp,
712         .hs_object      = cl_env_hops_obj,
713         .hs_get         = cl_env_hops_noop,
714         .hs_put_locked  = cl_env_hops_noop,
715 };
716
717 static inline struct cl_env *cl_env_fetch(void)
718 {
719         struct cl_env *cle;
720
721         cle = cfs_hash_lookup(cl_env_hash, (void *) (long) current->pid);
722         LASSERT(ergo(cle, cle->ce_magic == &cl_env_init0));
723         return cle;
724 }
725
726 static inline void cl_env_attach(struct cl_env *cle)
727 {
728         if (cle) {
729                 int rc;
730
731                 LASSERT(cle->ce_owner == NULL);
732                 cle->ce_owner = (void *) (long) current->pid;
733                 rc = cfs_hash_add_unique(cl_env_hash, cle->ce_owner,
734                                          &cle->ce_node);
735                 LASSERT(rc == 0);
736         }
737 }
738
739 static inline void cl_env_do_detach(struct cl_env *cle)
740 {
741         void *cookie;
742
743         LASSERT(cle->ce_owner == (void *) (long) current->pid);
744         cookie = cfs_hash_del(cl_env_hash, cle->ce_owner,
745                               &cle->ce_node);
746         LASSERT(cookie == cle);
747         cle->ce_owner = NULL;
748 }
749
750 static int cl_env_store_init(void) {
751         cl_env_hash = cfs_hash_create("cl_env",
752                                       HASH_CL_ENV_BITS, HASH_CL_ENV_BITS,
753                                       HASH_CL_ENV_BKT_BITS, 0,
754                                       CFS_HASH_MIN_THETA,
755                                       CFS_HASH_MAX_THETA,
756                                       &cl_env_hops,
757                                       CFS_HASH_RW_BKTLOCK);
758         return cl_env_hash != NULL ? 0 :-ENOMEM;
759 }
760
761 static void cl_env_store_fini(void) {
762         cfs_hash_putref(cl_env_hash);
763 }
764
765 #else /* LL_TASK_CL_ENV */
766 /*
767  * The implementation of store cl_env directly in thread structure.
768  */
769
770 static inline struct cl_env *cl_env_fetch(void)
771 {
772         struct cl_env *cle;
773
774         cle = current->LL_TASK_CL_ENV;
775         if (cle && cle->ce_magic != &cl_env_init0)
776                 cle = NULL;
777         return cle;
778 }
779
780 static inline void cl_env_attach(struct cl_env *cle)
781 {
782         if (cle) {
783                 LASSERT(cle->ce_owner == NULL);
784                 cle->ce_owner = current;
785                 cle->ce_prev = current->LL_TASK_CL_ENV;
786                 current->LL_TASK_CL_ENV = cle;
787         }
788 }
789
790 static inline void cl_env_do_detach(struct cl_env *cle)
791 {
792         LASSERT(cle->ce_owner == current);
793         LASSERT(current->LL_TASK_CL_ENV == cle);
794         current->LL_TASK_CL_ENV = cle->ce_prev;
795         cle->ce_owner = NULL;
796 }
797
798 static int cl_env_store_init(void) { return 0; }
799 static void cl_env_store_fini(void) { }
800
801 #endif /* LL_TASK_CL_ENV */
802
803 static inline struct cl_env *cl_env_detach(struct cl_env *cle)
804 {
805         if (cle == NULL)
806                 cle = cl_env_fetch();
807
808         if (cle && cle->ce_owner)
809                 cl_env_do_detach(cle);
810
811         return cle;
812 }
813
814 static struct lu_env *cl_env_new(__u32 ctx_tags, __u32 ses_tags, void *debug)
815 {
816         struct lu_env *env;
817         struct cl_env *cle;
818
819         OBD_SLAB_ALLOC_PTR_GFP(cle, cl_env_kmem, GFP_NOFS);
820         if (cle != NULL) {
821                 int rc;
822
823                 INIT_LIST_HEAD(&cle->ce_linkage);
824                 cle->ce_magic = &cl_env_init0;
825                 env = &cle->ce_lu;
826                 rc = lu_env_init(env, LCT_CL_THREAD|ctx_tags);
827                 if (rc == 0) {
828                         rc = lu_context_init(&cle->ce_ses,
829                                              LCT_SESSION | ses_tags);
830                         if (rc == 0) {
831                                 lu_context_enter(&cle->ce_ses);
832                                 env->le_ses = &cle->ce_ses;
833                                 cl_env_init0(cle, debug);
834                         } else
835                                 lu_env_fini(env);
836                 }
837                 if (rc != 0) {
838                         OBD_SLAB_FREE_PTR(cle, cl_env_kmem);
839                         env = ERR_PTR(rc);
840                 } else {
841                         CL_ENV_INC(create);
842                         CL_ENV_INC(total);
843                 }
844         } else
845                 env = ERR_PTR(-ENOMEM);
846         return env;
847 }
848
849 static void cl_env_fini(struct cl_env *cle)
850 {
851         CL_ENV_DEC(total);
852         lu_context_fini(&cle->ce_lu.le_ctx);
853         lu_context_fini(&cle->ce_ses);
854         OBD_SLAB_FREE_PTR(cle, cl_env_kmem);
855 }
856
857 static struct lu_env *cl_env_obtain(void *debug)
858 {
859         struct cl_env *cle;
860         struct lu_env *env;
861
862         ENTRY;
863         spin_lock(&cl_envs_guard);
864         LASSERT(equi(cl_envs_cached_nr == 0, list_empty(&cl_envs)));
865         if (cl_envs_cached_nr > 0) {
866                 int rc;
867
868                 cle = container_of(cl_envs.next, struct cl_env, ce_linkage);
869                 list_del_init(&cle->ce_linkage);
870                 cl_envs_cached_nr--;
871                 spin_unlock(&cl_envs_guard);
872
873                 env = &cle->ce_lu;
874                 rc = lu_env_refill(env);
875                 if (rc == 0) {
876                         cl_env_init0(cle, debug);
877                         lu_context_enter(&env->le_ctx);
878                         lu_context_enter(&cle->ce_ses);
879                 } else {
880                         cl_env_fini(cle);
881                         env = ERR_PTR(rc);
882                 }
883         } else {
884                 spin_unlock(&cl_envs_guard);
885                 env = cl_env_new(lu_context_tags_default,
886                                  lu_session_tags_default, debug);
887         }
888         RETURN(env);
889 }
890
891 static inline struct cl_env *cl_env_container(struct lu_env *env)
892 {
893         return container_of(env, struct cl_env, ce_lu);
894 }
895
896 struct lu_env *cl_env_peek(int *refcheck)
897 {
898         struct lu_env *env;
899         struct cl_env *cle;
900
901         CL_ENV_INC(lookup);
902
903         /* check that we don't go far from untrusted pointer */
904         CLASSERT(offsetof(struct cl_env, ce_magic) == 0);
905
906         env = NULL;
907         cle = cl_env_fetch();
908         if (cle != NULL) {
909                 CL_ENV_INC(hit);
910                 env = &cle->ce_lu;
911                 *refcheck = ++cle->ce_ref;
912         }
913         CDEBUG(D_OTHER, "%d@%p\n", cle ? cle->ce_ref : 0, cle);
914         return env;
915 }
916
917 /**
918  * Returns lu_env: if there already is an environment associated with the
919  * current thread, it is returned, otherwise, new environment is allocated.
920  *
921  * Allocations are amortized through the global cache of environments.
922  *
923  * \param refcheck pointer to a counter used to detect environment leaks. In
924  * the usual case cl_env_get() and cl_env_put() are called in the same lexical
925  * scope and pointer to the same integer is passed as \a refcheck. This is
926  * used to detect missed cl_env_put().
927  *
928  * \see cl_env_put()
929  */
930 struct lu_env *cl_env_get(int *refcheck)
931 {
932         struct lu_env *env;
933
934         env = cl_env_peek(refcheck);
935         if (env == NULL) {
936                 env = cl_env_obtain(__builtin_return_address(0));
937                 if (!IS_ERR(env)) {
938                         struct cl_env *cle;
939
940                         cle = cl_env_container(env);
941                         cl_env_attach(cle);
942                         *refcheck = cle->ce_ref;
943                         CDEBUG(D_OTHER, "%d@%p\n", cle->ce_ref, cle);
944                 }
945         }
946         return env;
947 }
948 EXPORT_SYMBOL(cl_env_get);
949
950 /**
951  * Forces an allocation of a fresh environment with given tags.
952  *
953  * \see cl_env_get()
954  */
955 struct lu_env *cl_env_alloc(int *refcheck, __u32 tags)
956 {
957         struct lu_env *env;
958
959         LASSERT(cl_env_peek(refcheck) == NULL);
960         env = cl_env_new(tags, tags, __builtin_return_address(0));
961         if (!IS_ERR(env)) {
962                 struct cl_env *cle;
963
964                 cle = cl_env_container(env);
965                 *refcheck = cle->ce_ref;
966                 CDEBUG(D_OTHER, "%d@%p\n", cle->ce_ref, cle);
967         }
968         return env;
969 }
970 EXPORT_SYMBOL(cl_env_alloc);
971
972 static void cl_env_exit(struct cl_env *cle)
973 {
974         LASSERT(cle->ce_owner == NULL);
975         lu_context_exit(&cle->ce_lu.le_ctx);
976         lu_context_exit(&cle->ce_ses);
977 }
978
979 /**
980  * Finalizes and frees a given number of cached environments. This is done to
981  * (1) free some memory (not currently hooked into VM), or (2) release
982  * references to modules.
983  */
984 unsigned cl_env_cache_purge(unsigned nr)
985 {
986         struct cl_env *cle;
987
988         ENTRY;
989         spin_lock(&cl_envs_guard);
990         for (; !list_empty(&cl_envs) && nr > 0; --nr) {
991                 cle = container_of(cl_envs.next, struct cl_env, ce_linkage);
992                 list_del_init(&cle->ce_linkage);
993                 LASSERT(cl_envs_cached_nr > 0);
994                 cl_envs_cached_nr--;
995                 spin_unlock(&cl_envs_guard);
996
997                 cl_env_fini(cle);
998                 spin_lock(&cl_envs_guard);
999         }
1000         LASSERT(equi(cl_envs_cached_nr == 0, list_empty(&cl_envs)));
1001         spin_unlock(&cl_envs_guard);
1002         RETURN(nr);
1003 }
1004 EXPORT_SYMBOL(cl_env_cache_purge);
1005
1006 /**
1007  * Release an environment.
1008  *
1009  * Decrement \a env reference counter. When counter drops to 0, nothing in
1010  * this thread is using environment and it is returned to the allocation
1011  * cache, or freed straight away, if cache is large enough.
1012  */
1013 void cl_env_put(struct lu_env *env, int *refcheck)
1014 {
1015         struct cl_env *cle;
1016
1017         cle = cl_env_container(env);
1018
1019         LASSERT(cle->ce_ref > 0);
1020         LASSERT(ergo(refcheck != NULL, cle->ce_ref == *refcheck));
1021
1022         CDEBUG(D_OTHER, "%d@%p\n", cle->ce_ref, cle);
1023         if (--cle->ce_ref == 0) {
1024                 CL_ENV_DEC(busy);
1025                 cl_env_detach(cle);
1026                 cle->ce_debug = NULL;
1027                 cl_env_exit(cle);
1028                 /*
1029                  * Don't bother to take a lock here.
1030                  *
1031                  * Return environment to the cache only when it was allocated
1032                  * with the standard tags.
1033                  */
1034                 if (cl_envs_cached_nr < cl_envs_cached_max &&
1035                     (env->le_ctx.lc_tags & ~LCT_HAS_EXIT) == LCT_CL_THREAD &&
1036                     (env->le_ses->lc_tags & ~LCT_HAS_EXIT) == LCT_SESSION) {
1037                         spin_lock(&cl_envs_guard);
1038                         list_add(&cle->ce_linkage, &cl_envs);
1039                         cl_envs_cached_nr++;
1040                         spin_unlock(&cl_envs_guard);
1041                 } else
1042                         cl_env_fini(cle);
1043         }
1044 }
1045 EXPORT_SYMBOL(cl_env_put);
1046
1047 /**
1048  * Declares a point of re-entrancy.
1049  *
1050  * \see cl_env_reexit()
1051  */
1052 void *cl_env_reenter(void)
1053 {
1054         return cl_env_detach(NULL);
1055 }
1056 EXPORT_SYMBOL(cl_env_reenter);
1057
1058 /**
1059  * Exits re-entrancy.
1060  */
1061 void cl_env_reexit(void *cookie)
1062 {
1063         cl_env_detach(NULL);
1064         cl_env_attach(cookie);
1065 }
1066 EXPORT_SYMBOL(cl_env_reexit);
1067
1068 /**
1069  * Setup user-supplied \a env as a current environment. This is to be used to
1070  * guaranteed that environment exists even when cl_env_get() fails. It is up
1071  * to user to ensure proper concurrency control.
1072  *
1073  * \see cl_env_unplant()
1074  */
1075 void cl_env_implant(struct lu_env *env, int *refcheck)
1076 {
1077         struct cl_env *cle = cl_env_container(env);
1078
1079         LASSERT(cle->ce_ref > 0);
1080
1081         cl_env_attach(cle);
1082         cl_env_get(refcheck);
1083         CDEBUG(D_OTHER, "%d@%p\n", cle->ce_ref, cle);
1084 }
1085 EXPORT_SYMBOL(cl_env_implant);
1086
1087 /**
1088  * Detach environment installed earlier by cl_env_implant().
1089  */
1090 void cl_env_unplant(struct lu_env *env, int *refcheck)
1091 {
1092         struct cl_env *cle = cl_env_container(env);
1093
1094         LASSERT(cle->ce_ref > 1);
1095
1096         CDEBUG(D_OTHER, "%d@%p\n", cle->ce_ref, cle);
1097
1098         cl_env_detach(cle);
1099         cl_env_put(env, refcheck);
1100 }
1101 EXPORT_SYMBOL(cl_env_unplant);
1102
1103 struct lu_env *cl_env_nested_get(struct cl_env_nest *nest)
1104 {
1105         struct lu_env *env;
1106
1107         nest->cen_cookie = NULL;
1108         env = cl_env_peek(&nest->cen_refcheck);
1109         if (env != NULL) {
1110                 if (!cl_io_is_going(env))
1111                         return env;
1112                 else {
1113                         cl_env_put(env, &nest->cen_refcheck);
1114                         nest->cen_cookie = cl_env_reenter();
1115                 }
1116         }
1117         env = cl_env_get(&nest->cen_refcheck);
1118         if (IS_ERR(env)) {
1119                 cl_env_reexit(nest->cen_cookie);
1120                 return env;
1121         }
1122
1123         LASSERT(!cl_io_is_going(env));
1124         return env;
1125 }
1126 EXPORT_SYMBOL(cl_env_nested_get);
1127
1128 void cl_env_nested_put(struct cl_env_nest *nest, struct lu_env *env)
1129 {
1130         cl_env_put(env, &nest->cen_refcheck);
1131         cl_env_reexit(nest->cen_cookie);
1132 }
1133 EXPORT_SYMBOL(cl_env_nested_put);
1134
1135 /**
1136  * Converts struct cl_attr to struct ost_lvb.
1137  *
1138  * \see cl_lvb2attr
1139  */
1140 void cl_attr2lvb(struct ost_lvb *lvb, const struct cl_attr *attr)
1141 {
1142         ENTRY;
1143         lvb->lvb_size   = attr->cat_size;
1144         lvb->lvb_mtime  = attr->cat_mtime;
1145         lvb->lvb_atime  = attr->cat_atime;
1146         lvb->lvb_ctime  = attr->cat_ctime;
1147         lvb->lvb_blocks = attr->cat_blocks;
1148         EXIT;
1149 }
1150
1151 /**
1152  * Converts struct ost_lvb to struct cl_attr.
1153  *
1154  * \see cl_attr2lvb
1155  */
1156 void cl_lvb2attr(struct cl_attr *attr, const struct ost_lvb *lvb)
1157 {
1158         ENTRY;
1159         attr->cat_size   = lvb->lvb_size;
1160         attr->cat_mtime  = lvb->lvb_mtime;
1161         attr->cat_atime  = lvb->lvb_atime;
1162         attr->cat_ctime  = lvb->lvb_ctime;
1163         attr->cat_blocks = lvb->lvb_blocks;
1164         EXIT;
1165 }
1166 EXPORT_SYMBOL(cl_lvb2attr);
1167
1168 static struct cl_env cl_env_percpu[NR_CPUS];
1169
1170 static int cl_env_percpu_init(void)
1171 {
1172         struct cl_env *cle;
1173         int tags = LCT_REMEMBER | LCT_NOREF;
1174         int i, j;
1175         int rc = 0;
1176
1177         for_each_possible_cpu(i) {
1178                 struct lu_env *env;
1179
1180                 cle = &cl_env_percpu[i];
1181                 env = &cle->ce_lu;
1182
1183                 INIT_LIST_HEAD(&cle->ce_linkage);
1184                 cle->ce_magic = &cl_env_init0;
1185                 rc = lu_env_init(env, LCT_CL_THREAD | tags);
1186                 if (rc == 0) {
1187                         rc = lu_context_init(&cle->ce_ses, LCT_SESSION | tags);
1188                         if (rc == 0) {
1189                                 lu_context_enter(&cle->ce_ses);
1190                                 env->le_ses = &cle->ce_ses;
1191                         } else {
1192                                 lu_env_fini(env);
1193                         }
1194                 }
1195                 if (rc != 0)
1196                         break;
1197         }
1198         if (rc != 0) {
1199                 /* Indices 0 to i (excluding i) were correctly initialized,
1200                  * thus we must uninitialize up to i, the rest are undefined. */
1201                 for (j = 0; j < i; j++) {
1202                         cle = &cl_env_percpu[i];
1203                         lu_context_exit(&cle->ce_ses);
1204                         lu_context_fini(&cle->ce_ses);
1205                         lu_env_fini(&cle->ce_lu);
1206                 }
1207         }
1208
1209         return rc;
1210 }
1211
1212 static void cl_env_percpu_fini(void)
1213 {
1214         int i;
1215
1216         for_each_possible_cpu(i) {
1217                 struct cl_env *cle = &cl_env_percpu[i];
1218
1219                 lu_context_exit(&cle->ce_ses);
1220                 lu_context_fini(&cle->ce_ses);
1221                 lu_env_fini(&cle->ce_lu);
1222         }
1223 }
1224
1225 static void cl_env_percpu_refill(void)
1226 {
1227         int i;
1228
1229         for_each_possible_cpu(i)
1230                 lu_env_refill(&cl_env_percpu[i].ce_lu);
1231 }
1232
1233 void cl_env_percpu_put(struct lu_env *env)
1234 {
1235         struct cl_env *cle;
1236         int cpu;
1237
1238         cpu = smp_processor_id();
1239         cle = cl_env_container(env);
1240         LASSERT(cle == &cl_env_percpu[cpu]);
1241
1242         cle->ce_ref--;
1243         LASSERT(cle->ce_ref == 0);
1244
1245         CL_ENV_DEC(busy);
1246         cl_env_detach(cle);
1247         cle->ce_debug = NULL;
1248
1249         put_cpu();
1250 }
1251 EXPORT_SYMBOL(cl_env_percpu_put);
1252
1253 struct lu_env *cl_env_percpu_get()
1254 {
1255         struct cl_env *cle;
1256
1257         cle = &cl_env_percpu[get_cpu()];
1258         cl_env_init0(cle, __builtin_return_address(0));
1259
1260         cl_env_attach(cle);
1261         return &cle->ce_lu;
1262 }
1263 EXPORT_SYMBOL(cl_env_percpu_get);
1264
1265 /*****************************************************************************
1266  *
1267  * Temporary prototype thing: mirror obd-devices into cl devices.
1268  *
1269  */
1270
1271 struct cl_device *cl_type_setup(const struct lu_env *env, struct lu_site *site,
1272                                 struct lu_device_type *ldt,
1273                                 struct lu_device *next)
1274 {
1275         const char       *typename;
1276         struct lu_device *d;
1277
1278         LASSERT(ldt != NULL);
1279
1280         typename = ldt->ldt_name;
1281         d = ldt->ldt_ops->ldto_device_alloc(env, ldt, NULL);
1282         if (!IS_ERR(d)) {
1283                 int rc;
1284
1285                 if (site != NULL)
1286                         d->ld_site = site;
1287                 rc = ldt->ldt_ops->ldto_device_init(env, d, typename, next);
1288                 if (rc == 0) {
1289                         lu_device_get(d);
1290                         lu_ref_add(&d->ld_reference,
1291                                    "lu-stack", &lu_site_init);
1292                 } else {
1293                         ldt->ldt_ops->ldto_device_free(env, d);
1294                         CERROR("can't init device '%s', %d\n", typename, rc);
1295                         d = ERR_PTR(rc);
1296                 }
1297         } else
1298                 CERROR("Cannot allocate device: '%s'\n", typename);
1299         return lu2cl_dev(d);
1300 }
1301 EXPORT_SYMBOL(cl_type_setup);
1302
1303 /**
1304  * Finalize device stack by calling lu_stack_fini().
1305  */
1306 void cl_stack_fini(const struct lu_env *env, struct cl_device *cl)
1307 {
1308         lu_stack_fini(env, cl2lu_dev(cl));
1309 }
1310 EXPORT_SYMBOL(cl_stack_fini);
1311
1312 static struct lu_context_key cl_key;
1313
1314 struct cl_thread_info *cl_env_info(const struct lu_env *env)
1315 {
1316         return lu_context_key_get(&env->le_ctx, &cl_key);
1317 }
1318
1319 /* defines cl0_key_{init,fini}() */
1320 LU_KEY_INIT_FINI(cl0, struct cl_thread_info);
1321
1322 static void *cl_key_init(const struct lu_context *ctx,
1323                          struct lu_context_key *key)
1324 {
1325         struct cl_thread_info *info;
1326
1327         info = cl0_key_init(ctx, key);
1328         if (!IS_ERR(info)) {
1329                 size_t i;
1330
1331                 for (i = 0; i < ARRAY_SIZE(info->clt_counters); ++i)
1332                         lu_ref_init(&info->clt_counters[i].ctc_locks_locked);
1333         }
1334         return info;
1335 }
1336
1337 static void cl_key_fini(const struct lu_context *ctx,
1338                         struct lu_context_key *key, void *data)
1339 {
1340         struct cl_thread_info *info;
1341         size_t i;
1342
1343         info = data;
1344         for (i = 0; i < ARRAY_SIZE(info->clt_counters); ++i)
1345                 lu_ref_fini(&info->clt_counters[i].ctc_locks_locked);
1346         cl0_key_fini(ctx, key, data);
1347 }
1348
1349 static void cl_key_exit(const struct lu_context *ctx,
1350                         struct lu_context_key *key, void *data)
1351 {
1352         struct cl_thread_info *info = data;
1353         size_t i;
1354
1355         for (i = 0; i < ARRAY_SIZE(info->clt_counters); ++i) {
1356                 LASSERT(info->clt_counters[i].ctc_nr_held == 0);
1357                 LASSERT(info->clt_counters[i].ctc_nr_used == 0);
1358                 LASSERT(info->clt_counters[i].ctc_nr_locks_acquired == 0);
1359                 LASSERT(info->clt_counters[i].ctc_nr_locks_locked == 0);
1360                 lu_ref_fini(&info->clt_counters[i].ctc_locks_locked);
1361                 lu_ref_init(&info->clt_counters[i].ctc_locks_locked);
1362         }
1363 }
1364
1365 static struct lu_context_key cl_key = {
1366         .lct_tags = LCT_CL_THREAD,
1367         .lct_init = cl_key_init,
1368         .lct_fini = cl_key_fini,
1369         .lct_exit = cl_key_exit
1370 };
1371
1372 static struct lu_kmem_descr cl_object_caches[] = {
1373         {
1374                 .ckd_cache = &cl_env_kmem,
1375                 .ckd_name  = "cl_env_kmem",
1376                 .ckd_size  = sizeof (struct cl_env)
1377         },
1378         {
1379                 .ckd_cache = NULL
1380         }
1381 };
1382
1383 /**
1384  * Global initialization of cl-data. Create kmem caches, register
1385  * lu_context_key's, etc.
1386  *
1387  * \see cl_global_fini()
1388  */
1389 int cl_global_init(void)
1390 {
1391         int result;
1392
1393         INIT_LIST_HEAD(&cl_envs);
1394
1395         result = cl_env_store_init();
1396         if (result)
1397                 return result;
1398
1399         result = lu_kmem_init(cl_object_caches);
1400         if (result)
1401                 goto out_store;
1402
1403         LU_CONTEXT_KEY_INIT(&cl_key);
1404         result = lu_context_key_register(&cl_key);
1405         if (result)
1406                 goto out_kmem;
1407
1408         result = cl_env_percpu_init();
1409         if (result)
1410                 /* no cl_env_percpu_fini on error */
1411                 goto out_context;
1412
1413         return 0;
1414
1415 out_context:
1416         lu_context_key_degister(&cl_key);
1417 out_kmem:
1418         lu_kmem_fini(cl_object_caches);
1419 out_store:
1420         cl_env_store_fini();
1421         return result;
1422 }
1423
1424 /**
1425  * Finalization of global cl-data. Dual to cl_global_init().
1426  */
1427 void cl_global_fini(void)
1428 {
1429         cl_env_percpu_fini();
1430         lu_context_key_degister(&cl_key);
1431         lu_kmem_fini(cl_object_caches);
1432         cl_env_store_fini();
1433 }