14.06.2013 11:11, Hu Tao wrote: > And use PRIxxx macros if possible. > > Signed-off-by: Hu Tao <hu...@cn.fujitsu.com> > --- > cputlb.c | 4 ++-- > hw/acpi/piix4.c | 12 ++++++------ > 2 files changed, 8 insertions(+), 8 deletions(-) > > diff --git a/cputlb.c b/cputlb.c > index 86666c8..1230e9e 100644 > --- a/cputlb.c > +++ b/cputlb.c > @@ -262,8 +262,8 @@ void tlb_set_page(CPUArchState *env, target_ulong vaddr, > > #if defined(DEBUG_TLB) > printf("tlb_set_page: vaddr=" TARGET_FMT_lx " paddr=0x" TARGET_FMT_plx > - " prot=%x idx=%d pd=0x%08lx\n", > - vaddr, paddr, prot, mmu_idx, pd); > + " prot=%x idx=%d\n", > + vaddr, paddr, prot, mmu_idx); > #endif
This one hunk has already been posted by Hervé Poussineau in this message: From: Hervé Poussineau <hpous...@reactos.org> Date: Wed, 5 Jun 2013 20:16:42 +0800 Message-Id: <1370434603-5394-1-git-send-email-hpous...@reactos.org> Subject: [Qemu-trivial] [PATCH] cputlb: fix debug logs I questioned it because the `pd' thing hasn't been really removed but moved into a different structure instead, and we should either ask subsystem maintainers to fix it or remove the whole thing. This is debugging stuff, which is needed by someone who actually understands the subsystem and understands the debugging output too. If the debugging isn't needed (and since it does not compile for quite some time, it obviously isn't used), let's get rid of whole thing instead. Unfortunately no one replied to that my email so far. Adding Cc BlueSwirl again, in a hope... Thanks, /mjt