From 03fdc2934eb61c44c049a02b02aa974cfdd8a0eb Mon Sep 17 00:00:00 2001 From: glebius Date: Fri, 21 Mar 2014 15:15:30 +0000 Subject: Merge r262763, r262767, r262771, r262806 from head: - Remove rt_metrics_lite and simply put its members into rtentry. - Use counter(9) for rt_pksent (former rt_rmx.rmx_pksent). This removes another cache trashing ++ from packet forwarding path. - Create zini/fini methods for the rtentry UMA zone. Via initialize mutex and counter in them. - Fix reporting of rmx_pksent to routing socket. - Fix netstat(1) to report "Use" both in kvm(3) and sysctl(3) mode. --- sys/netipx/ipx_outputfl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/netipx/ipx_outputfl.c') diff --git a/sys/netipx/ipx_outputfl.c b/sys/netipx/ipx_outputfl.c index 25bbedf..550eeb2 100644 --- a/sys/netipx/ipx_outputfl.c +++ b/sys/netipx/ipx_outputfl.c @@ -129,7 +129,7 @@ ipx_outputfl(struct mbuf *m0, struct route *ro, int flags) error = ENETUNREACH; goto bad; } - ro->ro_rt->rt_use++; + counter_u64_add(ro->ro_rt->rt_pksent, 1); if (ro->ro_rt->rt_flags & (RTF_GATEWAY|RTF_HOST)) dst = (struct sockaddr_ipx *)ro->ro_rt->rt_gateway; gotif: -- cgit v1.1