* Re: [PATCH] xen: Pass the location of the ACPI RSDP to DOM0.
@ 2013-12-17 19:09 Philip Wernersbach
2013-12-17 19:18 ` Ian Campbell
2013-12-17 19:27 ` Andrew Cooper
0 siblings, 2 replies; 8+ messages in thread
From: Philip Wernersbach @ 2013-12-17 19:09 UTC (permalink / raw)
To: Ian.Campbell, xen-devel
I can't post patches inline because my mail client corrupts the
patches with extra white space. The linked patch should meet all
requirements listed in Submitting_Xen_Patches.
Thanks,
Philip Wernersbach
On Tue, Dec 17, 2013 at 5:02 AM, Ian Campbell <Ian.Campbell@citrix.com> wrote:
>
> On Mon, 2013-12-16 at 19:24 -0500, Philip Wernersbach wrote:
> > Oops! The correct link to the patch is
> > http://gist.github.com/philip-wernersbach/7997637.
>
> Please see http://wiki.xen.org/wiki/Submitting_Xen_Patches for advice on
> how to submit a patch.
>
> >
> > On Mon, Dec 16, 2013 at 7:22 PM, Philip Wernersbach
> > <philip.wernersbach@gmail.com> wrote:
> > > Hello Everyone,
> > >
> > > I recently ran into a problem deploying Xen on a new IBM server. The
> > > problem was that DOM0 couldn't find the ACPI RSDP, since newer IBM
> > > servers only allow access to that information through EFI. Since Xen
> > > nukes DOM0's access to EFI, DOM0 couldn't find this information, and
> > > so it proceeded with degraded functionality.
> > >
> > > I made a patch to correct this, and uploaded it to
> > > http://gist.github.com/philip-wernersbach/6473042, in hopes that I can
> > > get this patch included into mainline Xen.
> > >
> > > Sincerely,
> > > Philip Wernersbach
> >
> > _______________________________________________
> > Xen-devel mailing list
> > Xen-devel@lists.xen.org
> > http://lists.xen.org/xen-devel
>
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] xen: Pass the location of the ACPI RSDP to DOM0.
2013-12-17 19:09 [PATCH] xen: Pass the location of the ACPI RSDP to DOM0 Philip Wernersbach
@ 2013-12-17 19:18 ` Ian Campbell
2013-12-17 20:51 ` Philip Wernersbach
2013-12-17 19:27 ` Andrew Cooper
1 sibling, 1 reply; 8+ messages in thread
From: Ian Campbell @ 2013-12-17 19:18 UTC (permalink / raw)
To: Philip Wernersbach; +Cc: xen-devel
(please don't top-post)
On Tue, 2013-12-17 at 14:09 -0500, Philip Wernersbach wrote:
> I can't post patches inline because my mail client corrupts the
> patches with extra white space. The linked patch should meet all
> requirements listed in Submitting_Xen_Patches.
Then please send it inline for review and attached for an uncorrupted
copy for application.
Please try and use whatever "preformatted" or "unformatted" etc option
you can find in your client for the inline version.
Ian.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] xen: Pass the location of the ACPI RSDP to DOM0.
2013-12-17 19:18 ` Ian Campbell
@ 2013-12-17 20:51 ` Philip Wernersbach
0 siblings, 0 replies; 8+ messages in thread
From: Philip Wernersbach @ 2013-12-17 20:51 UTC (permalink / raw)
To: Ian Campbell; +Cc: xen-devel
On Tue, Dec 17, 2013 at 2:18 PM, Ian Campbell <Ian.Campbell@citrix.com> wrote:
> Then please send it inline for review and attached for an uncorrupted
> copy for application.
>
> Please try and use whatever "preformatted" or "unformatted" etc option
> you can find in your client for the inline version.
When I redo the patch I'll try to get my client to behave.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] xen: Pass the location of the ACPI RSDP to DOM0.
2013-12-17 19:09 [PATCH] xen: Pass the location of the ACPI RSDP to DOM0 Philip Wernersbach
2013-12-17 19:18 ` Ian Campbell
@ 2013-12-17 19:27 ` Andrew Cooper
2013-12-17 20:48 ` Philip Wernersbach
1 sibling, 1 reply; 8+ messages in thread
From: Andrew Cooper @ 2013-12-17 19:27 UTC (permalink / raw)
To: Philip Wernersbach; +Cc: Ian.Campbell, xen-devel
On 17/12/13 19:09, Philip Wernersbach wrote:
> I can't post patches inline because my mail client corrupts the
> patches with extra white space. The linked patch should meet all
> requirements listed in Submitting_Xen_Patches.
>
> Thanks,
> Philip Wernersbach
In which case I shall do a cursory review right now.
You have used tabs not spaces. This needs fixing, and will likely fix
the alignment issues
"static acpi_physical_address __initdata global_rsdp_address;" should
not be static. As the patch currently stands you have two static
variables with same name.
"static char __initdata global_rsdp_address_string" again shouldn't be
static
acpi_os_get_root_pointer() already a global function which does what you
want. No need to edit drivers/acpi/tables at all.
~Andrew
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH] xen: Pass the location of the ACPI RSDP to DOM0.
@ 2013-12-17 0:22 Philip Wernersbach
2013-12-17 0:24 ` Philip Wernersbach
0 siblings, 1 reply; 8+ messages in thread
From: Philip Wernersbach @ 2013-12-17 0:22 UTC (permalink / raw)
To: xen-devel
Hello Everyone,
I recently ran into a problem deploying Xen on a new IBM server. The
problem was that DOM0 couldn't find the ACPI RSDP, since newer IBM
servers only allow access to that information through EFI. Since Xen
nukes DOM0's access to EFI, DOM0 couldn't find this information, and
so it proceeded with degraded functionality.
I made a patch to correct this, and uploaded it to
http://gist.github.com/philip-wernersbach/6473042, in hopes that I can
get this patch included into mainline Xen.
Sincerely,
Philip Wernersbach
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] xen: Pass the location of the ACPI RSDP to DOM0.
2013-12-17 0:22 Philip Wernersbach
@ 2013-12-17 0:24 ` Philip Wernersbach
2013-12-17 10:02 ` Ian Campbell
0 siblings, 1 reply; 8+ messages in thread
From: Philip Wernersbach @ 2013-12-17 0:24 UTC (permalink / raw)
To: xen-devel
Oops! The correct link to the patch is
http://gist.github.com/philip-wernersbach/7997637.
On Mon, Dec 16, 2013 at 7:22 PM, Philip Wernersbach
<philip.wernersbach@gmail.com> wrote:
> Hello Everyone,
>
> I recently ran into a problem deploying Xen on a new IBM server. The
> problem was that DOM0 couldn't find the ACPI RSDP, since newer IBM
> servers only allow access to that information through EFI. Since Xen
> nukes DOM0's access to EFI, DOM0 couldn't find this information, and
> so it proceeded with degraded functionality.
>
> I made a patch to correct this, and uploaded it to
> http://gist.github.com/philip-wernersbach/6473042, in hopes that I can
> get this patch included into mainline Xen.
>
> Sincerely,
> Philip Wernersbach
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] xen: Pass the location of the ACPI RSDP to DOM0.
2013-12-17 0:24 ` Philip Wernersbach
@ 2013-12-17 10:02 ` Ian Campbell
0 siblings, 0 replies; 8+ messages in thread
From: Ian Campbell @ 2013-12-17 10:02 UTC (permalink / raw)
To: Philip Wernersbach; +Cc: xen-devel
On Mon, 2013-12-16 at 19:24 -0500, Philip Wernersbach wrote:
> Oops! The correct link to the patch is
> http://gist.github.com/philip-wernersbach/7997637.
Please see http://wiki.xen.org/wiki/Submitting_Xen_Patches for advice on
how to submit a patch.
>
> On Mon, Dec 16, 2013 at 7:22 PM, Philip Wernersbach
> <philip.wernersbach@gmail.com> wrote:
> > Hello Everyone,
> >
> > I recently ran into a problem deploying Xen on a new IBM server. The
> > problem was that DOM0 couldn't find the ACPI RSDP, since newer IBM
> > servers only allow access to that information through EFI. Since Xen
> > nukes DOM0's access to EFI, DOM0 couldn't find this information, and
> > so it proceeded with degraded functionality.
> >
> > I made a patch to correct this, and uploaded it to
> > http://gist.github.com/philip-wernersbach/6473042, in hopes that I can
> > get this patch included into mainline Xen.
> >
> > Sincerely,
> > Philip Wernersbach
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xen.org
> http://lists.xen.org/xen-devel
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2013-12-17 20:51 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-17 19:09 [PATCH] xen: Pass the location of the ACPI RSDP to DOM0 Philip Wernersbach
2013-12-17 19:18 ` Ian Campbell
2013-12-17 20:51 ` Philip Wernersbach
2013-12-17 19:27 ` Andrew Cooper
2013-12-17 20:48 ` Philip Wernersbach
-- strict thread matches above, loose matches on Subject: below --
2013-12-17 0:22 Philip Wernersbach
2013-12-17 0:24 ` Philip Wernersbach
2013-12-17 10:02 ` Ian Campbell
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.