svn commit: r205757 - stable/8/sys/net

Bjoern A. Zeeb bz at FreeBSD.org
Sat Mar 27 17:40:29 UTC 2010


Author: bz
Date: Sat Mar 27 17:40:28 2010
New Revision: 205757
URL: http://svn.freebsd.org/changeset/base/205757

Log:
  MFC r204279:
  
    Use the DB_SHOW_ALL_COMMAND() macro to register the formerly 'show ifnets'
    in the db_show_all_table as 'show all ifnets' and with that follow the
    convention for showing complete lists.
  
    Submitted by: thompsa

Modified:
  stable/8/sys/net/if.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)
  stable/8/sys/dev/xen/xenpci/   (props changed)

Modified: stable/8/sys/net/if.c
==============================================================================
--- stable/8/sys/net/if.c	Sat Mar 27 17:39:02 2010	(r205756)
+++ stable/8/sys/net/if.c	Sat Mar 27 17:40:28 2010	(r205757)
@@ -3453,7 +3453,7 @@ DB_SHOW_COMMAND(ifnet, db_show_ifnet)
 	if_show_ifnet((struct ifnet *)addr);
 }
 
-DB_SHOW_COMMAND(ifnets, db_show_ifnets)
+DB_SHOW_ALL_COMMAND(ifnets, db_show_all_ifnets)
 {
 	VNET_ITERATOR_DECL(vnet_iter);
 	struct ifnet *ifp;


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