linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: JoonSoo Kim <js1304@gmail.com>
To: Christoph Lameter <cl@linux.com>
Cc: Glauber Costa <glommer@parallels.com>,
	Pekka Enberg <penberg@kernel.org>,
	linux-mm@kvack.org, David Rientjes <rientjes@google.com>
Subject: Re: Common10 [11/20] Do slab aliasing call from common code
Date: Sun, 5 Aug 2012 02:44:27 +0900	[thread overview]
Message-ID: <CAAmzW4P4aH5yvVjfboQN-+0-WG0=93LkwdmrS7yE9GQ5C=Uxdg@mail.gmail.com> (raw)
In-Reply-To: <20120803192154.205306565@linux.com>

2012/8/4 Christoph Lameter <cl@linux.com>:
> The slab aliasing logic causes some strange contortions in
> slub. So add a call to deal with aliases to slab_common.c
> but disable it for other slab allocators by providng stubs
> that fail to create aliases.
>
> Full general support for aliases will require additional
> cleanup passes and more standardization of fields in
> kmem_cache.
>
> Signed-off-by: Christoph Lameter <cl@linux.com>
>
>
> ---
>  mm/slab.h        |   10 ++++++++++
>  mm/slab_common.c |   16 +++++++---------
>  mm/slub.c        |   18 ++++++++++++------
>  3 files changed, 29 insertions(+), 15 deletions(-)
>
> Index: linux-2.6/mm/slab.h
> ===================================================================
> --- linux-2.6.orig/mm/slab.h    2012-08-02 14:21:24.841995858 -0500
> +++ linux-2.6/mm/slab.h 2012-08-02 14:23:08.071846583 -0500
> @@ -36,6 +36,16 @@
>  struct kmem_cache *__kmem_cache_create(const char *name, size_t size,
>         size_t align, unsigned long flags, void (*ctor)(void *));
>
> +#ifdef CONFIG_SLUB
> +struct kmem_cache *__kmem_cache_alias(const char *name, size_t size,
> +       size_t align, unsigned long flags, void (*ctor)(void *));
> +#else
> +static inline struct kmem_cache *__kmem_cache_alias(const char *name, size_t size,
> +       size_t align, unsigned long flags, void (*ctor)(void *))
> +{ return NULL; }
> +#endif
> +
> +
>  int __kmem_cache_shutdown(struct kmem_cache *);
>
>  #endif
> Index: linux-2.6/mm/slab_common.c
> ===================================================================
> --- linux-2.6.orig/mm/slab_common.c     2012-08-02 14:22:59.087685489 -0500
> +++ linux-2.6/mm/slab_common.c  2012-08-02 14:23:08.071846583 -0500
> @@ -94,6 +94,10 @@
>         WARN_ON(strchr(name, ' '));     /* It confuses parsers */
>  #endif
>
> +       s = __kmem_cache_alias(name, size, align, flags, ctor);
> +       if (s)
> +               goto out_locked;
> +
>         n = kstrdup(name, GFP_KERNEL);
>         if (!n) {
>                 err = -ENOMEM;z
> @@ -115,9 +119,7 @@
>                 err = -ENOSYS; /* Until __kmem_cache_create returns code */
>         }
>
> -#ifdef CONFIG_DEBUG_VM
>  out_locked:
> -#endif
>         mutex_unlock(&slab_mutex);
>         put_online_cpus();
>
> Index: linux-2.6/mm/slub.c
> ===================================================================
> --- linux-2.6.orig/mm/slub.c    2012-08-02 14:21:30.678100549 -0500
> +++ linux-2.6/mm/slub.c 2012-08-02 14:23:08.075846653 -0500
> @@ -3701,7 +3701,7 @@
>                 slub_max_order = 0;
>
>         kmem_size = offsetof(struct kmem_cache, node) +
> -                               nr_node_ids * sizeof(struct kmem_cache_node *);
> +                       nr_node_ids * sizeof(struct kmem_cache_node *);
>
>         /* Allocate two kmem_caches from the page allocator */
>         kmalloc_size = ALIGN(kmem_size, cache_line_size());
> @@ -3915,7 +3915,7 @@
>         return NULL;
>  }
>
> -struct kmem_cache *__kmem_cache_create(const char *name, size_t size,
> +struct kmem_cache *__kmem_cache_alias(const char *name, size_t size,
>                 size_t align, unsigned long flags, void (*ctor)(void *))
>  {
>         struct kmem_cache *s;
> @@ -3932,11 +3932,18 @@
>
>                 if (sysfs_slab_alias(s, name)) {
>                         s->refcount--;
> -                       return NULL;
> +                       s = NULL;
>                 }
> -               return s;
>         }
>
> +       return s;
> +}
> +
> +struct kmem_cache *__kmem_cache_create(const char *name, size_t size,
> +               size_t align, unsigned long flags, void (*ctor)(void *))
> +{
> +       struct kmem_cache *s;
> +
>         s = kmem_cache_alloc(kmem_cache, GFP_KERNEL);
>         if (s) {
>                 if (kmem_cache_open(s, name,
>

sysfs_slab_alias() in __kmem_cache_alias() stores reference of name param.
Currently, when we call __kmem_cache_alias(), we don't do kstrdup().
It is not desired behavior as we don't want to be depend on caller of
kmem_cache_create().
So we need to do kstrdup() before invoking __kmem_cache_alias().

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

  reply	other threads:[~2012-08-04 17:44 UTC|newest]

Thread overview: 39+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-08-03 19:20 Common10 [00/20] Sl[auo]b: Common code rework V10 Christoph Lameter
2012-08-03 19:20 ` Common10 [01/20] slub: Add debugging to verify correct cache use on kmem_cache_free() Christoph Lameter
2012-08-03 19:20 ` Common10 [02/20] slub: Use kmem_cache for the kmem_cache structure Christoph Lameter
2012-08-03 19:20 ` Common10 [03/20] Rename oops label Christoph Lameter
2012-08-03 19:20 ` Common10 [04/20] Improve error handling in kmem_cache_create Christoph Lameter
2012-08-03 19:20 ` Common10 [05/20] Move list_add() to slab_common.c Christoph Lameter
2012-08-04 17:01   ` JoonSoo Kim
2012-08-08 14:47     ` Christoph Lameter (Open Source)
2012-08-03 19:20 ` Common10 [06/20] Extract a common function for kmem_cache_destroy Christoph Lameter
2012-08-04 17:21   ` JoonSoo Kim
2012-08-08 14:51     ` Christoph Lameter (Open Source)
2012-08-03 19:20 ` Common10 [07/20] Always use the name "kmem_cache" for the slab cache with the kmem_cache structure Christoph Lameter
2012-08-03 19:21 ` Common10 [08/20] Move freeing of kmem_cache structure to common code Christoph Lameter
2012-08-03 19:21 ` Common10 [09/20] Get rid of __kmem_cache_destroy Christoph Lameter
2012-08-03 19:21 ` Common10 [10/20] Move duping of slab name to slab_common.c Christoph Lameter
2012-08-04 17:34   ` JoonSoo Kim
2012-08-08 14:59     ` Christoph Lameter (Open Source)
2012-08-14 18:42       ` JoonSoo Kim
2012-08-03 19:21 ` Common10 [11/20] Do slab aliasing call from common code Christoph Lameter
2012-08-04 17:44   ` JoonSoo Kim [this message]
2012-08-08 15:40     ` Christoph Lameter (Open Source)
2012-08-03 19:21 ` Common10 [12/20] Move sysfs_slab_add to common Christoph Lameter
2012-08-04 17:46   ` JoonSoo Kim
2012-08-08 15:51     ` Christoph Lameter (Open Source)
2012-08-03 19:21 ` Common10 [13/20] Move kmem_cache allocations into common code Christoph Lameter
2012-08-04 17:48   ` JoonSoo Kim
2012-08-08 17:31     ` Christoph Lameter (Open Source)
2012-08-08 13:51   ` Glauber Costa
2012-08-08 17:56     ` Christoph Lameter (Open Source)
2012-08-03 19:21 ` Common10 [14/20] Shrink __kmem_cache_create() parameter lists Christoph Lameter
2012-08-08 13:15   ` Glauber Costa
2012-08-08 17:45     ` Christoph Lameter (Open Source)
2012-08-03 19:21 ` Common10 [15/20] Move kmem_cache refcounting to common code Christoph Lameter
2012-08-03 19:21 ` Common10 [16/20] slub: Use a statically allocated kmem_cache boot structure for bootstrap Christoph Lameter
2012-08-04 17:50   ` JoonSoo Kim
2012-08-03 19:21 ` Common10 [17/20] slab: Simplify bootstrap Christoph Lameter
2012-08-03 19:21 ` Common10 [18/20] create common functions for boot slab creation Christoph Lameter
2012-08-03 19:21 ` Common10 [19/20] slab: Use the new create_boot_cache function to simplify bootstrap Christoph Lameter
2012-08-03 19:21 ` Common10 [20/20] Common alignment code Christoph Lameter

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAAmzW4P4aH5yvVjfboQN-+0-WG0=93LkwdmrS7yE9GQ5C=Uxdg@mail.gmail.com' \
    --to=js1304@gmail.com \
    --cc=cl@linux.com \
    --cc=glommer@parallels.com \
    --cc=linux-mm@kvack.org \
    --cc=penberg@kernel.org \
    --cc=rientjes@google.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox