* [Qemu-devel] [PATCH] tpm_tis: fix format for 64bit variable @ 2015-03-31 13:27 Stefan Berger 2015-03-31 14:09 ` Eric Blake 0 siblings, 1 reply; 4+ messages in thread From: Stefan Berger @ 2015-03-31 13:27 UTC (permalink / raw) To: qemu-trivial; +Cc: qemu-devel, Stefan Berger Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com> --- hw/tpm/tpm_tis.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/tpm/tpm_tis.c b/hw/tpm/tpm_tis.c index 815c8ea..52e0148 100644 --- a/hw/tpm/tpm_tis.c +++ b/hw/tpm/tpm_tis.c @@ -814,7 +814,7 @@ static void tpm_tis_mmio_write_intern(void *opaque, hwaddr addr, tis->loc[locty].state == TPM_TIS_STATE_COMPLETION) { /* drop the byte */ } else { - DPRINTF("tpm_tis: Data to send to TPM: %08x (size=%d)\n", + DPRINTF("tpm_tis: Data to send to TPM: %08lx (size=%d)\n", val, size); if (tis->loc[locty].state == TPM_TIS_STATE_READY) { tis->loc[locty].state = TPM_TIS_STATE_RECEPTION; -- 1.9.3 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] tpm_tis: fix format for 64bit variable 2015-03-31 13:27 [Qemu-devel] [PATCH] tpm_tis: fix format for 64bit variable Stefan Berger @ 2015-03-31 14:09 ` Eric Blake 2015-03-31 14:15 ` Eric Blake 0 siblings, 1 reply; 4+ messages in thread From: Eric Blake @ 2015-03-31 14:09 UTC (permalink / raw) To: Stefan Berger, qemu-trivial; +Cc: qemu-devel [-- Attachment #1: Type: text/plain, Size: 912 bytes --] On 03/31/2015 07:27 AM, Stefan Berger wrote: > Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com> > --- > hw/tpm/tpm_tis.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/hw/tpm/tpm_tis.c b/hw/tpm/tpm_tis.c > index 815c8ea..52e0148 100644 > --- a/hw/tpm/tpm_tis.c > +++ b/hw/tpm/tpm_tis.c > @@ -814,7 +814,7 @@ static void tpm_tis_mmio_write_intern(void *opaque, hwaddr addr, > tis->loc[locty].state == TPM_TIS_STATE_COMPLETION) { > /* drop the byte */ > } else { > - DPRINTF("tpm_tis: Data to send to TPM: %08x (size=%d)\n", > + DPRINTF("tpm_tis: Data to send to TPM: %08lx (size=%d)\n", NACK. When printing uint64_t val, you HAVE to use PRIx64, not lx, for the sake of 32-bit platforms. -- Eric Blake eblake redhat com +1-919-301-3266 Libvirt virtualization library http://libvirt.org [-- Attachment #2: OpenPGP digital signature --] [-- Type: application/pgp-signature, Size: 604 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] tpm_tis: fix format for 64bit variable 2015-03-31 14:09 ` Eric Blake @ 2015-03-31 14:15 ` Eric Blake 2015-03-31 15:35 ` Stefan Berger 0 siblings, 1 reply; 4+ messages in thread From: Eric Blake @ 2015-03-31 14:15 UTC (permalink / raw) To: Stefan Berger, qemu-trivial; +Cc: qemu-devel [-- Attachment #1: Type: text/plain, Size: 1860 bytes --] On 03/31/2015 08:09 AM, Eric Blake wrote: > On 03/31/2015 07:27 AM, Stefan Berger wrote: >> Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com> >> --- >> hw/tpm/tpm_tis.c | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/hw/tpm/tpm_tis.c b/hw/tpm/tpm_tis.c >> index 815c8ea..52e0148 100644 >> --- a/hw/tpm/tpm_tis.c >> +++ b/hw/tpm/tpm_tis.c >> @@ -814,7 +814,7 @@ static void tpm_tis_mmio_write_intern(void *opaque, hwaddr addr, >> tis->loc[locty].state == TPM_TIS_STATE_COMPLETION) { >> /* drop the byte */ >> } else { >> - DPRINTF("tpm_tis: Data to send to TPM: %08x (size=%d)\n", >> + DPRINTF("tpm_tis: Data to send to TPM: %08lx (size=%d)\n", > > NACK. When printing uint64_t val, you HAVE to use PRIx64, not lx, for > the sake of 32-bit platforms. Furthermore, you could have caught this much sooner if you fix the definition of DPRINTF. This file used: #ifdef DEBUG_TIS #define DPRINTF(fmt, ...) \ do { fprintf(stderr, fmt, ## __VA_ARGS__); } while (0) #else #define DPRINTF(fmt, ...) \ do { } while (0) #endif which is bad, because the compiler CAN'T see the type mismatch unless you turn debugging on (alas, we have a LOT of files in the code base with similar bad patterns). A better example is hw/display/cg3.c: /* Change to 1 to enable debugging */ #define DEBUG_CG3 0 ... #define DPRINTF(fmt, ...) do { \ if (DEBUG_CG3) { \ printf("CG3: " fmt , ## __VA_ARGS__); \ } \ } while (0); where now the compiler can unconditionally do -Wformat checking and avoid bit-rot, even if debug printing is never turned on, and without penalizing code size when debugging is off. -- Eric Blake eblake redhat com +1-919-301-3266 Libvirt virtualization library http://libvirt.org [-- Attachment #2: OpenPGP digital signature --] [-- Type: application/pgp-signature, Size: 604 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] tpm_tis: fix format for 64bit variable 2015-03-31 14:15 ` Eric Blake @ 2015-03-31 15:35 ` Stefan Berger 0 siblings, 0 replies; 4+ messages in thread From: Stefan Berger @ 2015-03-31 15:35 UTC (permalink / raw) To: Eric Blake, qemu-trivial; +Cc: qemu-devel On 03/31/2015 10:15 AM, Eric Blake wrote: > On 03/31/2015 08:09 AM, Eric Blake wrote: >> On 03/31/2015 07:27 AM, Stefan Berger wrote: >>> Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com> >>> --- >>> hw/tpm/tpm_tis.c | 2 +- >>> 1 file changed, 1 insertion(+), 1 deletion(-) >>> >>> diff --git a/hw/tpm/tpm_tis.c b/hw/tpm/tpm_tis.c >>> index 815c8ea..52e0148 100644 >>> --- a/hw/tpm/tpm_tis.c >>> +++ b/hw/tpm/tpm_tis.c >>> @@ -814,7 +814,7 @@ static void tpm_tis_mmio_write_intern(void *opaque, hwaddr addr, >>> tis->loc[locty].state == TPM_TIS_STATE_COMPLETION) { >>> /* drop the byte */ >>> } else { >>> - DPRINTF("tpm_tis: Data to send to TPM: %08x (size=%d)\n", >>> + DPRINTF("tpm_tis: Data to send to TPM: %08lx (size=%d)\n", >> NACK. When printing uint64_t val, you HAVE to use PRIx64, not lx, for >> the sake of 32-bit platforms. > Furthermore, you could have caught this much sooner if you fix the > definition of DPRINTF. This file used: > > #ifdef DEBUG_TIS > #define DPRINTF(fmt, ...) \ > do { fprintf(stderr, fmt, ## __VA_ARGS__); } while (0) > #else > #define DPRINTF(fmt, ...) \ > do { } while (0) > #endif > > which is bad, because the compiler CAN'T see the type mismatch unless > you turn debugging on (alas, we have a LOT of files in the code base > with similar bad patterns). A better example is hw/display/cg3.c: > > /* Change to 1 to enable debugging */ > #define DEBUG_CG3 0 > ... > #define DPRINTF(fmt, ...) do { \ > if (DEBUG_CG3) { \ > printf("CG3: " fmt , ## __VA_ARGS__); \ > } \ > } while (0); I'll move it towards that after 2.3 is out. Stefan ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-03-31 15:35 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2015-03-31 13:27 [Qemu-devel] [PATCH] tpm_tis: fix format for 64bit variable Stefan Berger 2015-03-31 14:09 ` Eric Blake 2015-03-31 14:15 ` Eric Blake 2015-03-31 15:35 ` Stefan Berger
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).