svn commit: r214557 - in stable/7/sys: conf netinet

Bjoern A. Zeeb bz at FreeBSD.org
Sat Oct 30 16:02:16 UTC 2010


Author: bz
Date: Sat Oct 30 16:02:16 2010
New Revision: 214557
URL: http://svn.freebsd.org/changeset/base/214557

Log:
  MFC r214303:
  
    Add initial inet DDB support for show in_ifaddr and show sin commands which
    proved to be useful while debugging address list problems.

Added:
  stable/7/sys/netinet/in_debug.c
     - copied, changed from r214303, head/sys/netinet/in_debug.c
Modified:
  stable/7/sys/conf/files
Directory Properties:
  stable/7/sys/   (props changed)
  stable/7/sys/cddl/contrib/opensolaris/   (props changed)
  stable/7/sys/contrib/dev/acpica/   (props changed)
  stable/7/sys/contrib/pf/   (props changed)

Modified: stable/7/sys/conf/files
==============================================================================
--- stable/7/sys/conf/files	Sat Oct 30 14:08:26 2010	(r214556)
+++ stable/7/sys/conf/files	Sat Oct 30 16:02:16 2010	(r214557)
@@ -1954,6 +1954,7 @@ netinet/if_atm.c		optional atm
 netinet/if_ether.c		optional ether
 netinet/igmp.c			optional inet
 netinet/in.c			optional inet
+netinet/in_debug.c		optional inet ddb
 netinet/ip_carp.c		optional carp
 netinet/in_gif.c		optional gif inet
 netinet/ip_gre.c		optional gre inet

Copied and modified: stable/7/sys/netinet/in_debug.c (from r214303, head/sys/netinet/in_debug.c)
==============================================================================
--- head/sys/netinet/in_debug.c	Sun Oct 24 22:02:36 2010	(r214303, copy source)
+++ stable/7/sys/netinet/in_debug.c	Sat Oct 30 16:02:16 2010	(r214557)
@@ -30,6 +30,7 @@ __FBSDID("$FreeBSD$");
 #include "opt_ddb.h"
 
 #include <sys/param.h>
+#include <sys/kernel.h>
 #include <sys/systm.h>
 #include <sys/socket.h>
 


More information about the svn-src-stable-7 mailing list