From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Cooper Subject: Re: [xen-unstable test] 12250: regressions - FAIL Date: Fri, 16 Mar 2012 15:15:55 +0000 Message-ID: <4F63592B.3090603@citrix.com> References: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------040502000704060302050708" Return-path: In-Reply-To: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: "xen.org" , Keir Fraser , Jan Beulich Cc: "xen-devel@lists.xensource.com" List-Id: xen-devel@lists.xenproject.org --------------040502000704060302050708 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7bit On 16/03/12 14:53, xen.org wrote: > flight 12250 xen-unstable real [real] > http://www.chiark.greenend.org.uk/~xensrcts/logs/12250/ > > Regressions :-( > > Tests which did not succeed and are blocking, > including tests which could not be run: > build-i386-oldkern 4 xen-build fail REGR. vs. 12249 > build-i386 4 xen-build fail REGR. vs. 12249 This is the fault of one of my patches. Fix is attached. I had been doing my testing with a debug patch on the end of the series. I tested the 64bit build for every patch, but only the 32bit build at the end of the series. I will take more care in future. -- Andrew Cooper - Dom0 Kernel Engineer, Citrix XenServer T: +44 (0)1223 225 900, http://www.citrix.com --------------040502000704060302050708 Content-Type: text/x-patch; name="KEXEC-fix-i386-build.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="KEXEC-fix-i386-build.patch" # HG changeset patch # Parent 3481a36b5f865cd221da2b580ebf0ab3596e9f1d Fix printing of paddr_t's in 32bit mode. Signed-off-by: Andrew Cooper diff -r 3481a36b5f86 xen/common/kexec.c --- a/xen/common/kexec.c +++ b/xen/common/kexec.c @@ -207,8 +207,8 @@ static void __init parse_crashinfo_maxad if ( (addr = parse_size_and_unit(str, NULL)) ) crashinfo_maxaddr = addr; else - printk("Unable to parse crashinfo_maxaddr. Defaulting to %p\n", - (void*)crashinfo_maxaddr); + printk("Unable to parse crashinfo_maxaddr. Defaulting to %"PRIpaddr"\n", + crashinfo_maxaddr); } custom_param("crashinfo_maxaddr", parse_crashinfo_maxaddr); --------------040502000704060302050708 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Xen-devel mailing list Xen-devel@lists.xen.org http://lists.xen.org/xen-devel --------------040502000704060302050708--