From: Kingsley Cheung <kingsley@aurema.com>
To: Tom Zanussi <zanussi@us.ibm.com>
Cc: linux-kernel <linux-kernel@vger.kernel.org>
Subject: [PATCH] relayfs crash
Date: Mon, 7 Feb 2005 14:04:44 +1100 [thread overview]
Message-ID: <20050207030444.GF27268@aurema.com> (raw)
In-Reply-To: <41EF4E74.2000304@opersys.com>
[-- Attachment #1: Type: text/plain, Size: 2111 bytes --]
Hi Tom,
I've been stress testing a module that uses relayfs on a custom built
2.6 kernel with relayfs patches in it. This test simply loaded and
unloaded the module while a script loaded the system with forks of
'ls' in the background. It was conducted on a dual 3.00GHz Xeon box
(I couldn't reproduce the bug on slower machines I had) and produced
oopses of the following type:
wembley login: Oops: 0000 [#1]
SMP
CPU: 2
EIP: 0060:[<f9824790>] Tainted: GF U
EFLAGS: 00010292 (2.6.5-7.97ZP2-smp)
EIP is at relayfs_remove_file+0x10/0xc0 [relayfs]
eax: 00000000 ebx: 00000292 ecx: f0cf3918 edx: c193810c
esi: 00000000 edi: f0cf391c ebp: f0cf3000 esp: f7fabf4c
ds: 007b es: 007b ss: 0068
Process events/2 (pid: 12, threadinfo=f7faa000 task=cdea2730)
Stack: 00000292 c1938100 f0cf391c c0138cc7 00000000 c180c960 c180c960 c1938120
f9822cb0 f7faa000 c193810c ffffffff ffffffff 00000001 00000000 c0122b10
00010000 00000000 00fffff0 00000000 00000000 00000000 cdea2730 c0122b10
Call Trace:
[<c0138cc7>] worker_thread+0x187/0x230
[<f9822cb0>] remove_rchan_file+0x0/0xb [relayfs]
[<c0122b10>] default_wake_function+0x0/0x10
[<c0122b10>] default_wake_function+0x0/0x10
[<c0138b40>] worker_thread+0x0/0x230
[<c013c894>] kthread+0xd4/0x118
[<c013c7c0>] kthread+0x0/0x118
[<c0107005>] kernel_thread_helper+0x5/0x10
Code: 8b 58 64 b8 ea ff ff ff 85 db 74 5b 8b 46 0c 0f b7 40 20 25
This oops looks like one mentioned in
http://www.listserv.shafik.org/pipermail/ltt/2004-July/000627.html
It seems to be the same problem where the rchan work queue is
scheduled to run, but rchan has already been destroyed when the tries
it. This still happens in the latest patch against 2.6.10 at
http://www.opersys.com/ftp/pub/relayfs/patch-relayfs-2.6.10-050113
To solve the problem I applied a patch similar to the one you posted
back in July and it fixed the problem. Could we consider putting this
patch into relayfs? Its similar to the one posted in July 2004, except
it also moves clear_readers() before INIT_WORK in relay_release (is
that acceptable?).
Thanks,
--
Kingsley
[-- Attachment #2: 2.6.5-7.97-relayfs-bug.patch --]
[-- Type: text/plain, Size: 548 bytes --]
--- linux-2.6.5-7.97ZP2/fs/relayfs/relay.c.old 2005-02-02 18:43:24.918844376 +1100
+++ linux-2.6.5-7.97ZP2/fs/relayfs/relay.c 2005-02-02 18:44:33.725384192 +1100
@@ -184,6 +184,7 @@
struct rchan *rchan = (struct rchan *)private;
relayfs_remove_file(rchan->dentry);
+ kfree(rchan);
}
@@ -212,12 +213,10 @@
goto exit;
rchan_free_id(rchan->id);
+ clear_readers(rchan);
INIT_WORK(&rchan->work, remove_rchan_file, rchan);
schedule_delayed_work(&rchan->work, 1);
-
- clear_readers(rchan);
- kfree(rchan);
exit:
return err;
}
next prev parent reply other threads:[~2005-02-07 3:07 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-01-20 6:23 [PATCH] relayfs redux for 2.6.10: lean and mean Karim Yaghmour
2005-01-20 14:50 ` Greg KH
2005-01-21 1:38 ` Karim Yaghmour
2005-01-21 2:15 ` Peter Williams
2005-01-21 6:39 ` Greg KH
2005-01-21 7:27 ` Peter Williams
2005-01-21 7:46 ` Greg KH
2005-01-21 6:43 ` Greg KH
2005-01-23 8:07 ` Karim Yaghmour
2005-01-20 15:06 ` Greg KH
2005-01-20 19:51 ` Pekka Enberg
2005-02-07 3:04 ` Kingsley Cheung [this message]
2005-02-07 3:16 ` [PATCH] relayfs crash Karim Yaghmour
2005-02-07 4:42 ` Tom Zanussi
2005-02-07 4:47 ` Kingsley Cheung
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=20050207030444.GF27268@aurema.com \
--to=kingsley@aurema.com \
--cc=linux-kernel@vger.kernel.org \
--cc=zanussi@us.ibm.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