# HG changeset patch # Parent 3643a715ad83f1ecfa487be987820cef9bfe09ae Let the TOE driver's rcvd kick its own tx if if wants to, rather than always calling it via tcp_output. This is a minor optimization. diff -r 3643a715ad83 -r 32d8db4369a5 sys/netinet/tcp_usrreq.c --- a/sys/netinet/tcp_usrreq.c Thu Aug 23 14:53:36 2012 -0700 +++ b/sys/netinet/tcp_usrreq.c Fri Aug 24 16:24:40 2012 -0700 @@ -769,6 +769,7 @@ #ifdef TCP_OFFLOAD if (tp->t_flags & TF_TOE) tcp_offload_rcvd(tp); + else #endif tcp_output(tp);