Searched refs:tso (Results 1 - 12 of 12) sorted by relevance

/freebsd-10.0-release/tools/tools/netrate/tcpp/
H A Drunit.pl26 print OUTFILE "kernel,tso,lro,mtu,cores,trial,";
37 my ($kernel, $tso, $lro, $mtu) = @_;
39 $prefix = "$kernel,$tso,$lro,$mtu";
42 system("ssh root\@hydra1 ifconfig cxgb0 $tso $lro mtu $mtu");
44 system("ssh root\@hydra2 ifconfig cxgb0 $tso $lro mtu $mtu");
54 @tso_options = ("tso", "-tso");
58 foreach $tso (@tso_options) {
61 test($kernel, $tso, $lro, $mtu);
/freebsd-10.0-release/sys/dev/sfxge/
H A Dsfxge_tx.c723 static inline const struct ip *tso_iph(const struct sfxge_tso_state *tso) argument
725 KASSERT(tso->protocol == htons(ETHERTYPE_IP),
727 return (const struct ip *)(tso->mbuf->m_data + tso->nh_off);
729 static inline const struct ip6_hdr *tso_ip6h(const struct sfxge_tso_state *tso) argument
731 KASSERT(tso->protocol == htons(ETHERTYPE_IPV6),
733 return (const struct ip6_hdr *)(tso->mbuf->m_data + tso->nh_off);
735 static inline const struct tcphdr *tso_tcph(const struct sfxge_tso_state *tso) argument
737 return (const struct tcphdr *)(tso
789 tso_start(struct sfxge_tso_state *tso, struct mbuf *mbuf) argument
840 tso_fill_packet_with_fragment(struct sfxge_txq *txq, struct sfxge_tso_state *tso) argument
882 tso_start_new_packet(struct sfxge_txq *txq, struct sfxge_tso_state *tso, unsigned int id) argument
980 struct sfxge_tso_state tso; local
[all...]
/freebsd-10.0-release/tools/tools/net80211/scripts/
H A Dsetup.wdsrelay27 ifconfig $WLAN_STA -tso -ampdu
/freebsd-10.0-release/usr.bin/script/
H A Dscript.c422 struct timespec tsi, tso; local
452 tso.tv_sec = stamp.scr_sec;
453 tso.tv_nsec = stamp.scr_usec * 1000;
460 tsi = tso;
474 tsi.tv_sec = tso.tv_sec - tsi.tv_sec;
475 tsi.tv_nsec = tso.tv_nsec - tsi.tv_nsec;
482 tsi = tso;
/freebsd-10.0-release/sys/netinet/
H A Dtcp_output.c100 SYSCTL_VNET_INT(_net_inet_tcp, OID_AUTO, tso, CTLFLAG_RW,
129 long len, int tso);
137 struct tcpopt *to, long len, int tso)
146 hhook_data.tso = tso;
186 int tso, mtu; local
231 tso = 0;
500 tso = 1;
770 if (tso) {
810 tso
136 hhook_run_tcp_est_out(struct tcpcb *tp, struct tcphdr *th, struct tcpopt *to, long len, int tso) argument
[all...]
H A Dtcp_var.h211 u_int t_tsomax; /* tso burst length limit */
549 int tso; member in struct:tcp_hhook_data
/freebsd-10.0-release/sys/netinet/khelp/
H A Dh_ertt.c284 * using tso or not. However, if the interface
287 * is not reason to be using tso, and it should
398 * from tso bulk transmission, so we
439 int tso; local
450 tso = thdp->tso;
461 if (tso)
/freebsd-10.0-release/sys/netinet6/
H A Dip6_output.c252 int sw_csum, tso; local
960 tso = ((sw_csum & ifp->if_hwassist & CSUM_TSO) != 0) ? 1 : 0;
963 tso = 0;
983 if ((opt && (opt->ip6po_flags & IP6PO_DONTFRAG)) || tso)
992 if (dontfrag && tlen > IN6_LINKMTU(ifp) && !tso) { /* case 2-b */
/freebsd-10.0-release/sys/dev/sio/
H A Dsio.c1456 int error, i, tso; local
1458 for (i = 1, tso = siotso; i < tso; i++) {
1466 if (i == tso - 1)
/freebsd-10.0-release/sys/pc98/cbus/
H A Dsio.c2235 int error, i, tso; local
2237 for (i = 1, tso = siotso; i < tso; i++) {
2245 if (i == tso - 1)
/freebsd-10.0-release/sys/dev/msk/
H A Dif_msk.c2646 int error, i, nseg, tso; local
2780 tso = 0;
2801 tso++;
2819 if (tso == 0 && (m->m_pkthdr.csum_flags & MSK_CSUM_FEATURES) != 0) {
2857 if (tso == 0)
/freebsd-10.0-release/sys/dev/mxge/
H A Dif_mxge.c1777 int tso = m->m_pkthdr.csum_flags & (CSUM_TSO); local
1805 if (!tso)
1830 if (!tso)

Completed in 162 milliseconds