From 05463bb58d35a7331577f6e1d1262c0242e2c63c Mon Sep 17 00:00:00 2001 From: David Greenman Date: Fri, 14 Dec 2001 04:41:07 +0000 Subject: [PATCH] Moved the updating of if_ibytes from ether_demux() to ether_input() to fix a bug where the interface input bytes count wasn't updated when bridging is enabled. MFC after: 3 days --- sys/net/if_ethersubr.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/net/if_ethersubr.c b/sys/net/if_ethersubr.c index 7b2b3653db3e..ceac9c1f2c6a 100644 --- a/sys/net/if_ethersubr.c +++ b/sys/net/if_ethersubr.c @@ -421,6 +421,8 @@ ether_input(ifp, eh, m) bpf_mtap(ifp, (struct mbuf *)&mh); } + ifp->if_ibytes += m->m_pkthdr.len + sizeof (*eh); + /* Handle ng_ether(4) processing, if any */ if (ng_ether_input_p != NULL) { (*ng_ether_input_p)(ifp, &m, eh); @@ -506,7 +508,6 @@ ether_demux(ifp, eh, m) m_freem(m); return; } - ifp->if_ibytes += m->m_pkthdr.len + sizeof (*eh); if (eh->ether_dhost[0] & 1) { if (bcmp((caddr_t)etherbroadcastaddr, (caddr_t)eh->ether_dhost, sizeof(etherbroadcastaddr)) == 0)