* Problem building 3.1.1 HV for ia64
@ 2007-10-16 12:43 Bill Burns
2007-10-16 13:34 ` Alex Williamson
2007-10-16 17:16 ` Alex Williamson
0 siblings, 2 replies; 4+ messages in thread
From: Bill Burns @ 2007-10-16 12:43 UTC (permalink / raw)
To: xen-devel
I have run into an issue with the Xen 3.1.1 HV where it fails
to build for ia64. I have worked up a patch that fixes the issue, but
I wonder if maybe I am doing something wrong. It seems hard to believe that
they 3.1.1 won't build ia64.
Anyway here is the issue. Building for common/domctl.c get an undefined
reference error on guest_physmap_max_mem_pages. It is declared in arch
dependent shadow.h files. Not sure why only the ia64 does not get the
definition. But the following changeset removed the include of asm/shadow.h
from common/domctl.c:
changeset: 15456:74b05c391535
user: Keir Fraser <keir@xensource.com>
date: Wed Oct 03 14:37:38 2007 +0100
summary: [XEN] replace shadow_* with paging_* in common code
Restoring the include fixes the build for ia64. Do others see this issue?
Thanks,
Bill
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Problem building 3.1.1 HV for ia64
2007-10-16 12:43 Problem building 3.1.1 HV for ia64 Bill Burns
@ 2007-10-16 13:34 ` Alex Williamson
2007-10-16 17:16 ` Alex Williamson
1 sibling, 0 replies; 4+ messages in thread
From: Alex Williamson @ 2007-10-16 13:34 UTC (permalink / raw)
To: Bill Burns; +Cc: xen-devel
On Tue, 2007-10-16 at 08:43 -0400, Bill Burns wrote:
> I have run into an issue with the Xen 3.1.1 HV where it fails
> to build for ia64. I have worked up a patch that fixes the issue, but
> I wonder if maybe I am doing something wrong. It seems hard to believe that
> they 3.1.1 won't build ia64.
>
> Anyway here is the issue. Building for common/domctl.c get an undefined
> reference error on guest_physmap_max_mem_pages. It is declared in arch
> dependent shadow.h files. Not sure why only the ia64 does not get the
> definition. But the following changeset removed the include of asm/shadow.h
> from common/domctl.c:
>
> changeset: 15456:74b05c391535
> user: Keir Fraser <keir@xensource.com>
> date: Wed Oct 03 14:37:38 2007 +0100
> summary: [XEN] replace shadow_* with paging_* in common code
>
> Restoring the include fixes the build for ia64. Do others see this issue?
Unfortunately yes :( We must have missed testing the last rc.
Alex
--
Alex Williamson HP Open Source & Linux Org.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Problem building 3.1.1 HV for ia64
2007-10-16 12:43 Problem building 3.1.1 HV for ia64 Bill Burns
2007-10-16 13:34 ` Alex Williamson
@ 2007-10-16 17:16 ` Alex Williamson
2007-10-17 6:58 ` Keir Fraser
1 sibling, 1 reply; 4+ messages in thread
From: Alex Williamson @ 2007-10-16 17:16 UTC (permalink / raw)
To: Bill Burns, Keir Fraser; +Cc: xen-devel
Keir,
I know 3.1.1 is done, but it would be great if you could add this
trivial patch to the tree. If not, at least it's posted here for the
search engines to find. Thanks,
Alex
On Tue, 2007-10-16 at 08:43 -0400, Bill Burns wrote:
> I have run into an issue with the Xen 3.1.1 HV where it fails
> to build for ia64. I have worked up a patch that fixes the issue, but
> I wonder if maybe I am doing something wrong. It seems hard to believe that
> they 3.1.1 won't build ia64.
>
> Anyway here is the issue. Building for common/domctl.c get an undefined
> reference error on guest_physmap_max_mem_pages. It is declared in arch
> dependent shadow.h files. Not sure why only the ia64 does not get the
> definition. But the following changeset removed the include of asm/shadow.h
> from common/domctl.c:
>
> changeset: 15456:74b05c391535
> user: Keir Fraser <keir@xensource.com>
> date: Wed Oct 03 14:37:38 2007 +0100
> summary: [XEN] replace shadow_* with paging_* in common code
>
# HG changeset patch
# User Tim Deegan <Tim.Deegan@xensource.com>
# Date 1184937040 -3600
# Node ID 66db6b98f0720c08524754fc2364b126ef5cd2ab
# Parent 44e12d5b5178d007ae64abef9599d29edb05e5a3
Fix IA64 build
Signed-off-by: Alex Williamson <alex.williamson@hp.com>
xen-unstable changeset: 66db6b98f072:66db6b98f0720c08524754fc2364b126ef5cd2ab
xen-unstable date: Fri Jul 20 14:10:40 2007 +0100
diff -r 44e12d5b5178 -r 66db6b98f072 xen/common/domctl.c
--- a/xen/common/domctl.c Fri Jul 20 12:00:25 2007 +0100
+++ b/xen/common/domctl.c Fri Jul 20 14:10:40 2007 +0100
@@ -20,6 +20,7 @@
#include <xen/rcupdate.h>
#include <xen/guest_access.h>
#include <xen/bitmap.h>
+#include <xen/paging.h>
#include <asm/current.h>
#include <public/domctl.h>
#include <acm/acm_hooks.h>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Problem building 3.1.1 HV for ia64
2007-10-16 17:16 ` Alex Williamson
@ 2007-10-17 6:58 ` Keir Fraser
0 siblings, 0 replies; 4+ messages in thread
From: Keir Fraser @ 2007-10-17 6:58 UTC (permalink / raw)
To: Alex Williamson, Bill Burns; +Cc: xen-devel
I'll add this and the x64 Solaris fix. I'll then leave it a short while, to
see if any other issues crop up, but we should probably roll 3.1.2 next week
to officially fix these annoying issues.
-- Keir
On 16/10/07 18:16, "Alex Williamson" <alex.williamson@hp.com> wrote:
> Keir,
>
> I know 3.1.1 is done, but it would be great if you could add this
> trivial patch to the tree. If not, at least it's posted here for the
> search engines to find. Thanks,
>
> Alex
>
> On Tue, 2007-10-16 at 08:43 -0400, Bill Burns wrote:
>> I have run into an issue with the Xen 3.1.1 HV where it fails
>> to build for ia64. I have worked up a patch that fixes the issue, but
>> I wonder if maybe I am doing something wrong. It seems hard to believe that
>> they 3.1.1 won't build ia64.
>>
>> Anyway here is the issue. Building for common/domctl.c get an undefined
>> reference error on guest_physmap_max_mem_pages. It is declared in arch
>> dependent shadow.h files. Not sure why only the ia64 does not get the
>> definition. But the following changeset removed the include of asm/shadow.h
>> from common/domctl.c:
>>
>> changeset: 15456:74b05c391535
>> user: Keir Fraser <keir@xensource.com>
>> date: Wed Oct 03 14:37:38 2007 +0100
>> summary: [XEN] replace shadow_* with paging_* in common code
>>
>
> # HG changeset patch
> # User Tim Deegan <Tim.Deegan@xensource.com>
> # Date 1184937040 -3600
> # Node ID 66db6b98f0720c08524754fc2364b126ef5cd2ab
> # Parent 44e12d5b5178d007ae64abef9599d29edb05e5a3
> Fix IA64 build
> Signed-off-by: Alex Williamson <alex.williamson@hp.com>
> xen-unstable changeset: 66db6b98f072:66db6b98f0720c08524754fc2364b126ef5cd2ab
> xen-unstable date: Fri Jul 20 14:10:40 2007 +0100
>
> diff -r 44e12d5b5178 -r 66db6b98f072 xen/common/domctl.c
> --- a/xen/common/domctl.c Fri Jul 20 12:00:25 2007 +0100
> +++ b/xen/common/domctl.c Fri Jul 20 14:10:40 2007 +0100
> @@ -20,6 +20,7 @@
> #include <xen/rcupdate.h>
> #include <xen/guest_access.h>
> #include <xen/bitmap.h>
> +#include <xen/paging.h>
> #include <asm/current.h>
> #include <public/domctl.h>
> #include <acm/acm_hooks.h>
>
>
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2007-10-17 6:58 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-16 12:43 Problem building 3.1.1 HV for ia64 Bill Burns
2007-10-16 13:34 ` Alex Williamson
2007-10-16 17:16 ` Alex Williamson
2007-10-17 6:58 ` Keir Fraser
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.