Home
last modified time | relevance | path

Searched refs:hw_features (Results 1 – 10 of 10) sorted by relevance

/f-stack/dpdk/drivers/net/ionic/
H A Dionic_lif.c1276 if (lif->hw_features & IONIC_ETH_HW_RX_HASH) in ionic_lif_set_features()
1278 if (lif->hw_features & IONIC_ETH_HW_TX_SG) in ionic_lif_set_features()
1280 if (lif->hw_features & IONIC_ETH_HW_RX_SG) in ionic_lif_set_features()
1282 if (lif->hw_features & IONIC_ETH_HW_TX_CSUM) in ionic_lif_set_features()
1284 if (lif->hw_features & IONIC_ETH_HW_RX_CSUM) in ionic_lif_set_features()
1286 if (lif->hw_features & IONIC_ETH_HW_TSO) in ionic_lif_set_features()
1288 if (lif->hw_features & IONIC_ETH_HW_TSO_IPV6) in ionic_lif_set_features()
1290 if (lif->hw_features & IONIC_ETH_HW_TSO_ECN) in ionic_lif_set_features()
1292 if (lif->hw_features & IONIC_ETH_HW_TSO_GRE) in ionic_lif_set_features()
1296 if (lif->hw_features & IONIC_ETH_HW_TSO_IPXIP4) in ionic_lif_set_features()
[all …]
H A Dionic_lif.h104 uint32_t hw_features; member
/f-stack/freebsd/crypto/ccp/
H A Dccp.c198 if ((sc->hw_features & VERSION_CAP_TRNG) != 0) in ccp_attach()
217 if (g_ccp_softc == sc && (sc->hw_features & VERSION_CAP_TRNG) != 0) in ccp_detach()
315 if ((sc->hw_features & VERSION_CAP_SHA) == 0) in ccp_auth_supported()
336 if ((sc->hw_features & VERSION_CAP_AES) == 0) in ccp_cipher_supported()
383 if ((sc->hw_features & VERSION_CAP_AES) == 0) in ccp_probesession()
731 db_printf(" hw_features: %b\n", (int)sc->hw_features, in db_show_ccp_sc()
H A Dccp.h153 uint16_t hw_features; member
H A Dccp_hardware.c793 sc->hw_features = version & VERSION_CAP_MASK; in ccp_hw_attach()
/f-stack/lib/
H A Dff_memory.h64 struct ff_hw_features hw_features; member
H A Dff_veth.c605 if (cfg->hw_features.rx_csum) { in ff_veth_setup_interface()
608 if (cfg->hw_features.tx_csum_ip) { in ff_veth_setup_interface()
612 if (cfg->hw_features.tx_csum_l4) { in ff_veth_setup_interface()
615 if (cfg->hw_features.tx_tso) { in ff_veth_setup_interface()
H A Dff_config.h62 struct ff_hw_features hw_features; member
H A Dff_dpdk_if.c165 ctx->hw_features = cfg->hw_features; in ff_dpdk_register_if()
668 pconf->hw_features.rx_lro = 1; in init_port_start()
678 pconf->hw_features.rx_csum = 1; in init_port_start()
685 pconf->hw_features.tx_csum_ip = 1; in init_port_start()
692 pconf->hw_features.tx_csum_l4 = 1; in init_port_start()
702 pconf->hw_features.tx_tso = 1; in init_port_start()
1119 uint8_t rx_csum = ctx->hw_features.rx_csum; in ff_veth_input()
1768 if (ctx->hw_features.tx_csum_l4) {
H A Dff_memory.c331 if (ctx->hw_features.tx_csum_l4) { in ff_offload_set()