Home
last modified time | relevance | path

Searched refs:process_private (Results 1 – 21 of 21) sorted by relevance

/f-stack/dpdk/drivers/net/tap/
H A Drte_eth_tap.c426 process_private = rte_eth_devices[rxq->in_port].process_private; in pmd_rx_burst()
602 process_private = rte_eth_devices[txq->out_port].process_private; in tap_write_mbufs()
1102 struct pmd_process_private *process_private = dev->process_private; in tap_dev_close() local
1179 process_private = rte_eth_devices[rxq->in_port].process_private; in tap_rx_queue_release()
1198 process_private = rte_eth_devices[txq->out_port].process_private; in tap_tx_queue_release()
1460 struct pmd_process_private *process_private = dev->process_private; in tap_setup_queue() local
1525 struct pmd_process_private *process_private = dev->process_private; in tap_rx_queue_setup() local
1613 struct pmd_process_private *process_private = dev->process_private; in tap_tx_queue_setup() local
1928 dev->process_private = process_private; in eth_dev_tap_create()
2315 struct pmd_process_private *process_private = dev->process_private; in tap_mp_attach_queues() local
[all …]
H A Dtap_intr.c53 struct pmd_process_private *process_private = dev->process_private; in tap_rx_intr_vec_install() local
74 if (!rxq || process_private->rxq_fds[i] == -1) { in tap_rx_intr_vec_install()
82 intr_handle->efds[count] = process_private->rxq_fds[i]; in tap_rx_intr_vec_install()
H A Dtap_flow.c1572 struct pmd_process_private *process_private = dev->process_private; in tap_flow_isolate() local
1586 if (!process_private->rxq_fds[0]) in tap_flow_isolate()
/f-stack/dpdk/drivers/net/dpaa/
H A Ddpaa_ethdev.c210 struct fman_if *fif = dev->process_private; in dpaa_eth_dev_configure()
261 fman_if_set_sg(dev->process_private, 1); in dpaa_eth_dev_configure()
413 fman_if_enable_rx(dev->process_private); in dpaa_eth_dev_start()
420 struct fman_if *fif = dev->process_private; in dpaa_eth_dev_stop()
434 struct fman_if *fif = dev->process_private; in dpaa_eth_dev_close()
550 struct fman_if *fif = dev->process_private; in dpaa_eth_dev_info()
726 fman_if_stats_reset(dev->process_private); in dpaa_eth_stats_reset()
890 fman_if_set_bp(dev->process_private, in dpaa_fman_if_pool_setup()
1825 eth_dev->process_private = fman_intf; in dpaa_dev_init_secondary()
1871 eth_dev->process_private = fman_intf; in dpaa_dev_init()
[all …]
H A Ddpaa_flow.c779 struct fman_if *fif = dev->process_private; in dpaa_fm_config()
/f-stack/dpdk/drivers/net/dpaa2/
H A Ddpaa2_ethdev.c111 struct fsl_mc_io *dpni = dev->process_private; in dpaa2_vlan_filter_set()
138 struct fsl_mc_io *dpni = dev->process_private; in dpaa2_vlan_offload_set()
170 struct fsl_mc_io *dpni = dev->process_private; in dpaa2_vlan_tpid_set()
208 struct fsl_mc_io *dpni = dev->process_private; in dpaa2_fw_version_get()
502 struct fsl_mc_io *dpni = dev->process_private; in dpaa2_eth_dev_configure()
811 struct fsl_mc_io *dpni = dev->process_private; in dpaa2_dev_tx_queue_setup()
1287 dev->process_private = NULL; in dpaa2_dev_close()
1687 (struct fsl_mc_io *)dev->process_private; in dpaa2_xstats_get_by_id()
1860 dpni = (struct fsl_mc_io *)dev->process_private; in dpaa2_dev_set_link_up()
1917 dpni = (struct fsl_mc_io *)dev->process_private; in dpaa2_dev_set_link_down()
[all …]
/f-stack/dpdk/drivers/net/memif/
H A Drte_eth_memif.c102 proc_private = dev->process_private; in memif_mp_send_region()
299 rte_eth_devices[mq->in_port].process_private; in eth_memif_rx()
441 rte_eth_devices[mq->in_port].process_private; in eth_memif_rx_zc()
566 rte_eth_devices[mq->in_port].process_private; in eth_memif_tx()
738 rte_eth_devices[mq->in_port].process_private; in eth_memif_tx_zc()
1264 rte_free(dev->process_private); in memif_dev_close()
1366 proc_private = dev->process_private; in memif_link_update()
1489 struct pmd_process_private *process_private; in memif_create() local
1503 if (process_private == NULL) { in memif_create()
1507 eth_dev->process_private = process_private; in memif_create()
[all …]
H A Dmemif_socket.c258 struct pmd_process_private *proc_private = dev->process_private; in memif_msg_receive_add_region()
422 struct pmd_process_private *proc_private = dev->process_private; in memif_msg_enq_add_region()
691 proc_private = cc->dev->process_private; in memif_msg_receive()
/f-stack/dpdk/drivers/net/pcap/
H A Drte_eth_pcap.c235 pp = rte_eth_devices[pcap_q->port_id].process_private; in eth_pcap_rx()
331 pp = rte_eth_devices[dumper_q->port_id].process_private; in eth_pcap_tx_dumper()
416 pp = rte_eth_devices[tx_queue->port_id].process_private; in eth_pcap_tx()
547 struct pmd_process_private *pp = dev->process_private; in eth_dev_start()
620 struct pmd_process_private *pp = dev->process_private; in eth_dev_stop()
747 rte_free(dev->process_private); in eth_dev_close()
816 pp = rte_eth_devices[pcap_q->port_id].process_private; in eth_rx_queue_setup()
1142 (*eth_dev)->process_private = pp; in pmd_init_internals()
1280 pp = (*eth_dev)->process_private; in eth_from_pcaps_common()
1557 eth_dev->process_private = pp; in pmd_pcap_probe()
/f-stack/dpdk/lib/librte_ethdev/
H A Drte_ethdev_core.h99 void *process_private; /**< Pointer to per-process device data. */ member
H A Drte_ethdev.c566 eth_dev->process_private = NULL; in rte_eth_dev_release_port()
/f-stack/dpdk/drivers/net/mlx4/
H A Dmlx4.c217 dev->process_private = ppriv; in mlx4_proc_priv_init()
230 if (!dev->process_private) in mlx4_proc_priv_uninit()
232 rte_free(dev->process_private); in mlx4_proc_priv_uninit()
233 dev->process_private = NULL; in mlx4_proc_priv_uninit()
H A Dmlx4.h151 ((struct mlx4_proc_priv *)rte_eth_devices[port_id].process_private)
/f-stack/dpdk/drivers/net/mlx5/
H A Dmlx5.c1259 dev->process_private = ppriv; in mlx5_proc_priv_init()
1272 if (!dev->process_private) in mlx5_proc_priv_uninit()
1274 mlx5_free(dev->process_private); in mlx5_proc_priv_uninit()
1275 dev->process_private = NULL; in mlx5_proc_priv_uninit()
1295 if (!dev->process_private) in mlx5_dev_close()
H A Dmlx5.h803 ((struct mlx5_proc_priv *)rte_eth_devices[port_id].process_private)
/f-stack/dpdk/drivers/net/sfc/
H A Dsfc.h198 struct sfc_adapter_priv *sap = eth_dev->process_private; in sfc_adapter_priv_by_eth_dev()
H A Dsfc_ethdev.c335 free(dev->process_private); in sfc_eth_dev_secondary_clear_ops()
2103 dev->process_private = sap; in sfc_eth_dev_secondary_init()
2190 dev->process_private = sa; in sfc_eth_dev_init()
2264 dev->process_private = NULL; in sfc_eth_dev_init()
/f-stack/dpdk/drivers/net/hns3/
H A Dhns3_flow.c1245 struct hns3_process_private *process_list = dev->process_private; in hns3_filterlist_init()
1255 struct hns3_process_private *process_list = dev->process_private; in hns3_filterlist_flush()
1541 struct hns3_process_private *process_list = dev->process_private; in hns3_config_rss_filter()
1638 struct hns3_process_private *process_list = dev->process_private; in hns3_clear_rss_filter()
1761 struct hns3_process_private *process_list = dev->process_private; in hns3_flow_create()
1876 struct hns3_process_private *process_list = dev->process_private; in hns3_flow_destroy()
H A Dhns3_ethdev_vf.c1996 rte_free(eth_dev->process_private); in hns3vf_dev_close()
1997 eth_dev->process_private = NULL; in hns3vf_dev_close()
2729 eth_dev->process_private = (struct hns3_process_private *) in hns3vf_dev_init()
2733 if (eth_dev->process_private == NULL) { in hns3vf_dev_init()
2838 rte_free(eth_dev->process_private); in hns3vf_dev_init()
2839 eth_dev->process_private = NULL; in hns3vf_dev_init()
H A Dhns3_ethdev.c5034 rte_free(eth_dev->process_private); in hns3_dev_close()
5035 eth_dev->process_private = NULL; in hns3_dev_close()
5052 rte_free(eth_dev->process_private); in hns3_dev_close()
5053 eth_dev->process_private = NULL; in hns3_dev_close()
6090 eth_dev->process_private = (struct hns3_process_private *) in hns3_dev_init()
6094 if (eth_dev->process_private == NULL) { in hns3_dev_init()
6200 rte_free(eth_dev->process_private); in hns3_dev_init()
6201 eth_dev->process_private = NULL; in hns3_dev_init()
/f-stack/dpdk/drivers/net/nfp/
H A Dnfp_net.c763 nfp_eth_set_configured(dev->process_private, in nfp_net_start()
819 nfp_eth_set_configured(dev->process_private, in nfp_net_stop()
843 return nfp_eth_set_configured(dev->process_private, in nfp_net_set_link_up()
864 return nfp_eth_set_configured(dev->process_private, in nfp_net_set_link_down()
3434 eth_dev->process_private = cpp; in nfp_pf_create_dev()