[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH] Re: [Xen-staging] [xen-unstable] Improve consistency of type-attribute usage (volatile/const).
On Thu, 2006-12-21 at 14:00 +0000, Xen staging patchbot-unstable wrote: > # HG changeset patch > # User kfraser@xxxxxxxxxxxxxxxxxxxxx > # 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@xxxxxx> --- 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 */ _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |