Symbol: HW_LSO
usr/src/uts/common/inet/tcp/tcp_output.c
2216
lso_info_set(mp, mss, HW_LSO);
usr/src/uts/common/io/bnxe/bnxe_tx.c
682
lso = DB_LSOFLAGS(pMblk) & HW_LSO;
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
2455
if (flags & HW_LSO)
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
2483
if (n >= TX_SGL_SEGS || ((flags & HW_LSO) && MBLKL(m) < 50)) {
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
2750
can_coalesce = (txinfo->flags & HW_LSO) == 0 &&
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
2799
can_coalesce = (txinfo->flags & HW_LSO) == 0 &&
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
2907
const boolean_t needs_l3_csum = ((tx_flags & HW_LSO) != 0 || (tx_flags &
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
2909
const boolean_t needs_l4_csum = (tx_flags & HW_LSO) != 0 ||
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
3020
if (txinfo->flags & HW_LSO) {
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
3056
if (txinfo->flags & HW_LSO &&
usr/src/uts/common/io/e1000g/e1000g_tx.c
491
if (lsoflags & HW_LSO) {
usr/src/uts/common/io/fibre-channel/fca/oce/oce_tx.c
805
if (flags & HW_LSO) {
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
5404
use_lso = (lso_flags == HW_LSO);
usr/src/uts/common/io/i40e/i40e_transceiver.c
1771
if (lsoflags & HW_LSO) {
usr/src/uts/common/io/ib/clients/eoib/eib_data.c
558
if ((lsoflags & HW_LSO) == HW_LSO)
usr/src/uts/common/io/ib/clients/ibd/ibd.c
7365
if ((lsoflags & HW_LSO) != HW_LSO) {
usr/src/uts/common/io/igb/igb_tx.c
617
ctx->lso_flag = (lso_flag == HW_LSO);
usr/src/uts/common/io/igc/igc_ring.c
1515
if ((tx->itx_lso & HW_LSO) != 0 ||
usr/src/uts/common/io/igc/igc_ring.c
1526
if ((tx->itx_lso & HW_LSO) != 0 ||
usr/src/uts/common/io/igc/igc_ring.c
1540
if ((tx->itx_lso & HW_LSO) != 0) {
usr/src/uts/common/io/igc/igc_ring.c
1596
if ((tx->itx_lso & HW_LSO) != 0) {
usr/src/uts/common/io/igc/igc_ring.c
1648
if ((tx->itx_lso & HW_LSO) != 0) {
usr/src/uts/common/io/ixgbe/ixgbe_tx.c
599
ctx->lso_flag = (lsoflags == HW_LSO);
usr/src/uts/common/io/mac/mac_client.c
3602
(DB_CKSUMFLAGS(mp_chain) & HW_LSO) == 0) {
usr/src/uts/common/io/mac/mac_client.c
3692
if (needed & HW_LSO)
usr/src/uts/common/io/mac/mac_ktest.c
414
hck_flags |= HW_LSO;
usr/src/uts/common/io/mac/mac_provider.c
149
flags |= HW_LSO;
usr/src/uts/common/io/mac/mac_provider.c
1674
*flags = DB_CKSUMFLAGS(mp) & HW_LSO;
usr/src/uts/common/io/mac/mac_util.c
1055
DB_CKSUMFLAGS(nhdrmp) = (uint16_t)(ocsum_flags & ~HW_LSO);
usr/src/uts/common/io/mac/mac_util.c
1124
DB_CKSUMFLAGS(nhdrmp) = (uint16_t)(ocsum_flags & ~HW_LSO);
usr/src/uts/common/io/mac/mac_util.c
1250
if ((flags & HW_LSO) && (emul & MAC_LSO_EMUL)) {
usr/src/uts/common/io/mac/mac_util.c
693
ASSERT3U((DB_CKSUMFLAGS(omp) & HW_LSO), !=, 0);
usr/src/uts/common/io/mac/mac_util.c
899
DB_CKSUMFLAGS(ndatamp) &= ~HW_LSO;
usr/src/uts/common/io/mac/mac_util.c
960
DB_CKSUMFLAGS(nhdrmp) = (uint16_t)(ocsum_flags & ~HW_LSO);
usr/src/uts/common/io/myri10ge/drv/myri10ge.c
2915
if (tx_offload_flags & HW_LSO)
usr/src/uts/common/io/myri10ge/drv/myri10ge.c
3350
if (tx_offload_flags & HW_LSO) {
usr/src/uts/common/io/nxge/nxge_send.c
1202
*flags = DB_CKSUMFLAGS(mp) & HW_LSO;
usr/src/uts/common/io/nxge/nxge_send.c
1743
if (lsoflags & HW_LSO) {
usr/src/uts/common/io/qede/qede_fp.c
898
*use_lso = (lso_flags == HW_LSO);
usr/src/uts/common/io/sfxge/sfxge_tx.c
1590
if ((DB_LSOFLAGS(mp) & HW_LSO) == 0) {
usr/src/uts/common/io/sfxge/sfxge_tx.c
2787
if (DB_LSOFLAGS(mp) & HW_LSO) {
usr/src/uts/common/io/sfxge/sfxge_tx.c
2937
ASSERT(mss == 0 || (DB_LSOFLAGS(mp) & HW_LSO));
usr/src/uts/common/io/vioif/vioif.c
1253
lso_required = (lso_flags & HW_LSO) != 0;
usr/src/uts/common/io/xge/drv/xgell.c
1164
if (lsoflags & HW_LSO) {
usr/src/uts/common/sys/pattr.h
109
#define HW_LSO_FLAGS HW_LSO /* All LSO flags, currently only one */
usr/src/uts/common/xen/io/xnf.c
1855
ASSERT3U(lso_flags, ==, HW_LSO);
usr/src/uts/intel/io/viona/viona_rx.c
544
if ((DB_CKSUMFLAGS(mp) & HW_LSO) != 0) {
usr/src/uts/intel/io/viona/viona_tx.c
468
lso_info_set(mp, gso_size, HW_LSO);
usr/src/uts/intel/io/viona/viona_tx.c
478
viona_tx_hcksum_full(mp, hdr, meoi, HW_LSO);
usr/src/uts/intel/io/viona/viona_tx.c
530
viona_tx_hcksum_partial(mp, hdr, meoi, HW_LSO | v4csum);
usr/src/uts/intel/io/vmxnet3s/vmxnet3_tx.c
100
if (lso_flag & HW_LSO) {