[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] tools/xen-hvmctx: drop bogus casts from dump_lapic_regs()
commit 55f558ce1effcd20cff207280e0d31c80ab4045a Author: Jan Beulich <jbeulich@xxxxxxxx> AuthorDate: Thu Oct 4 14:55:01 2018 +0200 Commit: Jan Beulich <jbeulich@xxxxxxxx> CommitDate: Thu Oct 4 14:55:01 2018 +0200 tools/xen-hvmctx: drop bogus casts from dump_lapic_regs() The casts weren't even to the right type - all LAPIC registers are 32-bit (pairs/groups of registers may be combined to form larger logical ones, but this is not visible in the given data representation). Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> Acked-by: Wei Liu <wei.liu2@xxxxxxxxxx> --- tools/misc/xen-hvmctx.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/misc/xen-hvmctx.c b/tools/misc/xen-hvmctx.c index bc5846218f..ced18e760a 100644 --- a/tools/misc/xen-hvmctx.c +++ b/tools/misc/xen-hvmctx.c @@ -250,9 +250,9 @@ static void dump_lapic_regs(void) printf(" LAPIC registers:\n"); for ( i = 0 ; i < 0x400 ; i += 32 ) { - printf(" 0x%4.4x: 0x%16.16llx 0x%4.4x: 0x%16.16llx\n", - i, *(unsigned long long *)&r.data[i], - i + 16, *(unsigned long long *)&r.data[i + 16]); + printf(" 0x%03x: 0x%08" PRIx32 " 0x%03x: 0x%08" PRIx32 "\n", + i, *(uint32_t *)&r.data[i], + i + 16, *(uint32_t *)&r.data[i + 16]); } } -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |