/src/sys/dev/pci/ixgbe/ |
ix_txrx.c | 81 * the stack as LRO can. For all these 1280 * Initialize Hardware RSC (LRO) feature on 82599 1281 * for an RX ring, this is toggled by the LRO capability 1285 * testing has shown soft LRO to be as effective, 1295 /* If turning LRO/RSC off we need to disable it */ 1491 #ifdef LRO 1493 struct lro_ctrl *lro = &rxr->lro; local in function:ixgbe_setup_receive_ring 1494 #endif /* LRO */ 1502 #ifdef LRO 1824 struct lro_ctrl *lro = &rxr->lro; local in function:ixgbe_rxeof [all...] |
ixv.c | 1696 /* Don't enable LRO by default */ 1698 /* NetBSD doesn't support LRO yet */ 2658 #ifdef LRO 2659 struct lro_ctrl *lro = &rxr->lro; local in function:ixv_add_stats_sysctls 2761 #ifdef LRO 2763 CTLFLAG_RD, &lro->lro_queued, 0, 2764 "LRO Queued"); 2766 CTLFLAG_RD, &lro->lro_flushed, 0, 2767 "LRO Flushed") [all...] |
ixgbe.c | 1886 #ifdef LRO 1887 struct lro_ctrl *lro = &rxr->lro; local in function:ixgbe_add_hw_stats 2012 #ifdef LRO 2014 CTLFLAG_RD, &lro->lro_queued, 0, 2015 "LRO Queued"); 2017 CTLFLAG_RD, &lro->lro_flushed, 0, 2018 "LRO Flushed"); 2019 #endif /* LRO */
|
ixgbe.h | 414 #ifdef LRO 415 struct lro_ctrl lro; member in struct:rx_ring 417 #endif /* LRO */
|
/src/sys/dev/pci/cxgb/ |
cxgb_adapter.h | 165 /* Max concurrent LRO sessions per queue set */ 286 SGE_PSTATS_LRO_QUEUED, /* # of LRO appended packets */ 287 SGE_PSTATS_LRO_FLUSHED, /* # of LRO flushed packets */ 288 SGE_PSTATS_LRO_X_STREAMS, /* # of exceeded LRO contexts */ 296 struct lro_state lro; member in struct:sge_qset 532 int ethpad, uint32_t rss_hash, uint32_t rss_csum, int lro);
|
cxgb_sge.c | 2074 q->lro.enabled = lro_default; 2393 int lro = qs->lro.enabled; local in function:process_responses 2500 rss_hash, rss_csum, lro); 2517 t3_lro_flush(adap, qs, &qs->lro);
|
cxgb_common.h | 308 unsigned int lro; /* large receive offload */ member in struct:qset_params
|
/src/sys/dev/pci/ |
if_enavar.h | 289 #ifdef LRO 290 struct lro_ctrl lro; member in struct:ena_ring
|
if_aq.c | 95 #undef CONFIG_LRO_SUPPORT /* no LRO not supported */ 3143 uint32_t lro = ((ifp->if_capenable & IFCAP_LRO) == 0) ? local in function:aq_set_capability 3171 * the LRO timebase divider is 5 uS (0x61a), 3187 AQ_WRITE_REG(sc, RPO_LRO_ENABLE_REG, lro);
|