Home
last modified time | relevance | path

Searched refs:ETH (Results 1 – 20 of 20) sorted by relevance

/f-stack/dpdk/drivers/net/failsafe/
H A Dfailsafe_rxtx.c16 return (ETH(sdev) == NULL) || in fs_rx_unsafe()
17 (ETH(sdev)->rx_pkt_burst == NULL) || in fs_rx_unsafe()
26 (ETH(sdev) == NULL) || in fs_tx_unsafe()
27 (ETH(sdev)->tx_pkt_burst == NULL) || in fs_tx_unsafe()
97 sub_rxq = ETH(sdev)->data->rx_queues[rxq->qid]; in failsafe_rx_burst()
99 nb_rx = ETH(sdev)-> in failsafe_rx_burst()
125 sub_rxq = ETH(sdev)->data->rx_queues[rxq->qid]; in failsafe_rx_burst_fast()
127 nb_rx = ETH(sdev)-> in failsafe_rx_burst_fast()
153 sub_txq = ETH(sdev)->data->tx_queues[txq->qid]; in failsafe_tx_burst()
155 nb_tx = ETH(sdev)->tx_pkt_burst(sub_txq, tx_pkts, nb_pkts); in failsafe_tx_burst()
[all …]
H A Dfailsafe_intr.c277 if (sdev == NULL || (ETH(sdev) == NULL) || in failsafe_eth_rx_intr_ctl_subdevice()
282 dev = ETH(sdev); in failsafe_eth_rx_intr_ctl_subdevice()
330 &ETH(sdev)->data->dev_conf.intr_conf; in failsafe_rx_intr_install_subdevice()
340 for (qid = 0; qid < ETH(sdev)->data->nb_rx_queues; qid++) { in failsafe_rx_intr_install_subdevice()
371 for (qid = 0; qid < ETH(sdev)->data->nb_rx_queues; qid++) { in failsafe_rx_intr_uninstall_subdevice()
H A Dfailsafe_ops.c38 rmv_interrupt = ETH(sdev)->data->dev_flags & in fs_dev_configure()
48 (ETH(sdev)->data->dev_flags & in fs_dev_configure()
265 uint16_t port_id = ETH(sdev)->data->port_id; in fs_rx_queue_stop()
291 uint16_t port_id = ETH(sdev)->data->port_id; in fs_rx_queue_start()
318 uint16_t port_id = ETH(sdev)->data->port_id; in fs_tx_queue_stop()
376 if (ETH(sdev)->data->rx_queues != NULL && in fs_rx_queue_release()
379 (ETH(sdev)->data->rx_queues[rxq->qid]); in fs_rx_queue_release()
558 if (ETH(sdev)->data->tx_queues != NULL && in fs_tx_queue_release()
561 (ETH(sdev)->data->tx_queues[txq->qid]); in fs_tx_queue_release()
855 l2 = &ETH(TX_SUBDEV(dev))->data->dev_link; in fs_link_update()
[all …]
H A Dfailsafe_ether.c83 edev = ETH(sdev); in fs_eth_dev_conf_apply()
305 rte_eth_dev_release_port(ETH(sdev)); in fs_dev_remove()
348 for (i = 0; i < ETH(sdev)->data->nb_rx_queues; i++) in fs_rxtx_clean()
351 for (i = 0; i < ETH(sdev)->data->nb_tx_queues; i++) in fs_rxtx_clean()
H A Dfailsafe_private.h268 #define ETH(sdev) \ macro
316 (ETH(s)->dev_ops->ops)
H A Dfailsafe_eal.c120 sdev->dev = ETH(sdev)->device; in fs_bus_init()
H A Dfailsafe.c250 &ETH(sdev)->data->mac_addrs[0], mac); in fs_eth_dev_create()
/f-stack/freebsd/contrib/device-tree/src/powerpc/
H A Dstorcenter.dts131 /* IDSEL 15 - ETH */
H A DkuroboxHD.dts129 /* IDSEL 11 - IRQ0 ETH */
H A DkuroboxHG.dts129 /* IDSEL 11 - IRQ0 ETH */
/f-stack/dpdk/doc/guides/testpmd_app_ug/
H A Dtestpmd_funcs.rst4173 0 0 0 i- ETH IPV4 => QUEUE
4174 1 0 0 i- ETH IPV6 => QUEUE
4175 2 0 5 i- ETH IPV4 UDP => RSS
4182 0 0 0 i- ETH => COUNT
4187 3 24 20 i- ETH IPV4 => DROP
4196 0 0 0 i- ETH => COUNT
4509 0 0 0 i- ETH IPV4 UDP VXLAN ETH => QUEUE
4510 1 0 0 i- ETH IPV4 UDP VXLAN ETH => QUEUE
4511 2 0 0 i- ETH IPV4 UDP VXLAN ETH VLAN => QUEUE
4512 3 0 0 i- ETH IPV4 UDP VXLAN ETH VLAN => QUEUE
[all …]
/f-stack/dpdk/doc/guides/sample_app_ug/
H A Dflow_filtering.rst398 * set the first level of the pattern (ETH).
462 Setting the first level of the pattern ETH:
/f-stack/dpdk/drivers/net/iavf/
H A Diavf_fdir.c502 VIRTCHNL_SET_PROTO_HDR_TYPE(hdr, ETH); in iavf_fdir_parse_pattern()
541 VIRTCHNL_ADD_PROTO_HDR_FIELD_BIT(hdr, ETH, ETHERTYPE); in iavf_fdir_parse_pattern()
/f-stack/dpdk/doc/guides/nics/
H A Dmvpp2.rst377 * ETH
431 …| ETH (destination MAC) / VLAN (VID) | 6 + 2 = 8 |…
508 * ETH: ethertype
H A Dsfc_efx.rst153 - ETH (exact match of source/destination addresses, individual/group match
201 - ETH
H A Dmlx5.rst130 …th any VLAN specification will match only single-tagged packets unless the ETH item ``type`` field…
1212 LINK_TYPE_P1 ETH(2)
1213 LINK_TYPE_P2 ETH(2)
H A Denic.rst254 stripping is enabled, EtherType in the ETH item corresponds to the
/f-stack/dpdk/lib/librte_ethdev/
H A Drte_flow.c53 MK_FLOW_ITEM(ETH, sizeof(struct rte_flow_item_eth)),
/f-stack/dpdk/doc/guides/prog_guide/
H A Drte_flow.rst888 | ETH | IPv4 | UDP | ... | baz | foo | ......... | bar | .... |
898 Item: ``ETH``
/f-stack/dpdk/app/test-pmd/
H A Dcmdline_flow.c2284 .priv = PRIV_ITEM(ETH, sizeof(struct rte_flow_item_eth)),