linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Jeff Layton <jlayton@redhat.com>
To: Gilad Ben-Yossef <gilad@benyossef.com>
Cc: Christoph Lameter <cl@linux.com>,
	majianpeng <majianpeng@gmail.com>, linux-mm <linux-mm@kvack.org>,
	Pekka Enberg <penberg@cs.helsinki.fi>,
	linux-kernel@vger.kernel.org,
	Andrew Morton <akpm@linux-foundation.org>
Subject: Re: [PATCH] slub: missing test for partial pages flush work in flush_all
Date: Wed, 16 May 2012 07:05:16 -0400	[thread overview]
Message-ID: <20120516070516.406b2492@tlielax.poochiereds.net> (raw)
In-Reply-To: <CAOtvUMeVc+L4gHkvYVZ+T=K7T7r7EVfsyXdNCFF1NArA9uXyAg@mail.gmail.com>

On Sun, 13 May 2012 09:53:15 +0300
Gilad Ben-Yossef <gilad@benyossef.com> wrote:

> On Fri, May 11, 2012 at 7:14 PM, Christoph Lameter <cl@linux.com> wrote:
> > Didn't I already ack this before?
> >
> > Acked-by: Christoph Lameter <cl@linux.com>
> >
> 
> Yes, you did, but the patch description and title was lacking and
> Majianpeng kindly fixed it, hence the re-send, I guess.
> 
> I've added Andrew, since he took my original commit that introduces
> the bug that this patch by Majianpeng  fixes (and also LKML).
> 
> This fix really needs to get into 3.4, otherwise we'll be breaking
> slub. What's the best way to go about that?
> 
> Thanks!
> Gilad
> 
> > On Fri, 11 May 2012, majianpeng wrote:
> >
> >> Subject: [PATCH] slub: missing test for partial pages flush work in flush_all
> >>
> >> Find some kernel message like:
> >> SLUB raid5-md127: kmem_cache_destroy called for cache that still has objects.
> >> Pid: 6143, comm: mdadm Tainted: G           O 3.4.0-rc6+        #75
> >> Call Trace:
> >> [<ffffffff811227f8>] kmem_cache_destroy+0x328/0x400
> >> [<ffffffffa005ff1d>] free_conf+0x2d/0xf0 [raid456]
> >> [<ffffffffa0060791>] stop+0x41/0x60 [raid456]
> >> [<ffffffffa000276a>] md_stop+0x1a/0x60 [md_mod]
> >> [<ffffffffa000c974>] do_md_stop+0x74/0x470 [md_mod]
> >> [<ffffffffa000d0ff>] md_ioctl+0xff/0x11f0 [md_mod]
> >> [<ffffffff8127c958>] blkdev_ioctl+0xd8/0x7a0
> >> [<ffffffff8115ef6b>] block_ioctl+0x3b/0x40
> >> [<ffffffff8113b9c6>] do_vfs_ioctl+0x96/0x560
> >> [<ffffffff8113bf21>] sys_ioctl+0x91/0xa0
> >> [<ffffffff816e9d22>] system_call_fastpath+0x16/0x1b
> >>
> >> Then using kmemleak can found those messages:
> >> unreferenced object 0xffff8800b6db7380 (size 112):
> >>   comm "mdadm", pid 5783, jiffies 4294810749 (age 90.589s)
> >>   hex dump (first 32 bytes):
> >>     01 01 db b6 ad 4e ad de ff ff ff ff ff ff ff ff  .....N..........
> >>     ff ff ff ff ff ff ff ff 98 40 4a 82 ff ff ff ff  .........@J.....
> >>   backtrace:
> >>     [<ffffffff816b52c1>] kmemleak_alloc+0x21/0x50
> >>     [<ffffffff8111a11b>] kmem_cache_alloc+0xeb/0x1b0
> >>     [<ffffffff8111c431>] kmem_cache_open+0x2f1/0x430
> >>     [<ffffffff8111c6c8>] kmem_cache_create+0x158/0x320
> >>     [<ffffffffa008f979>] setup_conf+0x649/0x770 [raid456]
> >>     [<ffffffffa009044b>] run+0x68b/0x840 [raid456]
> >>     [<ffffffffa000bde9>] md_run+0x529/0x940 [md_mod]
> >>     [<ffffffffa000c218>] do_md_run+0x18/0xc0 [md_mod]
> >>     [<ffffffffa000dba8>] md_ioctl+0xba8/0x11f0 [md_mod]
> >>     [<ffffffff81272b28>] blkdev_ioctl+0xd8/0x7a0
> >>     [<ffffffff81155bfb>] block_ioctl+0x3b/0x40
> >>     [<ffffffff811326d6>] do_vfs_ioctl+0x96/0x560
> >>     [<ffffffff81132c31>] sys_ioctl+0x91/0xa0
> >>     [<ffffffff816dd3a2>] system_call_fastpath+0x16/0x1b
> >>     [<ffffffffffffffff>] 0xffffffffffffffff
> >>
> >> This bug introduced by Commit a8364d5555b2030d093cde0f0795.The
> >> commit did not include checks for per cpu partial pages being present on a
> >> cpu.
> >>
> >> Signed-off-by: majianpeng <majianpeng@gmail.com>
> >> ---
> >>  mm/slub.c |    2 +-
> >>  1 files changed, 1 insertions(+), 1 deletions(-)
> >>
> >> diff --git a/mm/slub.c b/mm/slub.c
> >> index ffe13fd..6fce08f 100644
> >> --- a/mm/slub.c
> >> +++ b/mm/slub.c
> >> @@ -2040,7 +2040,7 @@ static bool has_cpu_slab(int cpu, void *info)
> >>       struct kmem_cache *s = info;
> >>       struct kmem_cache_cpu *c = per_cpu_ptr(s->cpu_slab, cpu);
> >>
> >> -     return !!(c->page);
> >> +     return c->page || c->partial;
> >>  }
> >>
> >>  static void flush_all(struct kmem_cache *s)
> >>
> 
> 
> 

FWIW, this patch fixed a similar warning that I was seeing on module
unload with cifs.ko. I agree it would be good to get it in for 3.4...

Tested-by: Jeff Layton <jlayton@redhat.com>

--
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/ .
Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

  reply	other threads:[~2012-05-16 11:05 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-05-11  2:08 majianpeng
2012-05-11 16:14 ` Christoph Lameter
2012-05-13  6:53   ` Gilad Ben-Yossef
2012-05-16 11:05     ` Jeff Layton [this message]
2012-05-14  1:09   ` majianpeng
2012-05-14 13:45     ` 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=20120516070516.406b2492@tlielax.poochiereds.net \
    --to=jlayton@redhat.com \
    --cc=akpm@linux-foundation.org \
    --cc=cl@linux.com \
    --cc=gilad@benyossef.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=majianpeng@gmail.com \
    --cc=penberg@cs.helsinki.fi \
    /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