Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 30 Oct 2010 16:02:16 +0000 (UTC)
From:      "Bjoern A. Zeeb" <bz@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org
Subject:   svn commit: r214557 - in stable/7/sys: conf netinet
Message-ID:  <201010301602.o9UG2Got004030@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201010301602.o9UG2Got004030>