Module Name:    src
Committed By:   riastradh
Date:           Sun Jun  5 01:45:45 UTC 2022

Modified Files:
        src/sys/uvm: uvm_map.c

Log Message:
uvm(9): Don't duplicate vm_map_min/max in `show map' output.

Didn't notice these were already there, oops!


To generate a diff of this commit:
cvs rdiff -u -r1.398 -r1.399 src/sys/uvm/uvm_map.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/uvm/uvm_map.c
diff -u src/sys/uvm/uvm_map.c:1.398 src/sys/uvm/uvm_map.c:1.399
--- src/sys/uvm/uvm_map.c:1.398	Sat Jun  4 23:26:05 2022
+++ src/sys/uvm/uvm_map.c	Sun Jun  5 01:45:45 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: uvm_map.c,v 1.398 2022/06/04 23:26:05 riastradh Exp $	*/
+/*	$NetBSD: uvm_map.c,v 1.399 2022/06/05 01:45:45 riastradh Exp $	*/
 
 /*
  * Copyright (c) 1997 Charles D. Cranor and Washington University.
@@ -66,7 +66,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uvm_map.c,v 1.398 2022/06/04 23:26:05 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uvm_map.c,v 1.399 2022/06/05 01:45:45 riastradh Exp $");
 
 #include "opt_ddb.h"
 #include "opt_pax.h"
@@ -5126,8 +5126,6 @@ uvm_map_printit(struct vm_map *map, bool
 	    pmap_resident_count(map->pmap), pmap_wired_count(map->pmap));
 	if (!full)
 		return;
-	(*pr)("\tmin=%"PRIxVADDR", max=%"PRIxVADDR"\n",
-	    vm_map_min(map), vm_map_max(map));
 	for (entry = map->header.next; entry != &map->header;
 	    entry = entry->next) {
 		(*pr)(" - %p: %#lx->%#lx: obj=%p/%#llx, amap=%p/%d\n",

Reply via email to