Whamcloud - gitweb
LU-10966 utils: Fix `lfs check` documentation and arguments
[fs/lustre-release.git] / lustre / osc / osc_dev.c
index 2e639be..cbddab5 100644 (file)
@@ -23,7 +23,7 @@
  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
  * Use is subject to license terms.
  *
- * Copyright (c) 2012, 2015, Intel Corporation.
+ * Copyright (c) 2012, 2017, Intel Corporation.
  */
 /*
  * This file is part of Lustre, http://www.lustre.org/
@@ -54,9 +54,8 @@ EXPORT_SYMBOL(osc_object_kmem);
 struct kmem_cache *osc_thread_kmem;
 struct kmem_cache *osc_session_kmem;
 struct kmem_cache *osc_extent_kmem;
-EXPORT_SYMBOL(osc_extent_kmem);
 struct kmem_cache *osc_quota_kmem;
-EXPORT_SYMBOL(osc_quota_kmem);
+struct kmem_cache *osc_obdo_kmem;
 
 struct lu_kmem_descr osc_caches[] = {
         {
@@ -90,8 +89,13 @@ struct lu_kmem_descr osc_caches[] = {
                .ckd_size  = sizeof(struct osc_quota_info)
        },
        {
-                .ckd_cache = NULL
-        }
+               .ckd_cache = &osc_obdo_kmem,
+               .ckd_name  = "osc_obdo_kmem",
+               .ckd_size  = sizeof(struct obdo)
+       },
+       {
+               .ckd_cache = NULL
+       }
 };
 
 /*****************************************************************************