Module Name:    src
Committed By:   joerg
Date:           Fri Oct 16 21:23:08 UTC 2009

Modified Files:
        src/sys/dev/dm: device-mapper.c

Log Message:
Don't spam the console with debug messages.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/sys/dev/dm/device-mapper.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/dev/dm/device-mapper.c
diff -u src/sys/dev/dm/device-mapper.c:1.8 src/sys/dev/dm/device-mapper.c:1.9
--- src/sys/dev/dm/device-mapper.c:1.8	Sat Jun 27 16:10:25 2009
+++ src/sys/dev/dm/device-mapper.c	Fri Oct 16 21:23:08 2009
@@ -1,4 +1,4 @@
-/*        $NetBSD: device-mapper.c,v 1.8 2009/06/27 16:10:25 jakllsch Exp $ */
+/*        $NetBSD: device-mapper.c,v 1.9 2009/10/16 21:23:08 joerg Exp $ */
 
 /*
  * Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -316,7 +316,7 @@
 		if ((dmv = dm_dev_lookup(NULL, NULL, minor(dev))) == NULL)
 			return ENOENT;
 			
-		aprint_normal("DIOCGWEDGEINFO ioctl called\n");
+		aprint_debug("DIOCGWEDGEINFO ioctl called\n");
 		
 		strlcpy(dkw->dkw_devname, dmv->name, 16);
 		strlcpy(dkw->dkw_wname, dmv->name, DM_NAME_LEN);

Reply via email to