summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjoern A. Zeeb <bz@FreeBSD.org>2016-04-20 21:04:39 +0000
committerBjoern A. Zeeb <bz@FreeBSD.org>2016-04-20 21:04:39 +0000
commit29bda43fa403cfb4be31ef26567f5d032b7c331e (patch)
tree1cfa7355cbf467bab4a05a3997184b665832177d
parent508c21b669cd0384e84553a28a8fb5921c6b2218 (diff)
Notes
-rw-r--r--sys/net/if_debug.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/net/if_debug.c b/sys/net/if_debug.c
index fbcc2b0ae040..ad3b5753b49a 100644
--- a/sys/net/if_debug.c
+++ b/sys/net/if_debug.c
@@ -65,6 +65,9 @@ if_show_ifnet(struct ifnet *ifp)
IF_DB_PRINTF("%d", if_index_reserved);
IF_DB_PRINTF("%p", if_softc);
IF_DB_PRINTF("%p", if_l2com);
+ IF_DB_PRINTF("%p", if_afdata);
+ IF_DB_PRINTF("%d", if_afdata_initialized);
+ IF_DB_PRINTF("%u", if_fib);
IF_DB_PRINTF("%p", if_vnet);
IF_DB_PRINTF("%p", if_home_vnet);
IF_DB_PRINTF("%p", if_vlantrunk);
@@ -87,7 +90,6 @@ if_show_ifnet(struct ifnet *ifp)
IF_DB_PRINTF("%d", if_snd.ifq_drv_maxlen);
IF_DB_PRINTF("%d", if_snd.altq_type);
IF_DB_PRINTF("%x", if_snd.altq_flags);
- IF_DB_PRINTF("%u", if_fib);
#undef IF_DB_PRINTF
}