All of lore.kernel.org
 help / color / mirror / Atom feed
From: Vladimir Davydov <vdavydov@parallels.com>
To: Joonsoo Kim <iamjoonsoo.kim@lge.com>
Cc: Andrew Morton <akpm@linux-foundation.org>,
	Christoph Lameter <cl@linux.com>,
	Pekka Enberg <penberg@kernel.org>,
	David Rientjes <rientjes@google.com>,
	linux-mm@kvack.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] slub: fix off by one in number of slab tests
Date: Tue, 24 Jun 2014 12:16:08 +0400	[thread overview]
Message-ID: <20140624081608.GC18121@esperanza> (raw)
In-Reply-To: <1403595842-28270-1-git-send-email-iamjoonsoo.kim@lge.com>

On Tue, Jun 24, 2014 at 04:44:01PM +0900, Joonsoo Kim wrote:
> min_partial means minimum number of slab cached in node partial
> list. So, if nr_partial is less than it, we keep newly empty slab
> on node partial list rather than freeing it. But if nr_partial is
> equal or greater than it, it means that we have enough partial slabs
> so should free newly empty slab. Current implementation missed
> the equal case so if we set min_partial is 0, then, at least one slab
> could be cached. This is critical problem to kmemcg destroying logic
> because it doesn't works properly if some slabs is cached. This patch
> fixes this problem.

Oops, my fault :-(

Thank you for catching this!

> Signed-off-by: Joonsoo Kim <iamjoonsoo.kim@lge.com>

Acked-by: Vladimir Davydov <vdavydov@parallels.com>

> 
> diff --git a/mm/slub.c b/mm/slub.c
> index c567927..67da14d 100644
> --- a/mm/slub.c
> +++ b/mm/slub.c
> @@ -1851,7 +1851,7 @@ redo:
>  
>  	new.frozen = 0;
>  
> -	if (!new.inuse && n->nr_partial > s->min_partial)
> +	if (!new.inuse && n->nr_partial >= s->min_partial)
>  		m = M_FREE;
>  	else if (new.freelist) {
>  		m = M_PARTIAL;
> @@ -1962,7 +1962,7 @@ static void unfreeze_partials(struct kmem_cache *s,
>  				new.freelist, new.counters,
>  				"unfreezing slab"));
>  
> -		if (unlikely(!new.inuse && n->nr_partial > s->min_partial)) {
> +		if (unlikely(!new.inuse && n->nr_partial >= s->min_partial)) {
>  			page->next = discard_page;
>  			discard_page = page;
>  		} else {
> @@ -2595,7 +2595,7 @@ static void __slab_free(struct kmem_cache *s, struct page *page,
>                  return;
>          }
>  
> -	if (unlikely(!new.inuse && n->nr_partial > s->min_partial))
> +	if (unlikely(!new.inuse && n->nr_partial >= s->min_partial))
>  		goto slab_empty;
>  
>  	/*
> -- 
> 1.7.9.5
> 

--
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>

WARNING: multiple messages have this Message-ID (diff)
From: Vladimir Davydov <vdavydov@parallels.com>
To: Joonsoo Kim <iamjoonsoo.kim@lge.com>
Cc: Andrew Morton <akpm@linux-foundation.org>,
	Christoph Lameter <cl@linux.com>,
	Pekka Enberg <penberg@kernel.org>,
	David Rientjes <rientjes@google.com>, <linux-mm@kvack.org>,
	<linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] slub: fix off by one in number of slab tests
Date: Tue, 24 Jun 2014 12:16:08 +0400	[thread overview]
Message-ID: <20140624081608.GC18121@esperanza> (raw)
In-Reply-To: <1403595842-28270-1-git-send-email-iamjoonsoo.kim@lge.com>

On Tue, Jun 24, 2014 at 04:44:01PM +0900, Joonsoo Kim wrote:
> min_partial means minimum number of slab cached in node partial
> list. So, if nr_partial is less than it, we keep newly empty slab
> on node partial list rather than freeing it. But if nr_partial is
> equal or greater than it, it means that we have enough partial slabs
> so should free newly empty slab. Current implementation missed
> the equal case so if we set min_partial is 0, then, at least one slab
> could be cached. This is critical problem to kmemcg destroying logic
> because it doesn't works properly if some slabs is cached. This patch
> fixes this problem.

Oops, my fault :-(

Thank you for catching this!

> Signed-off-by: Joonsoo Kim <iamjoonsoo.kim@lge.com>

Acked-by: Vladimir Davydov <vdavydov@parallels.com>

> 
> diff --git a/mm/slub.c b/mm/slub.c
> index c567927..67da14d 100644
> --- a/mm/slub.c
> +++ b/mm/slub.c
> @@ -1851,7 +1851,7 @@ redo:
>  
>  	new.frozen = 0;
>  
> -	if (!new.inuse && n->nr_partial > s->min_partial)
> +	if (!new.inuse && n->nr_partial >= s->min_partial)
>  		m = M_FREE;
>  	else if (new.freelist) {
>  		m = M_PARTIAL;
> @@ -1962,7 +1962,7 @@ static void unfreeze_partials(struct kmem_cache *s,
>  				new.freelist, new.counters,
>  				"unfreezing slab"));
>  
> -		if (unlikely(!new.inuse && n->nr_partial > s->min_partial)) {
> +		if (unlikely(!new.inuse && n->nr_partial >= s->min_partial)) {
>  			page->next = discard_page;
>  			discard_page = page;
>  		} else {
> @@ -2595,7 +2595,7 @@ static void __slab_free(struct kmem_cache *s, struct page *page,
>                  return;
>          }
>  
> -	if (unlikely(!new.inuse && n->nr_partial > s->min_partial))
> +	if (unlikely(!new.inuse && n->nr_partial >= s->min_partial))
>  		goto slab_empty;
>  
>  	/*
> -- 
> 1.7.9.5
> 

  reply	other threads:[~2014-06-24  8:16 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-06-24  7:44 [PATCH] slub: fix off by one in number of slab tests Joonsoo Kim
2014-06-24  7:44 ` Joonsoo Kim
2014-06-24  8:16 ` Vladimir Davydov [this message]
2014-06-24  8:16   ` Vladimir Davydov
2014-06-25  1:03 ` David Rientjes
2014-06-25  1:03   ` David Rientjes

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=20140624081608.GC18121@esperanza \
    --to=vdavydov@parallels.com \
    --cc=akpm@linux-foundation.org \
    --cc=cl@linux.com \
    --cc=iamjoonsoo.kim@lge.com \
    --cc=linux-kernel@vger.kernel.org \
    --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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.