dev: hide driver object
Make rte_driver opaque for non internal users. This will make extending this object possible without breaking the ABI. Introduce a new driver header and move rte_driver definition. Update drivers and library to use the internal header. Some applications may have been dereferencing rte_driver objects, mark this object's accessors as stable. Signed-off-by: David Marchand <david.marchand@redhat.com> Acked-by: Bruce Richardson <bruce.richardson@intel.com> Acked-by: Jay Jayatheerthan <jay.jayatheerthan@intel.com> Acked-by: Ajit Khaparde <ajit.khaparde@broadcom.com> Acked-by: Akhil Goyal <gakhil@marvell.com> Acked-by: Abhinandan Gujjar <abhinandan.gujjar@intel.com>
This commit is contained in:
parent
97bbdba31d
commit
1acb7f5474
@ -98,6 +98,8 @@ API Changes
|
||||
``vdev``, ``vmbus`` buses has been marked as an internal API.
|
||||
External users may still register their driver using the associated driver
|
||||
headers (see ``enable_driver_sdk`` meson option).
|
||||
The ``rte_driver`` object is now opaque and must be manipulated through added
|
||||
accessors.
|
||||
|
||||
* raw/ifgpa: The function ``rte_pmd_ifpga_get_pci_bus`` has been removed.
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
#include <rte_common.h>
|
||||
#include <rte_log.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_malloc.h>
|
||||
#include <rte_mempool.h>
|
||||
#include <rte_byteorder.h>
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
#include <rte_common.h>
|
||||
#include <rte_log.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_malloc.h>
|
||||
#include <rte_mempool.h>
|
||||
#include <rte_errno.h>
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
#include <rte_common.h>
|
||||
#include <rte_log.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_malloc.h>
|
||||
#include <rte_mempool.h>
|
||||
#include <rte_errno.h>
|
||||
|
@ -5,7 +5,7 @@
|
||||
#include <string.h>
|
||||
|
||||
#include <bus_driver.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_errno.h>
|
||||
#include <rte_kvargs.h>
|
||||
|
||||
|
@ -25,7 +25,7 @@ extern "C" {
|
||||
#include <rte_compat.h>
|
||||
#include <rte_debug.h>
|
||||
#include <rte_interrupts.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_kvargs.h>
|
||||
|
||||
#define RTE_BUS_AUXILIARY_NAME "auxiliary"
|
||||
|
@ -7,7 +7,7 @@
|
||||
#define BUS_DPAA_DRIVER_H
|
||||
|
||||
#include <rte_compat.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_mbuf_dyn.h>
|
||||
#include <rte_mempool.h>
|
||||
|
||||
|
@ -29,7 +29,7 @@ extern "C" {
|
||||
#include <rte_compat.h>
|
||||
#include <rte_debug.h>
|
||||
#include <rte_interrupts.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_tailq.h>
|
||||
#include <rte_devargs.h>
|
||||
#include <rte_mbuf.h>
|
||||
|
@ -28,7 +28,7 @@
|
||||
#include <rte_string_fns.h>
|
||||
#include <rte_cycles.h>
|
||||
#include <rte_kvargs.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_eal_memconfig.h>
|
||||
|
||||
#include "private.h"
|
||||
|
@ -18,7 +18,7 @@
|
||||
#include <rte_string_fns.h>
|
||||
#include <rte_cycles.h>
|
||||
#include <rte_kvargs.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <ethdev_driver.h>
|
||||
#include <rte_mbuf_pool_ops.h>
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
#include <rte_string_fns.h>
|
||||
#include <rte_cycles.h>
|
||||
#include <rte_kvargs.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <ethdev_driver.h>
|
||||
|
||||
#include <fslmc_logs.h>
|
||||
|
@ -30,7 +30,7 @@
|
||||
#include <rte_string_fns.h>
|
||||
#include <rte_cycles.h>
|
||||
#include <rte_kvargs.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
|
||||
#include <fslmc_logs.h>
|
||||
#include <bus_fslmc_driver.h>
|
||||
|
@ -10,7 +10,7 @@
|
||||
#include <errno.h>
|
||||
|
||||
#include <rte_malloc.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
|
||||
#include "private.h"
|
||||
#include <fslmc_logs.h>
|
||||
|
@ -11,7 +11,7 @@ extern "C" {
|
||||
#endif
|
||||
|
||||
#include <rte_bus_pci.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_compat.h>
|
||||
|
||||
/** Pathname of PCI devices directory. */
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
#include <bus_driver.h>
|
||||
#include <rte_bus_pci.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_errno.h>
|
||||
#include <rte_kvargs.h>
|
||||
#include <rte_devargs.h>
|
||||
|
@ -11,7 +11,7 @@ extern "C" {
|
||||
|
||||
#include <rte_bus_vdev.h>
|
||||
#include <rte_compat.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_devargs.h>
|
||||
|
||||
struct rte_vdev_device {
|
||||
|
@ -11,7 +11,7 @@
|
||||
#include <sys/queue.h>
|
||||
|
||||
#include <rte_eal.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <bus_driver.h>
|
||||
#include <rte_common.h>
|
||||
#include <rte_devargs.h>
|
||||
|
@ -5,7 +5,7 @@
|
||||
#include <errno.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_kvargs.h>
|
||||
#include <rte_errno.h>
|
||||
|
||||
|
@ -12,7 +12,7 @@ extern "C" {
|
||||
|
||||
#include <rte_bus_vmbus.h>
|
||||
#include <rte_compat.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
|
||||
struct vmbus_channel;
|
||||
struct vmbus_mon_page;
|
||||
|
@ -2,7 +2,7 @@
|
||||
* Copyright(c) 2021 Intel Corporation
|
||||
*/
|
||||
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_pci.h>
|
||||
|
||||
#include "qat_device.h"
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
#include <rte_common.h>
|
||||
#include <rte_cycles.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_malloc.h>
|
||||
#include <rte_memzone.h>
|
||||
#include <rte_pci.h>
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_common.h>
|
||||
#include <rte_malloc.h>
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
||||
#include <rte_atomic.h>
|
||||
#include <rte_bitmap.h>
|
||||
#include <rte_common.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_malloc.h>
|
||||
#include <rte_memzone.h>
|
||||
#include <rte_prefetch.h>
|
||||
|
@ -4,7 +4,7 @@
|
||||
*/
|
||||
|
||||
#include <rte_common.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_errno.h>
|
||||
#include <rte_malloc.h>
|
||||
#include <cryptodev_pmd.h>
|
||||
|
@ -9,7 +9,7 @@
|
||||
#include <rte_cryptodev.h>
|
||||
#include <cryptodev_pmd.h>
|
||||
#include <rte_pci.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_malloc.h>
|
||||
|
||||
#include "ccp_crypto.h"
|
||||
|
@ -7,7 +7,7 @@
|
||||
#include <rte_crypto.h>
|
||||
#include <rte_cryptodev.h>
|
||||
#include <cryptodev_pmd.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_pci.h>
|
||||
|
||||
#include "cn10k_cryptodev.h"
|
||||
|
@ -7,7 +7,7 @@
|
||||
#include <rte_crypto.h>
|
||||
#include <rte_cryptodev.h>
|
||||
#include <cryptodev_pmd.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_pci.h>
|
||||
|
||||
#include "cn9k_cryptodev.h"
|
||||
|
@ -17,7 +17,7 @@
|
||||
#include <rte_string_fns.h>
|
||||
#include <rte_cycles.h>
|
||||
#include <rte_kvargs.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <cryptodev_pmd.h>
|
||||
#include <rte_common.h>
|
||||
#include <bus_fslmc_driver.h>
|
||||
|
@ -19,7 +19,7 @@
|
||||
#include <rte_security_driver.h>
|
||||
#endif
|
||||
#include <rte_cycles.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_io.h>
|
||||
#include <rte_ip.h>
|
||||
#include <rte_kvargs.h>
|
||||
|
@ -5,7 +5,7 @@
|
||||
|
||||
#include <rte_common.h>
|
||||
#include <rte_malloc.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_cryptodev.h>
|
||||
#include <cryptodev_pmd.h>
|
||||
#include <rte_reorder.h>
|
||||
|
@ -9,6 +9,7 @@
|
||||
#include <libgen.h>
|
||||
|
||||
#include <bus_driver.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_devargs.h>
|
||||
#include <rte_eal.h>
|
||||
#include <rte_log.h>
|
||||
|
@ -17,7 +17,7 @@
|
||||
#include <rte_config.h>
|
||||
#include <rte_cycles.h>
|
||||
#include <rte_debug.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_errno.h>
|
||||
#include <rte_eventdev.h>
|
||||
#include <eventdev_pmd.h>
|
||||
|
@ -15,7 +15,7 @@
|
||||
|
||||
#include <rte_debug.h>
|
||||
#include <rte_log.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_devargs.h>
|
||||
#include <rte_mbuf.h>
|
||||
#include <rte_ring.h>
|
||||
|
@ -14,7 +14,7 @@
|
||||
#include <rte_byteorder.h>
|
||||
#include <rte_common.h>
|
||||
#include <rte_debug.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_eal.h>
|
||||
#include <rte_lcore.h>
|
||||
#include <rte_log.h>
|
||||
|
@ -14,7 +14,7 @@
|
||||
#include <rte_byteorder.h>
|
||||
#include <rte_common.h>
|
||||
#include <rte_debug.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_eal.h>
|
||||
#include <bus_fslmc_driver.h>
|
||||
#include <rte_lcore.h>
|
||||
|
@ -17,7 +17,7 @@
|
||||
#include <rte_string_fns.h>
|
||||
#include <rte_cycles.h>
|
||||
#include <rte_kvargs.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <ethdev_driver.h>
|
||||
|
||||
#include <bus_fslmc_driver.h>
|
||||
|
@ -8,7 +8,7 @@
|
||||
#include <rte_common.h>
|
||||
#include <cryptodev_pmd.h>
|
||||
#include <rte_debug.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_eal.h>
|
||||
#include <ethdev_driver.h>
|
||||
#include <rte_event_eth_rx_adapter.h>
|
||||
|
@ -12,7 +12,7 @@
|
||||
#include <rte_byteorder.h>
|
||||
#include <rte_common.h>
|
||||
#include <rte_debug.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_eal.h>
|
||||
#include <rte_log.h>
|
||||
#include <rte_malloc.h>
|
||||
|
@ -8,7 +8,7 @@
|
||||
#include <rte_pci.h>
|
||||
#include <bus_pci_driver.h>
|
||||
#include <rte_byteorder.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
|
||||
#include <gpudev_driver.h>
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
#include <rte_string_fns.h>
|
||||
#include <rte_cycles.h>
|
||||
#include <rte_kvargs.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include "rte_dpaa2_mempool.h"
|
||||
|
||||
#include "fslmc_vfio.h"
|
||||
|
@ -24,7 +24,7 @@
|
||||
#include <rte_string_fns.h>
|
||||
#include <rte_branch_prediction.h>
|
||||
#include <rte_common.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_eal.h>
|
||||
#include <rte_ether.h>
|
||||
#include <rte_lcore.h>
|
||||
|
@ -15,7 +15,7 @@
|
||||
#include <rte_string_fns.h>
|
||||
#include <rte_cycles.h>
|
||||
#include <rte_kvargs.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_version.h>
|
||||
|
||||
#include "ark_pktdir.h"
|
||||
|
@ -22,7 +22,7 @@
|
||||
#include <rte_cycles.h>
|
||||
#include <rte_spinlock.h>
|
||||
#include <rte_byteorder.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_memory.h>
|
||||
#include <rte_eal.h>
|
||||
#include <rte_io.h>
|
||||
|
@ -33,7 +33,7 @@
|
||||
#include <rte_memzone.h>
|
||||
#include <rte_ether.h>
|
||||
#include <rte_ethdev.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_errno.h>
|
||||
#include <ethdev_pci.h>
|
||||
#include <rte_common.h>
|
||||
|
@ -9,7 +9,7 @@
|
||||
#include "bnx2x_rxtx.h"
|
||||
|
||||
#include <rte_string_fns.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <ethdev_pci.h>
|
||||
#include <rte_alarm.h>
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
#include <inttypes.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <ethdev_driver.h>
|
||||
#include <ethdev_pci.h>
|
||||
#include <rte_malloc.h>
|
||||
|
@ -7,7 +7,7 @@
|
||||
#include <stdbool.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <ethdev_driver.h>
|
||||
#include <rte_malloc.h>
|
||||
#include <rte_cycles.h>
|
||||
|
@ -18,7 +18,7 @@
|
||||
#include <ethdev_driver.h>
|
||||
#include <rte_malloc.h>
|
||||
#include <rte_random.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_byteorder.h>
|
||||
|
||||
#include "common.h"
|
||||
|
@ -31,7 +31,7 @@
|
||||
#include <ethdev_pci.h>
|
||||
#include <rte_malloc.h>
|
||||
#include <rte_random.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
|
||||
#include "cxgbe.h"
|
||||
#include "cxgbe_pfvf.h"
|
||||
|
@ -31,7 +31,7 @@
|
||||
#include <ethdev_driver.h>
|
||||
#include <ethdev_pci.h>
|
||||
#include <rte_random.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_kvargs.h>
|
||||
|
||||
#include "base/common.h"
|
||||
|
@ -30,7 +30,7 @@
|
||||
#include <ethdev_driver.h>
|
||||
#include <rte_malloc.h>
|
||||
#include <rte_random.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
|
||||
#include "base/common.h"
|
||||
#include "base/t4_regs.h"
|
||||
|
@ -15,7 +15,7 @@
|
||||
#include <rte_string_fns.h>
|
||||
#include <rte_cycles.h>
|
||||
#include <rte_kvargs.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
|
||||
#include <dpaa2_pmd_logs.h>
|
||||
#include <dpaa2_hw_pvt.h>
|
||||
|
@ -15,7 +15,7 @@
|
||||
#include <rte_string_fns.h>
|
||||
#include <rte_cycles.h>
|
||||
#include <rte_kvargs.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <bus_fslmc_driver.h>
|
||||
#include <rte_flow_driver.h>
|
||||
#include "rte_dpaa2_mempool.h"
|
||||
|
@ -14,7 +14,7 @@
|
||||
#include <rte_string_fns.h>
|
||||
#include <rte_cycles.h>
|
||||
#include <rte_kvargs.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <bus_fslmc_driver.h>
|
||||
#include <rte_flow_driver.h>
|
||||
|
||||
|
@ -13,7 +13,7 @@
|
||||
#include <rte_malloc.h>
|
||||
#include <rte_memcpy.h>
|
||||
#include <rte_string_fns.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_hexdump.h>
|
||||
|
||||
#include <bus_fslmc_driver.h>
|
||||
|
@ -7,7 +7,7 @@
|
||||
#include <rte_malloc.h>
|
||||
#include <rte_memcpy.h>
|
||||
#include <rte_string_fns.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
|
||||
#include <fslmc_logs.h>
|
||||
#include <fslmc_vfio.h>
|
||||
|
@ -20,7 +20,7 @@
|
||||
#include <rte_memory.h>
|
||||
#include <rte_eal.h>
|
||||
#include <rte_malloc.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
|
||||
#include "e1000_logs.h"
|
||||
#include "base/e1000_api.h"
|
||||
|
@ -22,7 +22,7 @@
|
||||
#include <rte_memory.h>
|
||||
#include <rte_eal.h>
|
||||
#include <rte_malloc.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
|
||||
#include "e1000_logs.h"
|
||||
#include "base/e1000_api.h"
|
||||
|
@ -21,7 +21,7 @@
|
||||
#include <rte_eal.h>
|
||||
#include <rte_atomic.h>
|
||||
#include <rte_malloc.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_flow.h>
|
||||
#include <rte_flow_driver.h>
|
||||
|
||||
|
@ -14,7 +14,7 @@
|
||||
#include <rte_pci.h>
|
||||
#include <bus_pci_driver.h>
|
||||
#include <rte_timer.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_net.h>
|
||||
|
||||
#include "ena_com.h"
|
||||
|
@ -6,7 +6,7 @@
|
||||
#include <stdio.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_pci.h>
|
||||
#include <bus_pci_driver.h>
|
||||
#include <ethdev_driver.h>
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
#include <bus_pci_driver.h>
|
||||
#include <rte_common.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <ethdev_driver.h>
|
||||
#include <ethdev_pci.h>
|
||||
#include <rte_flow_driver.h>
|
||||
|
@ -11,7 +11,7 @@
|
||||
#include <pthread.h>
|
||||
|
||||
#include <rte_atomic.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <ethdev_driver.h>
|
||||
#include <rte_devargs.h>
|
||||
#include <rte_flow.h>
|
||||
|
@ -7,7 +7,7 @@
|
||||
#include <rte_malloc.h>
|
||||
#include <rte_memzone.h>
|
||||
#include <rte_string_fns.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_spinlock.h>
|
||||
#include <rte_kvargs.h>
|
||||
#include <rte_vect.h>
|
||||
|
@ -24,7 +24,7 @@
|
||||
#include <rte_malloc.h>
|
||||
#include <rte_memcpy.h>
|
||||
#include <rte_alarm.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_tailq.h>
|
||||
#include <rte_hash_crc.h>
|
||||
#include <rte_bitmap.h>
|
||||
|
@ -25,7 +25,7 @@
|
||||
#include <ethdev_pci.h>
|
||||
#include <rte_malloc.h>
|
||||
#include <rte_memzone.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
|
||||
#include "iavf.h"
|
||||
#include "iavf_rxtx.h"
|
||||
|
@ -19,7 +19,7 @@
|
||||
#include <rte_ether.h>
|
||||
#include <ethdev_driver.h>
|
||||
#include <ethdev_pci.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
|
||||
#include "iavf.h"
|
||||
#include "iavf_rxtx.h"
|
||||
|
@ -21,7 +21,7 @@
|
||||
#include <ethdev_pci.h>
|
||||
#include <rte_malloc.h>
|
||||
#include <rte_memzone.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
|
||||
#include "ice_dcf.h"
|
||||
#include "ice_rxtx.h"
|
||||
|
@ -18,7 +18,7 @@
|
||||
#include <rte_kvargs.h>
|
||||
#include <rte_malloc.h>
|
||||
#include <rte_memzone.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
|
||||
#include <iavf_devids.h>
|
||||
|
||||
|
@ -30,7 +30,7 @@
|
||||
#include <ethdev_pci.h>
|
||||
#include <rte_malloc.h>
|
||||
#include <rte_random.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_hash_crc.h>
|
||||
#ifdef RTE_LIB_SECURITY
|
||||
#include <rte_security_driver.h>
|
||||
|
@ -27,7 +27,7 @@
|
||||
#include <ethdev_driver.h>
|
||||
#include <rte_malloc.h>
|
||||
#include <rte_random.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_hash_crc.h>
|
||||
#include <rte_flow.h>
|
||||
#include <rte_flow_driver.h>
|
||||
|
@ -31,7 +31,7 @@
|
||||
#endif
|
||||
|
||||
#include <rte_common.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_errno.h>
|
||||
#include <ethdev_driver.h>
|
||||
#include <ethdev_pci.h>
|
||||
|
@ -30,7 +30,7 @@
|
||||
#include <rte_errno.h>
|
||||
#include <rte_memory.h>
|
||||
#include <rte_eal.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <bus_driver.h>
|
||||
#include <bus_vmbus_driver.h>
|
||||
#include <rte_alarm.h>
|
||||
|
@ -28,7 +28,7 @@
|
||||
#include <rte_cycles.h>
|
||||
#include <rte_memory.h>
|
||||
#include <rte_eal.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <bus_vmbus_driver.h>
|
||||
|
||||
#include "hn_logs.h"
|
||||
|
@ -26,7 +26,7 @@
|
||||
#include <rte_cycles.h>
|
||||
#include <rte_memory.h>
|
||||
#include <rte_eal.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <bus_vmbus_driver.h>
|
||||
|
||||
#include "hn_logs.h"
|
||||
|
@ -25,7 +25,7 @@
|
||||
#include <rte_errno.h>
|
||||
#include <rte_memory.h>
|
||||
#include <rte_eal.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_net.h>
|
||||
#include <bus_vmbus_driver.h>
|
||||
#include <rte_spinlock.h>
|
||||
|
@ -19,7 +19,7 @@
|
||||
#include <rte_debug.h>
|
||||
#include <ethdev_driver.h>
|
||||
#include <ethdev_pci.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_ether.h>
|
||||
#include <rte_malloc.h>
|
||||
#include <rte_memzone.h>
|
||||
|
@ -16,7 +16,7 @@
|
||||
#include <rte_common.h>
|
||||
#include <ethdev_driver.h>
|
||||
#include <ethdev_pci.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_ether.h>
|
||||
#include <rte_malloc.h>
|
||||
#include <rte_memzone.h>
|
||||
|
@ -16,7 +16,7 @@
|
||||
#include <bus_vdev_driver.h>
|
||||
#include <rte_cycles.h>
|
||||
#include <rte_debug.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_devargs.h>
|
||||
#include <rte_kvargs.h>
|
||||
#include <rte_malloc.h>
|
||||
|
@ -13,7 +13,7 @@
|
||||
#include <rte_ether.h>
|
||||
#include <ethdev_driver.h>
|
||||
#include <ethdev_pci.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_ip.h>
|
||||
|
||||
/* ecore includes */
|
||||
|
@ -7,7 +7,7 @@
|
||||
* for Solarflare) and Solarflare Communications, Inc.
|
||||
*/
|
||||
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <ethdev_driver.h>
|
||||
#include <ethdev_pci.h>
|
||||
#include <rte_pci.h>
|
||||
|
@ -2,7 +2,7 @@
|
||||
*
|
||||
* Copyright(c) 2021 Xilinx, Inc.
|
||||
*/
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_bitmap.h>
|
||||
|
||||
#include "sfc.h"
|
||||
|
@ -5,7 +5,7 @@
|
||||
#ifndef _SFC_SW_STATS_H
|
||||
#define _SFC_SW_STATS_H
|
||||
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
|
||||
#include "sfc.h"
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
#include <rte_common.h>
|
||||
#include <rte_cycles.h>
|
||||
#include <rte_debug.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_eal.h>
|
||||
#include <rte_ether.h>
|
||||
#include <ethdev_driver.h>
|
||||
|
@ -27,7 +27,7 @@
|
||||
#include <bus_driver.h>
|
||||
#include <bus_vdev_driver.h>
|
||||
#include <rte_common.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_errno.h>
|
||||
#include <rte_ethdev.h>
|
||||
#include <rte_ether.h>
|
||||
|
@ -25,7 +25,7 @@
|
||||
#include <rte_memory.h>
|
||||
#include <rte_eal_paging.h>
|
||||
#include <rte_eal.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_cycles.h>
|
||||
#include <rte_kvargs.h>
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
#include <rte_memory.h>
|
||||
#include <rte_eal.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_kvargs.h>
|
||||
|
||||
#include "virtio.h"
|
||||
|
@ -30,7 +30,7 @@
|
||||
#include <ethdev_pci.h>
|
||||
#include <rte_string_fns.h>
|
||||
#include <rte_malloc.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
|
||||
#include "base/vmxnet3_defs.h"
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
*/
|
||||
#include <bus_pci_driver.h>
|
||||
#include <rte_common.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_eal.h>
|
||||
#include <rte_lcore.h>
|
||||
#include <rte_pci.h>
|
||||
|
@ -14,7 +14,7 @@
|
||||
#include <rte_byteorder.h>
|
||||
#include <rte_common.h>
|
||||
#include <rte_debug.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_eal.h>
|
||||
#include <rte_kvargs.h>
|
||||
#include <rte_log.h>
|
||||
|
@ -8,7 +8,7 @@
|
||||
#include <rte_mbuf.h>
|
||||
#include <rte_malloc.h>
|
||||
#include <rte_memcpy.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_rawdev.h>
|
||||
#include <bus_vdev_driver.h>
|
||||
#include <rte_test.h>
|
||||
|
@ -11,7 +11,7 @@
|
||||
#include <rte_regexdev.h>
|
||||
#include <rte_regexdev_core.h>
|
||||
#include <rte_regexdev_driver.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
|
||||
#include <mlx5_common.h>
|
||||
#include <mlx5_glue.h>
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
#include <rte_string_fns.h>
|
||||
#include <rte_malloc.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_eal.h>
|
||||
#include <rte_memzone.h>
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
#include <rte_string_fns.h>
|
||||
#include <rte_malloc.h>
|
||||
#include <rte_kvargs.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_eal.h>
|
||||
|
||||
#include "rte_compressdev_internal.h"
|
||||
|
@ -19,6 +19,7 @@ extern "C" {
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#include <dev_driver.h>
|
||||
|
||||
#include "rte_compressdev.h"
|
||||
#include "rte_compressdev_internal.h"
|
||||
|
@ -5,7 +5,7 @@
|
||||
#include <stdlib.h>
|
||||
#include <sys/queue.h>
|
||||
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_errno.h>
|
||||
#include <rte_string_fns.h>
|
||||
#include <rte_malloc.h>
|
||||
|
@ -19,6 +19,7 @@ extern "C" {
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#include <dev_driver.h>
|
||||
#include <rte_malloc.h>
|
||||
#include <rte_log.h>
|
||||
#include <rte_common.h>
|
||||
|
@ -13,7 +13,7 @@
|
||||
|
||||
#include <rte_log.h>
|
||||
#include <rte_debug.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_memory.h>
|
||||
#include <rte_memcpy.h>
|
||||
#include <rte_memzone.h>
|
||||
|
@ -14,7 +14,7 @@
|
||||
* by any application.
|
||||
*/
|
||||
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
|
||||
#include "rte_dmadev.h"
|
||||
|
||||
|
@ -10,7 +10,7 @@
|
||||
|
||||
#include <bus_driver.h>
|
||||
#include <rte_class.h>
|
||||
#include <rte_dev.h>
|
||||
#include <dev_driver.h>
|
||||
#include <rte_devargs.h>
|
||||
#include <rte_errno.h>
|
||||
#include <rte_log.h>
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user