From: Peter Xu <peterx@redhat.com>
To: qemu-devel@nongnu.org
Cc: famz@redhat.com, pbonzini@redhat.com, dgilbert@redhat.com
Subject: Re: [Qemu-devel] [PATCH 0/2] ramblock: add hmp command "info ramblock"
Date: Wed, 26 Apr 2017 18:32:52 +0800 [thread overview]
Message-ID: <20170426103252.GE16228@pxdev.xzpeter.org> (raw)
In-Reply-To: <149320210015.84.11529218509976657206@c05f1edc8ed1>
On Wed, Apr 26, 2017 at 03:21:40AM -0700, no-reply@patchew.org wrote:
[...]
> SIGN optionrom/linuxboot.bin
> LINK qemu-io.exe
> LINK qemu-ga.exe
> LINK qemu-img.exe
> GEN x86_64-softmmu/hmp-commands.h
> GEN x86_64-softmmu/config-target.h
> GEN x86_64-softmmu/hmp-commands-info.h
> GEN aarch64-softmmu/config-target.h
> GEN aarch64-softmmu/hmp-commands.h
> GEN aarch64-softmmu/hmp-commands-info.h
> CC x86_64-softmmu/exec.o
> CC x86_64-softmmu/translate-all.o
> CC x86_64-softmmu/cpu-exec-common.o
> CC x86_64-softmmu/cpu-exec.o
> CC x86_64-softmmu/tcg/tcg-op.o
> CC x86_64-softmmu/translate-common.o
> CC x86_64-softmmu/tcg/tcg.o
> CC aarch64-softmmu/exec.o
> CC aarch64-softmmu/translate-all.o
> CC aarch64-softmmu/cpu-exec.o
> CC aarch64-softmmu/translate-common.o
> CC aarch64-softmmu/cpu-exec-common.o
> CC aarch64-softmmu/tcg/tcg.o
> CC x86_64-softmmu/tcg/optimize.o
> /tmp/qemu-test/src/exec.c: In function 'ram_block_dump':
> /tmp/qemu-test/src/exec.c:1362:47: error: format '%lx' expects argument of type 'long unsigned int', but argument 5 has type 'ram_addr_t {aka long long unsigned int}' [-Werror=format=]
> monitor_printf(mon, "%24s %8s 0x%016lx 0x%016lx 0x%016lx\n",
> ^
> /tmp/qemu-test/src/exec.c:1362:56: error: format '%lx' expects argument of type 'long unsigned int', but argument 6 has type 'ram_addr_t {aka long long unsigned int}' [-Werror=format=]
> monitor_printf(mon, "%24s %8s 0x%016lx 0x%016lx 0x%016lx\n",
> ^
> /tmp/qemu-test/src/exec.c:1362:65: error: format '%lx' expects argument of type 'long unsigned int', but argument 7 has type 'ram_addr_t {aka long long unsigned int}' [-Werror=format=]
> monitor_printf(mon, "%24s %8s 0x%016lx 0x%016lx 0x%016lx\n",
> ^
> cc1: all warnings being treated as errors
> /tmp/qemu-test/src/rules.mak:69: recipe for target 'exec.o' failed
> make[1]: *** [exec.o] Error 1
> make[1]: *** Waiting for unfinished jobs....
> CC aarch64-softmmu/tcg/tcg-op.o
> /tmp/qemu-test/src/exec.c: In function 'ram_block_dump':
> /tmp/qemu-test/src/exec.c:1362:47: error: format '%lx' expects argument of type 'long unsigned int', but argument 5 has type 'ram_addr_t {aka long long unsigned int}' [-Werror=format=]
> monitor_printf(mon, "%24s %8s 0x%016lx 0x%016lx 0x%016lx\n",
> ^
> /tmp/qemu-test/src/exec.c:1362:56: error: format '%lx' expects argument of type 'long unsigned int', but argument 6 has type 'ram_addr_t {aka long long unsigned int}' [-Werror=format=]
> monitor_printf(mon, "%24s %8s 0x%016lx 0x%016lx 0x%016lx\n",
> ^
> /tmp/qemu-test/src/exec.c:1362:65: error: format '%lx' expects argument of type 'long unsigned int', but argument 7 has type 'ram_addr_t {aka long long unsigned int}' [-Werror=format=]
> monitor_printf(mon, "%24s %8s 0x%016lx 0x%016lx 0x%016lx\n",
> ^
> cc1: all warnings being treated as errors
> /tmp/qemu-test/src/rules.mak:69: recipe for target 'exec.o' failed
> make[1]: *** [exec.o] Error 1
> make[1]: *** Waiting for unfinished jobs....
> Makefile:327: recipe for target 'subdir-x86_64-softmmu' failed
> make: *** [subdir-x86_64-softmmu] Error 2
> make: *** Waiting for unfinished jobs....
> Makefile:327: recipe for target 'subdir-aarch64-softmmu' failed
> make: *** [subdir-aarch64-softmmu] Error 2
> tests/docker/Makefile.include:118: recipe for target 'docker-run' failed
> make[1]: *** [docker-run] Error 2
> make[1]: Leaving directory '/var/tmp/patchew-tester-tmp-fx9z3mer/src'
> tests/docker/Makefile.include:149: recipe for target 'docker-run-test-mingw@fedora' failed
> make: *** [docker-run-test-mingw@fedora] Error 2
Hmm. Let me repost with PRIx64. Sorry for the noise.
--
Peter Xu
prev parent reply other threads:[~2017-04-26 10:33 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-04-26 7:44 [Qemu-devel] [PATCH 0/2] ramblock: add hmp command "info ramblock" Peter Xu
2017-04-26 7:44 ` [Qemu-devel] [PATCH 1/2] ramblock: add RAMBLOCK_FOREACH() Peter Xu
2017-04-26 7:44 ` [Qemu-devel] [PATCH 2/2] ramblock: add new hmp command "info ramblock" Peter Xu
2017-04-26 12:10 ` Markus Armbruster
2017-04-27 2:09 ` Peter Xu
2017-04-27 7:07 ` Markus Armbruster
2017-04-27 7:39 ` Paolo Bonzini
2017-04-27 7:57 ` Markus Armbruster
2017-04-27 8:06 ` Peter Xu
2017-04-26 10:21 ` [Qemu-devel] [PATCH 0/2] ramblock: add " no-reply
2017-04-26 10:32 ` Peter Xu [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=20170426103252.GE16228@pxdev.xzpeter.org \
--to=peterx@redhat.com \
--cc=dgilbert@redhat.com \
--cc=famz@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
/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.