Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/uvm/pmap And replace an instance of "%p" conversion with...



details:   https://anonhg.NetBSD.org/src/rev/e6a593d4d607
branches:  trunk
changeset: 827477:e6a593d4d607
user:      pgoyette <pgoyette%NetBSD.org@localhost>
date:      Mon Oct 30 01:19:46 2017 +0000

description:
And replace an instance of "%p" conversion with "%#jx"

diffstat:

 sys/uvm/pmap/pmap.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 12100f81a722 -r e6a593d4d607 sys/uvm/pmap/pmap.c
--- a/sys/uvm/pmap/pmap.c       Mon Oct 30 00:55:42 2017 +0000
+++ b/sys/uvm/pmap/pmap.c       Mon Oct 30 01:19:46 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap.c,v 1.38 2017/10/30 00:55:42 kre Exp $    */
+/*     $NetBSD: pmap.c,v 1.39 2017/10/30 01:19:46 pgoyette Exp $       */
 
 /*-
  * Copyright (c) 1998, 2001 The NetBSD Foundation, Inc.
@@ -67,7 +67,7 @@
 
 #include <sys/cdefs.h>
 
-__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.38 2017/10/30 00:55:42 kre Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.39 2017/10/30 01:19:46 pgoyette Exp $");
 
 /*
  *     Manages physical address maps.
@@ -884,7 +884,7 @@
        const bool is_kernel_pmap_p = (pmap == pmap_kernel());
 
        UVMHIST_FUNC(__func__); UVMHIST_CALLED(pmaphist);
-       UVMHIST_LOG(pmaphist, "(pmap=%p kernel=%c va=%#jx..%#jx)",
+       UVMHIST_LOG(pmaphist, "(pmap=%#jx kernel=%c va=%#jx..%#jx)",
            (uintmax_t)(uintptr_t)pmap, (is_kernel_pmap_p ? 1 : 0), sva, eva);
        UVMHIST_LOG(pmaphist, "ptep=%#jx, flags(npte)=%#jx",
            (uintptr_t)ptep, flags, 0, 0);



Home | Main Index | Thread Index | Old Index