From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Williamson Subject: [PATCH] Re: [Xen-staging] [xen-unstable] Improve consistency of type-attribute usage (volatile/const). Date: Thu, 21 Dec 2006 10:23:36 -0700 Message-ID: <1166721816.5054.34.camel@bling> References: <200612211400.kBLE0MXG021550@latara.uk.xensource.com> Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <200612211400.kBLE0MXG021550@latara.uk.xensource.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: xen-devel@lists.xensource.com List-Id: xen-devel@lists.xenproject.org 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 --- 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 */