* [PATCH] Re: [Xen-staging] [xen-unstable] Improve consistency of type-attribute usage (volatile/const).
[not found] <200612211400.kBLE0MXG021550@latara.uk.xensource.com>
@ 2006-12-21 17:23 ` Alex Williamson
0 siblings, 0 replies; only message in thread
From: Alex Williamson @ 2006-12-21 17:23 UTC (permalink / raw)
To: xen-devel
On Thu, 2006-12-21 at 14:00 +0000, Xen staging patchbot-unstable wrote:
> # HG changeset patch
> # User kfraser@localhost.localdomain
> # Date 1166709531 0
> # Node ID 3e2d3d73762492fd03955d2574e30f535426c1ce
> # Parent e86605304e52ee2012f5812dbf3a425572e65faa
> Improve consistency of type-attribute usage (volatile/const).
All architectures define elf_sanity_check() and need to be updated
from this change. Patch below. Thanks,
Alex
Signed-off-by: Alex Williamson <alex.williamson@hp.com>
---
diff -r 71c40c3f92f7 xen/arch/ia64/xen/domain.c
--- a/xen/arch/ia64/xen/domain.c Thu Dec 21 16:20:11 2006 +0000
+++ b/xen/arch/ia64/xen/domain.c Thu Dec 21 10:14:11 2006 -0700
@@ -867,7 +867,7 @@ int shadow_mode_control(struct domain *d
#endif
// see arch/x86/xxx/domain_build.c
-int elf_sanity_check(Elf_Ehdr *ehdr)
+int elf_sanity_check(const Elf_Ehdr *ehdr)
{
if (!(IS_ELF(*ehdr)))
{
diff -r 71c40c3f92f7 xen/arch/powerpc/domain_build.c
--- a/xen/arch/powerpc/domain_build.c Thu Dec 21 16:20:11 2006 +0000
+++ b/xen/arch/powerpc/domain_build.c Thu Dec 21 10:15:45 2006 -0700
@@ -51,7 +51,7 @@ static unsigned int opt_dom0_shadow;
static unsigned int opt_dom0_shadow;
boolean_param("dom0_shadow", opt_dom0_shadow);
-int elf_sanity_check(Elf_Ehdr *ehdr)
+int elf_sanity_check(const Elf_Ehdr *ehdr)
{
if (IS_ELF(*ehdr))
/* we are happy with either */
^ permalink raw reply [flat|nested] only message in thread