Home
last modified time | relevance | path

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

/titanic_41/usr/src/uts/common/io/hxge/
H A Dhxge_send.c112 uint32_t bcopy_thresh; in hxge_start() local
270 bcopy_thresh = (hxge_bcopy_thresh - TX_PKT_HEADER_SIZE); in hxge_start()
272 bcopy_thresh = (TX_BCOPY_SIZE - TX_PKT_HEADER_SIZE); in hxge_start()
321 (len >= bcopy_thresh))) { in hxge_start()
323 bcopy_thresh += TX_PKT_HEADER_SIZE; in hxge_start()
352 if (len < bcopy_thresh) { in hxge_start()
360 if ((pack_len <= bcopy_thresh) && in hxge_start()
374 } else if (pack_len > bcopy_thresh && in hxge_start()
378 bcopy_thresh = hxge_bcopy_thresh; in hxge_start()
383 bcopy_thresh, pkt_len, pack_len)); in hxge_start()
/titanic_41/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()
493 (len >= bcopy_thresh))) { in nxge_start()
495 bcopy_thresh += TX_PKT_HEADER_SIZE; in nxge_start()
526 if (len < bcopy_thresh) { in nxge_start()
535 if ((pack_len <= bcopy_thresh) && in nxge_start()
549 } else if (pack_len > bcopy_thresh && in nxge_start()
553 bcopy_thresh = nxge_bcopy_thresh; in nxge_start()
558 bcopy_thresh, in nxge_start()
/titanic_41/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()