Module Name:    src
Committed By:   jdolecek
Date:           Sun Apr  5 14:20:18 UTC 2020

Modified Files:
        src/sys/arch/xen/xen: if_xennet_xenbus.c

Log Message:
no need to pollute dmesg by xennet_watchdog(), turn the message into DPRINTFN()


To generate a diff of this commit:
cvs rdiff -u -r1.97 -r1.98 src/sys/arch/xen/xen/if_xennet_xenbus.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/arch/xen/xen/if_xennet_xenbus.c
diff -u src/sys/arch/xen/xen/if_xennet_xenbus.c:1.97 src/sys/arch/xen/xen/if_xennet_xenbus.c:1.98
--- src/sys/arch/xen/xen/if_xennet_xenbus.c:1.97	Fri Mar 27 18:37:30 2020
+++ src/sys/arch/xen/xen/if_xennet_xenbus.c	Sun Apr  5 14:20:18 2020
@@ -1,4 +1,4 @@
-/*      $NetBSD: if_xennet_xenbus.c,v 1.97 2020/03/27 18:37:30 jdolecek Exp $      */
+/*      $NetBSD: if_xennet_xenbus.c,v 1.98 2020/04/05 14:20:18 jdolecek Exp $      */
 
 /*
  * Copyright (c) 2006 Manuel Bouyer.
@@ -81,7 +81,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_xennet_xenbus.c,v 1.97 2020/03/27 18:37:30 jdolecek Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_xennet_xenbus.c,v 1.98 2020/04/05 14:20:18 jdolecek Exp $");
 
 #include "opt_xen.h"
 #include "opt_nfs_boot.h"
@@ -1340,7 +1340,7 @@ xennet_ioctl(struct ifnet *ifp, u_long c
 void
 xennet_watchdog(struct ifnet *ifp)
 {
-	aprint_verbose_ifnet(ifp, "xennet_watchdog\n");
+	DPRINTFN(XEDB_FOLLOW, ("%s: xennet_watchdog\n", ifp->if_xname));
 }
 
 int

Reply via email to