From: Mike Galbraith <efault@gmx.de>
To: Pekka Enberg <penberg@cs.helsinki.fi>
Cc: lkml <linux-kernel@vger.kernel.org>
Subject: Re: 2.6.18-rc1: slab BUG_ON(!PageSlab(page)) upon umount after failed suspend
Date: Wed, 12 Jul 2006 10:55:53 +0200 [thread overview]
Message-ID: <1152694553.8625.10.camel@Homer.TheSimpsons.net> (raw)
In-Reply-To: <84144f020607100440m2522fccie2b009a6a19fb630@mail.gmail.com>
On Mon, 2006-07-10 at 14:40 +0300, Pekka Enberg wrote:
> On Mon, 2006-07-10 at 13:33 +0300, Pekka Enberg wrote:
> > > Curious... GCC cuts line and file information after ud2a. Looking at
> > > your stack trace, I am wondering who calls free_block() as we don't
> > > see cache_flusharray() in the trace. Do you have CONFIG_NUMA enabled?
>
> On 7/10/06, Mike Galbraith <efault@gmx.de> wrote:
> > It got inlined.
>
> Right. Can't spot anything obviously wrong with the code. Try
> CONFIG_DEBUG_SLAB if you can reproduce it.
I reproduced it, but got no info from CONFIG_DEBUG_SLAB, because it
didn't get that far.
BUG: unable to handle kernel paging request at virtual address 6c657472
printing eip:
b108558c
*pde = 00000000
Oops: 0002 [#1]
PREEMPT SMP
Modules linked in: ohci1394 prism54 xt_pkttype ipt_LOG xt_limit snd_pcm_oss snd_mixer_oss snd_seq snd_seq_device saa7134 ieee1394 edd ir_kbd_i2c snd_intel8x0 snd_ac97_codec snd_ac97_bus snd_pcm snd_timer snd soundcore i2c_i801 bt878 snd_page_alloc ip6t_REJECT xt_tcpudp ipt_REJECT xt_state iptable_mangle iptable_nat ip_nat iptable_filter ip6table_mangle ip_conntrack nfnetlink ip_tables ip6table_filter ip6_tables x_tables tuner bttv video_buf firmware_class ir_common btcx_risc tveeprom sd_mod nls_iso8859_1 nls_cp437 nls_utf8
CPU: 1
EIP: 0060:[<b108558c>] Not tainted VLI
EFLAGS: 00010202 (2.6.18-rc1-smp #1)
EIP is at prune_one_dentry+0x23/0x7a
eax: 6c65746e ebx: b15b611c ecx: b15b6130 edx: b22390ec
esi: b15aa720 edi: ef660d84 ebp: ebb30e9c esp: ebb30e94
ds: 007b es: 007b ss: 0068
Process umount (pid: 29772, ti=ebb30000 task=ea87eaa0 task.ti=ebb30000)
Stack: b15b611c b15aa720 ebb30eb8 b1085826 b15b6124 00000375 ef04daf0 b15aa720
b15aa6e4 ebb30ed8 b108592c b15aa720 b15aa6e4 0000038f ef660d84 b15aa6e4
b148a740 ebb30ef4 b1074acb 00000000 cfb90000 0000000f b148a720 ebb30f4c
Call Trace:
[<b1085826>] prune_dcache+0x144/0x157
[<b108592c>] shrink_dcache_parent+0xb4/0xe8
[<b1074acb>] generic_shutdown_super+0x27/0x131
[<b1074c19>] kill_anon_super+0x12/0x35
[<b1074c55>] kill_litter_super+0x19/0x1c
[<b1074cb5>] deactivate_super+0x5d/0x6f
[<b1089506>] mntput_no_expire+0x44/0x74
[<b107b0cf>] path_release_on_umount+0x15/0x18
[<b108a5bc>] sys_umount+0x3b/0x265
[<b108a7ff>] sys_oldumount+0x19/0x1b
[<b10030b7>] syscall_call+0x7/0xb
[<a7f3f73d>] 0xa7f3f73d
Code: fe ff ff 89 d8 5b 5d c3 55 89 e5 56 53 89 c3 8b 40 04 a8 10 75 1f 83 c8 10 89 43 04 8d 4b 14 8b 43 14 8b 51 04 89 02 85 c0 74 03 <89> 50 04 c7 41 04 00 02 20 00 8d 4b 34 8b 53 34 8b 41 04 89 42
EIP: [<b108558c>] prune_one_dentry+0x23/0x7a SS:ESP 0068:ebb30e94
(gdb) list *prune_one_dentry+0x23
0xb108558c is in prune_one_dentry (list.h:614).
609 {
610 struct hlist_node *next = n->next;
611 struct hlist_node **pprev = n->pprev;
612 *pprev = next;
613 if (next)
614 next->pprev = pprev;
615 }
616
617 static inline void hlist_del(struct hlist_node *n)
618 {
(gdb) list *prune_dcache+0x144
0xb1085826 is in prune_dcache (dcache.c:457).
452 /*
453 * If this dentry is for "my" filesystem, then I can prune it
454 * without taking the s_umount lock (I already hold it).
455 */
456 if (sb && dentry->d_sb == sb) {
457 prune_one_dentry(dentry);
458 continue;
459 }
460 /*
461 * ...otherwise we need to be sure this filesystem isn't being
(gdb)
next prev parent reply other threads:[~2006-07-12 8:49 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <6wDCq-5xj-25@gated-at.bofh.it>
[not found] ` <6wM2X-1lt-7@gated-at.bofh.it>
[not found] ` <6wOxP-4QN-5@gated-at.bofh.it>
2006-07-09 22:57 ` 2.6.18-rc1-mm1: /sys/class/net/ethN becoming symlink befuddled /sbin/ifup Tilman Schmidt
2006-07-09 23:17 ` Andrew Morton
2006-07-10 6:31 ` 2.6.18-rc1: slab BUG_ON(!PageSlab(page)) upon umount after failed suspend Mike Galbraith
2006-07-10 8:42 ` Pekka Enberg
2006-07-10 10:25 ` Mike Galbraith
2006-07-10 10:33 ` Pekka Enberg
2006-07-10 10:42 ` Mike Galbraith
2006-07-10 10:51 ` Mike Galbraith
2006-07-10 11:40 ` Pekka Enberg
2006-07-12 8:55 ` Mike Galbraith [this message]
2006-07-10 18:28 ` 2.6.18-rc1-mm1: /sys/class/net/ethN becoming symlink befuddled /sbin/ifup Tilman Schmidt
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=1152694553.8625.10.camel@Homer.TheSimpsons.net \
--to=efault@gmx.de \
--cc=linux-kernel@vger.kernel.org \
--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
Powered by JetHome