From: Andrew Cooper <andrew.cooper3@citrix.com>
To: "xen.org" <ian.jackson@eu.citrix.com>,
Keir Fraser <keir.xen@gmail.com>, Jan Beulich <JBeulich@suse.com>
Cc: "xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>
Subject: Re: [xen-unstable test] 12250: regressions - FAIL
Date: Fri, 16 Mar 2012 15:15:55 +0000 [thread overview]
Message-ID: <4F63592B.3090603@citrix.com> (raw)
In-Reply-To: <osstest-12250-mainreport@xen.org>
[-- Attachment #1: Type: text/plain, Size: 776 bytes --]
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
[-- Attachment #2: KEXEC-fix-i386-build.patch --]
[-- Type: text/x-patch, Size: 719 bytes --]
# HG changeset patch
# Parent 3481a36b5f865cd221da2b580ebf0ab3596e9f1d
Fix printing of paddr_t's in 32bit mode.
Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
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);
[-- Attachment #3: Type: text/plain, Size: 126 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel
prev parent reply other threads:[~2012-03-16 15:15 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-03-16 14:53 [xen-unstable test] 12250: regressions - FAIL xen.org
2012-03-16 15:15 ` Andrew Cooper [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4F63592B.3090603@citrix.com \
--to=andrew.cooper3@citrix.com \
--cc=JBeulich@suse.com \
--cc=ian.jackson@eu.citrix.com \
--cc=keir.xen@gmail.com \
--cc=xen-devel@lists.xensource.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.