From 9230257046fe167d13c0b04d1076fb5b12c3a143 Mon Sep 17 00:00:00 2001 From: christos Date: Fri, 9 Dec 2016 02:38:14 +0000 Subject: [PATCH] This spams 100's of times during boot! --- sys/net/if.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/sys/net/if.c b/sys/net/if.c index e5287527bcab..e604ecb5f50f 100644 --- a/sys/net/if.c +++ b/sys/net/if.c @@ -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 -__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); }