From c58873dc9abc56028cc3435f692fd3583bd143af Mon Sep 17 00:00:00 2001 From: Luiz Otavio O Souza Date: Mon, 26 Oct 2015 13:03:40 -0500 Subject: Replace the fastforward path with tryforward which does not require a sysctl and will always be on. The former split between default and fast forwarding is removed by this commit while preserving the ability to use all network stack features. TAG: tryforward Differential Revision: https://reviews.freebsd.org/D3737 --- sys/net/if_fddisubr.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'sys/net/if_fddisubr.c') diff --git a/sys/net/if_fddisubr.c b/sys/net/if_fddisubr.c index 4f54dcb..271f72c 100644 --- a/sys/net/if_fddisubr.c +++ b/sys/net/if_fddisubr.c @@ -501,8 +501,6 @@ fddi_input(ifp, m) switch (type) { #ifdef INET case ETHERTYPE_IP: - if ((m = ip_fastforward(m)) == NULL) - return; isr = NETISR_IP; break; -- cgit v1.1