Module Name:    src
Committed By:   ozaki-r
Date:           Fri Mar 16 08:21:45 UTC 2018

Modified Files:
        src/sys/kern: subr_lockdebug.c

Log Message:
Get rid of a redundant output


To generate a diff of this commit:
cvs rdiff -u -r1.62 -r1.63 src/sys/kern/subr_lockdebug.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/kern/subr_lockdebug.c
diff -u src/sys/kern/subr_lockdebug.c:1.62 src/sys/kern/subr_lockdebug.c:1.63
--- src/sys/kern/subr_lockdebug.c:1.62	Fri Mar 16 04:44:51 2018
+++ src/sys/kern/subr_lockdebug.c	Fri Mar 16 08:21:45 2018
@@ -1,4 +1,4 @@
-/*	$NetBSD: subr_lockdebug.c,v 1.62 2018/03/16 04:44:51 ozaki-r Exp $	*/
+/*	$NetBSD: subr_lockdebug.c,v 1.63 2018/03/16 08:21:45 ozaki-r Exp $	*/
 
 /*-
  * Copyright (c) 2006, 2007, 2008 The NetBSD Foundation, Inc.
@@ -34,7 +34,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: subr_lockdebug.c,v 1.62 2018/03/16 04:44:51 ozaki-r Exp $");
+__KERNEL_RCSID(0, "$NetBSD: subr_lockdebug.c,v 1.63 2018/03/16 08:21:45 ozaki-r Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_ddb.h"
@@ -863,7 +863,6 @@ lockdebug_show_all_locks_lwp(void (*pr)(
 				ksyms_getname(NULL, &sym,
 				    (vaddr_t)ld->ld_initaddr,
 				    KSYMS_CLOSEST|KSYMS_PROC|KSYMS_ANY);
-				(*pr)("Initialized at %s\n", sym);
 				(*pr)("Lock %d (initialized at %s)\n", i++, sym);
 				lockdebug_dump(ld, pr);
 			}

Reply via email to