Module Name: src
Committed By: christos
Date: Fri Dec 9 02:38:14 UTC 2016
Modified Files:
src/sys/net: if.c
Log Message:
This spams 100's of times during boot!
To generate a diff of this commit:
cvs rdiff -u -r1.364 -r1.365 src/sys/net/if.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/net/if.c
diff -u src/sys/net/if.c:1.364 src/sys/net/if.c:1.365
--- src/sys/net/if.c:1.364 Wed Dec 7 20:06:35 2016
+++ src/sys/net/if.c Thu Dec 8 21:38:14 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: if.c,v 1.364 2016/12/08 01:06:35 ozaki-r Exp $ */
+/* $NetBSD: if.c,v 1.365 2016/12/09 02:38:14 christos Exp $ */
/*-
* Copyright (c) 1999, 2000, 2001, 2008 The NetBSD Foundation, Inc.
@@ -90,7 +90,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if.c,v 1.364 2016/12/08 01:06:35 ozaki-r Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if.c,v 1.365 2016/12/09 02:38:14 christos Exp $");
#if defined(_KERNEL_OPT)
#include "opt_inet.h"
@@ -979,11 +979,6 @@ if_deferred_start_softint(void *arg)
struct if_deferred_start *ids = arg;
struct ifnet *ifp = ids->ids_ifp;
-#ifdef DEBUG
- log(LOG_DEBUG, "%s: deferred start on %s\n", __func__,
- ifp->if_xname);
-#endif
-
ids->ids_if_start(ifp);
}