diff options
author | 2007-05-29 02:37:04 +0000 | |
---|---|---|
committer | 2007-05-29 02:37:04 +0000 | |
commit | d789c90182a0fa1091b38b1e622d413abbad1cb3 (patch) | |
tree | 44b268e2af703ac616caf73bcfd39db7ec8da0a6 | |
parent | PMAP_STEAL_MEMORY for amd64 (diff) | |
download | wireguard-openbsd-d789c90182a0fa1091b38b1e622d413abbad1cb3.tar.xz wireguard-openbsd-d789c90182a0fa1091b38b1e622d413abbad1cb3.zip |
Remove a debugging printf left behind by accident.
-rw-r--r-- | sys/arch/amd64/amd64/pmap.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/arch/amd64/amd64/pmap.c b/sys/arch/amd64/amd64/pmap.c index 464f19a6e18..11eeef8d37c 100644 --- a/sys/arch/amd64/amd64/pmap.c +++ b/sys/arch/amd64/amd64/pmap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.c,v 1.25 2007/05/29 02:36:19 art Exp $ */ +/* $OpenBSD: pmap.c,v 1.26 2007/05/29 02:37:04 art Exp $ */ /* $NetBSD: pmap.c,v 1.3 2003/05/08 18:13:13 thorpej Exp $ */ /* @@ -660,8 +660,6 @@ pmap_bootstrap(vaddr_t kva_start, paddr_t max_pa) if (ndmpdp < NDML2_ENTRIES) ndmpdp = NDML2_ENTRIES; /* At least 4GB */ -printf("ndmpdp: %ld\n", ndmpdp); - dmpdp = kpm->pm_pdir[PDIR_SLOT_DIRECT] & PG_FRAME; dmpd = avail_start; avail_start += ndmpdp * PAGE_SIZE; |