svn commit: r211542 - stable/8/sys/netinet

Andre Oppermann andre at FreeBSD.org
Sat Aug 21 11:01:40 UTC 2010


Author: andre
Date: Sat Aug 21 11:01:40 2010
New Revision: 211542
URL: http://svn.freebsd.org/changeset/base/211542

Log:
  MFC r211316:
  
    Change the messages of the ICMP bad port bandwidth limiter from
    a kernel printf to a log output with the priority of LOG_NOTICE.

Modified:
  stable/8/sys/netinet/ip_icmp.c

Modified: stable/8/sys/netinet/ip_icmp.c
==============================================================================
--- stable/8/sys/netinet/ip_icmp.c	Sat Aug 21 10:40:44 2010	(r211541)
+++ stable/8/sys/netinet/ip_icmp.c	Sat Aug 21 11:01:40 2010	(r211542)
@@ -42,6 +42,7 @@ __FBSDID("$FreeBSD$");
 #include <sys/time.h>
 #include <sys/kernel.h>
 #include <sys/sysctl.h>
+#include <sys/syslog.h>
 
 #include <net/if.h>
 #include <net/if_types.h>
@@ -975,7 +976,7 @@ badport_bandlim(int which)
 		 * the previous behaviour at the expense of added complexity.
 		 */
 		if (V_icmplim_output && opps > V_icmplim)
-			printf("Limiting %s from %d to %d packets/sec\n",
+			log(LOG_NOTICE, "Limiting %s from %d to %d packets/sec\n",
 				r->type, opps, V_icmplim);
 	}
 	return 0;			/* okay to send packet */


More information about the svn-src-all mailing list