Home
last modified time | relevance | path

Searched refs:rte_device (Results 1 – 25 of 69) sorted by relevance

123

/f-stack/dpdk/lib/librte_eal/include/
H A Drte_bus.h92 typedef struct rte_device *
93 (*rte_bus_find_device_t)(const struct rte_device *start, rte_dev_cmp_t cmp,
107 typedef int (*rte_bus_plug_t)(struct rte_device *dev);
120 typedef int (*rte_bus_unplug_t)(struct rte_device *dev);
160 typedef int (*rte_dev_dma_map_t)(struct rte_device *dev, void *addr,
181 typedef int (*rte_dev_dma_unmap_t)(struct rte_device *dev, void *addr,
196 typedef int (*rte_bus_hot_unplug_handler_t)(struct rte_device *dev);
363 struct rte_bus *rte_bus_find_by_device(const struct rte_device *dev);
H A Drte_dev.h92 struct rte_device { struct
93 TAILQ_ENTRY(rte_device) next; /**< Next device */
109 int rte_dev_is_probed(const struct rte_device *dev); argument
169 int rte_dev_remove(struct rte_device *dev);
190 typedef int (*rte_dev_cmp_t)(const struct rte_device *dev, const void *data);
244 struct rte_device *device; /**< current position. */
321 struct rte_device *
479 rte_dev_dma_map(struct rte_device *dev, void *addr, uint64_t iova, size_t len);
503 rte_dev_dma_unmap(struct rte_device *dev, void *addr, uint64_t iova,
/f-stack/dpdk/drivers/common/qat/
H A Dqat_device.h41 struct rte_device sym_rte_dev;
47 struct rte_device asym_rte_dev;
53 struct rte_device comp_rte_dev;
/f-stack/dpdk/lib/librte_eal/common/
H A Deal_common_dev.c72 static int cmp_dev_name(const struct rte_device *dev, const void *_name) in cmp_dev_name()
80 rte_dev_is_probed(const struct rte_device *dev) in rte_dev_is_probed()
131 local_dev_probe(const char *devargs, struct rte_device **new_dev) in local_dev_probe()
133 struct rte_device *dev; in local_dev_probe()
199 struct rte_device *dev; in rte_dev_probe()
291 struct rte_device *dev; in rte_eal_hotplug_remove()
311 local_dev_remove(struct rte_device *dev) in local_dev_remove()
332 rte_dev_remove(struct rte_device *dev) in rte_dev_remove()
682 struct rte_device *dev = NULL; in bus_next_dev_cmp()
726 struct rte_device *
[all …]
H A Deal_common_bus.c139 cmp_rte_device(const struct rte_device *dev1, const void *_dev2) in cmp_rte_device()
141 const struct rte_device *dev2 = _dev2; in cmp_rte_device()
149 struct rte_device *dev; in bus_find_device()
156 rte_bus_find_by_device(const struct rte_device *dev) in rte_bus_find_by_device()
H A Deal_private.h506 int local_dev_probe(const char *devargs, struct rte_device **new_dev);
516 int local_dev_remove(struct rte_device *dev);
H A Dhotplug_mp.c22 static int cmp_dev_name(const struct rte_device *dev, const void *_name) in cmp_dev_name()
92 struct rte_device *dev; in __handle_secondary_request()
234 struct rte_device *dev; in __handle_primary_request()
/f-stack/dpdk/drivers/bus/vdev/
H A Dvdev_private.h12 struct rte_device *
13 rte_vdev_find_device(const struct rte_device *start,
H A Dvdev_params.c26 vdev_dev_match(const struct rte_device *dev, in vdev_dev_match()
53 struct rte_device *dev; in rte_vdev_dev_iterate()
H A Dvdev.c138 vdev_dma_map(struct rte_device *dev, void *addr, uint64_t iova, size_t len) in vdev_dma_map()
163 vdev_dma_unmap(struct rte_device *dev, void *addr, uint64_t iova, size_t len) in vdev_dma_unmap()
383 static int vdev_plug(struct rte_device *dev);
561 struct rte_device *
562 rte_vdev_find_device(const struct rte_device *start, rte_dev_cmp_t cmp, in rte_vdev_find_device()
586 vdev_plug(struct rte_device *dev) in vdev_plug()
592 vdev_unplug(struct rte_device *dev) in vdev_unplug()
/f-stack/dpdk/lib/librte_vhost/
H A Drte_vdpa_dev.h75 struct rte_device *device;
91 rte_vdpa_register_device(struct rte_device *rte_dev,
H A Dvdpa.c62 struct rte_device *
72 rte_vdpa_register_device(struct rte_device *rte_dev, in rte_vdpa_register_device()
300 const struct rte_device *rte_dev) in vdpa_dev_match()
310 const struct rte_device *rte_dev);
314 struct rte_device *rte_dev) in vdpa_find_device()
H A Drte_vdpa.h63 struct rte_device *
/f-stack/dpdk/drivers/bus/pci/
H A Dpci_params.c39 pci_dev_match(const struct rte_device *dev, in pci_dev_match()
64 struct rte_device *dev; in rte_pci_dev_iterate()
H A Dpci_common.c444 static struct rte_device *
445 pci_find_device(const struct rte_device *start, rte_dev_cmp_t cmp, in pci_find_device()
496 pci_hot_unplug_handler(struct rte_device *dev) in pci_hot_unplug_handler()
558 pci_plug(struct rte_device *dev) in pci_plug()
564 pci_unplug(struct rte_device *dev) in pci_unplug()
580 pci_dma_map(struct rte_device *dev, void *addr, uint64_t iova, size_t len) in pci_dma_map()
603 pci_dma_unmap(struct rte_device *dev, void *addr, uint64_t iova, size_t len) in pci_dma_unmap()
/f-stack/dpdk/lib/librte_rawdev/
H A Drte_rawdev.h293 struct rte_device *device;
317 struct rte_device *device;
/f-stack/dpdk/drivers/bus/ifpga/
H A Difpga_bus.c360 ifpga_plug(struct rte_device *dev) in ifpga_plug()
380 ifpga_unplug(struct rte_device *dev) in ifpga_unplug()
404 static struct rte_device *
405 ifpga_find_device(const struct rte_device *start, in ifpga_find_device()
/f-stack/dpdk/drivers/crypto/nitrox/
H A Dnitrox_device.h18 struct rte_device rte_sym_dev;
/f-stack/dpdk/examples/vdpa/
H A Dmain.c107 struct rte_device *dev; in new_device()
135 struct rte_device *dev; in destroy_device()
295 struct rte_device *dev; in cmd_list_vdpa_devices_parsed()
529 struct rte_device *dev; in main()
/f-stack/dpdk/drivers/bus/fslmc/
H A Dfslmc_bus.c481 static struct rte_device *
482 rte_fslmc_find_device(const struct rte_device *start, rte_dev_cmp_t cmp, in rte_fslmc_find_device()
597 fslmc_bus_plug(struct rte_device *dev __rte_unused) in fslmc_bus_plug()
604 fslmc_bus_unplug(struct rte_device *dev __rte_unused) in fslmc_bus_unplug()
/f-stack/dpdk/drivers/crypto/bcmfs/
H A Dbcmfs_device.h71 struct rte_device sym_rte_dev;
/f-stack/dpdk/lib/librte_compressdev/
H A Drte_compressdev_internal.h79 struct rte_device *device;
/f-stack/dpdk/drivers/net/bonding/
H A Drte_eth_bond_args.c61 bond_pci_addr_cmp(const struct rte_device *dev, const void *_pci_addr) in bond_pci_addr_cmp()
78 struct rte_device *dev; in parse_port_id()
/f-stack/dpdk/drivers/bus/vmbus/
H A Dvmbus_common.c269 static struct rte_device *
270 vmbus_find_device(const struct rte_device *start, rte_dev_cmp_t cmp, in vmbus_find_device()
/f-stack/dpdk/drivers/bus/dpaa/
H A Ddpaa_bus.c676 static struct rte_device *
677 rte_dpaa_find_device(const struct rte_device *start, rte_dev_cmp_t cmp, in rte_dpaa_find_device()
720 dpaa_bus_plug(struct rte_device *dev __rte_unused) in dpaa_bus_plug()
727 dpaa_bus_unplug(struct rte_device *dev __rte_unused) in dpaa_bus_unplug()

123