Home
last modified time | relevance | path

Searched refs:bcopy_thresh (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/uts/common/io/hxge/
H A Dhxge_send.c112 uint32_t bcopy_thresh; in hxge_start() local
266 bcopy_thresh = (hxge_bcopy_thresh - TX_PKT_HEADER_SIZE); in hxge_start()
268 bcopy_thresh = (TX_BCOPY_SIZE - TX_PKT_HEADER_SIZE); in hxge_start()
313 (len >= bcopy_thresh))) { in hxge_start()
315 bcopy_thresh += TX_PKT_HEADER_SIZE; in hxge_start()
344 if (len < bcopy_thresh) { in hxge_start()
352 if ((pack_len <= bcopy_thresh) && in hxge_start()
366 } else if (pack_len > bcopy_thresh && in hxge_start()
370 bcopy_thresh = hxge_bcopy_thresh; in hxge_start()
375 bcopy_thresh, pkt_len, pack_len)); in hxge_start()
/illumos-gate/usr/src/uts/common/io/nxge/
H A Dnxge_send.c161 uint32_t bcopy_thresh; in nxge_start() local
430 bcopy_thresh = (nxge_bcopy_thresh - TX_PKT_HEADER_SIZE); in nxge_start()
432 bcopy_thresh = (TX_BCOPY_SIZE - TX_PKT_HEADER_SIZE); in nxge_start()
489 (len >= bcopy_thresh))) { in nxge_start()
491 bcopy_thresh += TX_PKT_HEADER_SIZE; in nxge_start()
522 if (len < bcopy_thresh) { in nxge_start()
531 if ((pack_len <= bcopy_thresh) && in nxge_start()
545 } else if (pack_len > bcopy_thresh && in nxge_start()
549 bcopy_thresh = nxge_bcopy_thresh; in nxge_start()
554 bcopy_thresh, in nxge_start()
/illumos-gate/usr/src/uts/common/io/e1000g/
H A De1000g_tx.c167 uint32_t bcopy_thresh; in e1000g_send() local
179 bcopy_thresh = Adapter->tx_bcopy_thresh; in e1000g_send()
321 if (bcopy_thresh < cur_context.hdr_len) in e1000g_send()
322 bcopy_thresh = cur_context.hdr_len; in e1000g_send()
370 if ((len <= bcopy_thresh) || tx_undersize_flag) { in e1000g_send()