From: Rusty Russell <rusty@rustcorp.com.au>
To: Ingo Molnar <mingo@elte.hu>
Cc: maluta_tiago@yahoo.com.br, lguest@ozlabs.org,
Jeremy Fitzhardinge <jeremy@goop.org>,
"H. Peter Anvin" <hpa@zytor.com>,
Thomas Gleixner <tglx@linutronix.de>,
linux-kernel@vger.kernel.org
Subject: Re: [Lguest] lguest: unhandled trap
Date: Tue, 21 Oct 2008 09:48:00 +1100 [thread overview]
Message-ID: <200810210948.01108.rusty@rustcorp.com.au> (raw)
In-Reply-To: <20081020072236.GD12131@elte.hu>
On Monday 20 October 2008 18:22:36 Ingo Molnar wrote:
> * Rusty Russell <rusty@rustcorp.com.au> wrote:
> > On Monday 20 October 2008 12:50:09 Tiago Maluta wrote:
> > > --- On Sun, 10/19/08, Rusty Russell <rusty@rustcorp.com.au> wrote:
> > > > > Hi,
> > > > >
> > > > > I'm using 2.6.27-05323-g26e9a39 and when I try to
> > > >
> > > > use lguest:
> > > > > ~#Documentation/lguest/lguest 128 vmlinux
> > > > > lguest: unhandled trap 14 at 0xc0594f6a (0xff900000)
> > > >
> > > > Yes, I found the same issue. Does this fix it for you?
> > >
> > > Yes. This code fixed the problem.
> >
> > Thanks. Ingo, can you push this?
> >
> > Subject: lguest: don't try DMI
> >
> > dmi_scan_machine breaks under lguest; this is the simplest fix (though
> > ugly). Perhaps this hurts Xen too?
> >
> > Error:
> > lguest: unhandled trap 14 at 0xc04edeae (0xffa00000)
> >
> > Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
> >
> > diff -r 47449cd8e3d8 drivers/firmware/dmi_scan.c
> > --- a/drivers/firmware/dmi_scan.c Fri Oct 17 12:14:40 2008 +1100
> > +++ b/drivers/firmware/dmi_scan.c Fri Oct 17 20:54:30 2008 +1100
> > @@ -369,6 +369,11 @@ void __init dmi_scan_machine(void)
> > char __iomem *p, *q;
> > int rc;
> >
> > +#ifdef CONFIG_PARAVIRT
> > + if (strcmp(pv_info.name, "lguest") == 0)
> > + goto error;
> > +#endif
> > +
>
> hm, could you give some more background please? I'm not subscribed to
> the lguest list and the thread is not Cc:-ed to lkml (Cc:-ed it now).
> The patch looks quite ugly because it adds a special-case.
>
> Was the problem introduced by:
>
> 5649b7c: x86: add DMI quirk for AMI BIOS which corrupts address 0xc000
> during
>
> perhaps?
>
> i think Xen can withstand DMI scanning just fine.
>
> without having seen any background, my general feeling is that lguest
> should either do what Xen does and reserve the classic BIOS ranges that
> we probe - or we should make DMI scanning more robust by making sure
> real RAM ranges are never probed. (only ranges that the BIOS itself
> marks as reserved in the e820 map)
>
> (with exceptions for the first 4K perhaps.)
>
> Ingo
Yes, after this discussion I'm not even sure why it's triggering: even if
there's crap in the memory it should not fault. Digging further.
Cheers,
Rusty.
next prev parent reply other threads:[~2008-10-20 22:48 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <713731.28571.qm@web50701.mail.re2.yahoo.com>
[not found] ` <200810201452.04932.rusty@rustcorp.com.au>
2008-10-20 7:22 ` [Lguest] lguest: unhandled trap Ingo Molnar
2008-10-20 7:43 ` Jeremy Fitzhardinge
2008-10-20 7:53 ` Ingo Molnar
2008-10-20 9:14 ` Ian Campbell
2008-10-20 9:27 ` Ingo Molnar
2008-10-20 19:01 ` H. Peter Anvin
2008-10-20 22:48 ` Rusty Russell [this message]
2008-10-20 23:22 ` Ingo Molnar
[not found] <559519.75404.qm@web50707.mail.re2.yahoo.com>
2008-10-19 23:39 ` Rusty Russell
2008-10-20 4:15 ` Jeremy Fitzhardinge
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=200810210948.01108.rusty@rustcorp.com.au \
--to=rusty@rustcorp.com.au \
--cc=hpa@zytor.com \
--cc=jeremy@goop.org \
--cc=lguest@ozlabs.org \
--cc=linux-kernel@vger.kernel.org \
--cc=maluta_tiago@yahoo.com.br \
--cc=mingo@elte.hu \
--cc=tglx@linutronix.de \
/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