Searched defs:copy_thresh (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/uts/common/io/igb/
H A Digb_tx.c122 uint32_t copy_thresh; local
124 copy_thresh = igb->tx_copy_thresh;
242 if (copy_thresh < hdr_len)
243 copy_thresh = hdr_len;
261 current_flag = (current_len <= copy_thresh) ?
297 current_flag = (current_len <= copy_thresh) ?
345 next_flag = (next_len > copy_thresh) ?
348 } else if (next_len > copy_thresh) {
372 next_flag = (next_len > copy_thresh) ?
/illumos-gate/usr/src/uts/common/io/ixgbe/
H A Dixgbe_tx.c99 uint32_t copy_thresh; local
115 copy_thresh = ixgbe->tx_copy_thresh;
241 if (copy_thresh < hdr_len)
242 copy_thresh = hdr_len;
250 current_flag = (current_len <= copy_thresh) ?
286 current_flag = (current_len <= copy_thresh) ?
334 next_flag = (next_len > copy_thresh) ?
337 } else if (next_len > copy_thresh) {
361 next_flag = (next_len > copy_thresh) ?

Completed in 67 milliseconds