HomeSort by: relevance | last modified time | path
    Searched defs:use_tso (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/netinet/
tcp_output.c 528 int has_tso, use_tso; local in function:tcp_output
637 use_tso = has_tso;
640 use_tso = 0;
654 use_tso = 0;
890 if (use_tso) {
901 use_tso = 0;
908 use_tso = 0;
1220 if (!use_tso && len > txsegsize)
1222 else if (use_tso && len > IP_MAXPACKET)
1428 if (use_tso) {
    [all...]
  /src/sys/dev/pci/
if_bge.c 5176 int use_tso, maxsegsize, error; local in function:bge_encap
5231 use_tso = (m_head->m_pkthdr.csum_flags & M_CSUM_TSOv4) != 0;
5232 if (!use_tso) {
5414 if (sizeof(bus_addr_t) > 4 && dma->is_dma32 == false && use_tso && (
5439 if (use_tso) {
if_wm.c 8942 int error, nexttx, lasttx = -1, ofree, seg, segs_needed, use_tso; local in function:wm_send_common_locked
9011 use_tso = (m0->m_pkthdr.csum_flags &
9024 (use_tso && (m0->m_pkthdr.segsz << 2) < WTX_MAX_LEN)
9068 if (use_tso) {
9170 if (use_tso && seg == dmamap->dm_nsegs - 1 &&

Completed in 98 milliseconds