* [-next Jan 18] Boot failure on s390 with DEVTMPFS=y
[not found] <20100118195743.b45f119e.sfr@canb.auug.org.au>
@ 2010-01-18 14:21 ` Sachin Sant
2010-01-18 14:31 ` Kay Sievers
0 siblings, 1 reply; 4+ messages in thread
From: Sachin Sant @ 2010-01-18 14:21 UTC (permalink / raw)
To: Greg KH, Kay Sievers
Cc: Stephen Rothwell, linux-next, LKML, Heiko Carstens, linux-s390
Today next (next-20100118) failed to boot on a s390 box
with the following Oops :
Brought up 4 CPUs
Unable to handle kernel pointer dereference at virtual kernel address 0000000000543000
Oops: 0004 #1 SMP
Modules linked in:
CPU: 0 Not tainted 2.6.33-rc4-autotest-next-20100118-5-default #1
Process swapper (pid: 1, task: 00000000fd792038, ksp: 00000000fd797a30)
Krnl PSW : 0704200180000000 00000000001eb0b8 (shmem_parse_options+0xc0/0x328)
R:0 T:1 IO:1 EX:1 Key:0 M:1 W:0 P:0 AS:0 CC:2 PM:0 EA:3
Krnl GPRS: 000000000054388a 000000000000003d 0000000000543836 000000000000003d
0000000000000000 0000000000483f28 0000000000536112 00000000fd797d00
00000000fd4ba100 0000000000000100 0000000000483978 0000000000543832
0000000000000000 0000000000465958 00000000001eb0b0 00000000fd797c58
Krnl Code: 00000000001eb0aa: c0e5000994f1 brasl %r14,31da8c
00000000001eb0b0: b9020022 ltgr %r2,%r2
00000000001eb0b4: a784010b brc 8,1eb2ca
>00000000001eb0b8: 92002000 mvi 0(%r2),0
00000000001eb0bc: a7080000 lhi %r0,0
00000000001eb0c0: 41902001 la %r9,1(%r2)
00000000001eb0c4: b9040016 lgr %r1,%r6
00000000001eb0c8: b904002b lgr %r2,%r11
Call Trace:
(<00000000fd797c50> 0xfd797c50)
<00000000001eb5da> shmem_fill_super+0x13a/0x25c
<0000000000228cfa> get_sb_single+0xbe/0xdc
<000000000034ffc0> dev_get_sb+0x2c/0x38
<000000000066c602> devtmpfs_init+0x46/0xc0
<000000000066c53e> driver_init+0x22/0x60
<000000000064d40a> kernel_init+0x24e/0x3d0
<000000000010a7ea> kernel_thread_starter+0x6/0xc
<000000000010a7e4> kernel_thread_starter+0x0/0xc
Previous next builds worked fine on the same box. The only difference
between configs of the two builds was CONFIG_DEVTMPFS. This option was
enabled while compiling 20100118.
Thanks
-Sachin
--
---------------------------------
Sachin Sant
IBM Linux Technology Center
India Systems and Technology Labs
Bangalore, India
---------------------------------
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [-next Jan 18] Boot failure on s390 with DEVTMPFS=y
2010-01-18 14:21 ` [-next Jan 18] Boot failure on s390 with DEVTMPFS=y Sachin Sant
@ 2010-01-18 14:31 ` Kay Sievers
2010-01-19 21:14 ` Greg KH
0 siblings, 1 reply; 4+ messages in thread
From: Kay Sievers @ 2010-01-18 14:31 UTC (permalink / raw)
To: Sachin Sant
Cc: Greg KH, Stephen Rothwell, linux-next, LKML, Heiko Carstens,
linux-s390
On Mon, Jan 18, 2010 at 15:21, Sachin Sant <sachinp@in.ibm.com> wrote:
> Today next (next-20100118) failed to boot on a s390 box
> with the following Oops :
> Unable to handle kernel pointer dereference at virtual kernel address
> 0000000000543000
> <00000000001eb5da> shmem_fill_super+0x13a/0x25c
> <0000000000228cfa> get_sb_single+0xbe/0xdc
> <000000000034ffc0> dev_get_sb+0x2c/0x38
> <000000000066c602> devtmpfs_init+0x46/0xc0
> Previous next builds worked fine on the same box. The only difference
> between configs of the two builds was CONFIG_DEVTMPFS. This option was
> enabled while compiling 20100118.
Heiko Carstens posted a simple patch to work around the issue that
s390 write-protects the string, the option parser tries to modify.
When Greg has pick it up, this should be fixed.
Thanks,
Kay
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [-next Jan 18] Boot failure on s390 with DEVTMPFS=y
2010-01-18 14:31 ` Kay Sievers
@ 2010-01-19 21:14 ` Greg KH
2010-01-19 23:49 ` Stephen Rothwell
0 siblings, 1 reply; 4+ messages in thread
From: Greg KH @ 2010-01-19 21:14 UTC (permalink / raw)
To: Kay Sievers
Cc: Sachin Sant, Stephen Rothwell, linux-next, LKML, Heiko Carstens,
linux-s390
On Mon, Jan 18, 2010 at 03:31:09PM +0100, Kay Sievers wrote:
> On Mon, Jan 18, 2010 at 15:21, Sachin Sant <sachinp@in.ibm.com> wrote:
> > Today next (next-20100118) failed to boot on a s390 box
> > with the following Oops :
>
> > Unable to handle kernel pointer dereference at virtual kernel address
> > 0000000000543000
>
> > <00000000001eb5da> shmem_fill_super+0x13a/0x25c
> > <0000000000228cfa> get_sb_single+0xbe/0xdc
> > <000000000034ffc0> dev_get_sb+0x2c/0x38
> > <000000000066c602> devtmpfs_init+0x46/0xc0
>
> > Previous next builds worked fine on the same box. The only difference
> > between configs of the two builds was CONFIG_DEVTMPFS. This option was
> > enabled while compiling 20100118.
>
> Heiko Carstens posted a simple patch to work around the issue that
> s390 write-protects the string, the option parser tries to modify.
> When Greg has pick it up, this should be fixed.
Yes, I've now queued it up in my trees.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [-next Jan 18] Boot failure on s390 with DEVTMPFS=y
2010-01-19 21:14 ` Greg KH
@ 2010-01-19 23:49 ` Stephen Rothwell
0 siblings, 0 replies; 4+ messages in thread
From: Stephen Rothwell @ 2010-01-19 23:49 UTC (permalink / raw)
To: Greg KH
Cc: Kay Sievers, Sachin Sant, linux-next, LKML, Heiko Carstens,
linux-s390
[-- Attachment #1: Type: text/plain, Size: 546 bytes --]
Hi Greg,
On Tue, 19 Jan 2010 13:14:22 -0800 Greg KH <greg@kroah.com> wrote:
>
> On Mon, Jan 18, 2010 at 03:31:09PM +0100, Kay Sievers wrote:
> >
> > Heiko Carstens posted a simple patch to work around the issue that
> > s390 write-protects the string, the option parser tries to modify.
> > When Greg has pick it up, this should be fixed.
>
> Yes, I've now queued it up in my trees.
Great. Another one bites the dust :-)
--
Cheers,
Stephen Rothwell sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/
[-- Attachment #2: Type: application/pgp-signature, Size: 198 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2010-01-19 23:49 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20100118195743.b45f119e.sfr@canb.auug.org.au>
2010-01-18 14:21 ` [-next Jan 18] Boot failure on s390 with DEVTMPFS=y Sachin Sant
2010-01-18 14:31 ` Kay Sievers
2010-01-19 21:14 ` Greg KH
2010-01-19 23:49 ` Stephen Rothwell
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox