env_dpdk: DPDK 22.07 PCI now includes in-tree headers

Since SPDK holds copies of local DPDK headers for DPDK PCI API,
the same headers will now be used as includes.
It was already the case for DPDK 22.11, but not for DPDK 22.07.

Change-Id: I5859a630d1fb20b4ebf8628adb962f5e46c23788
Signed-off-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/15969
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com>
This commit is contained in:
Tomasz Zawadzki 2022-12-15 16:54:17 +01:00
parent 8f45e159a3
commit fcbbd17a3a
2 changed files with 3 additions and 3 deletions

View File

@ -21,7 +21,7 @@ extern "C" {
#include <stdio.h>
#include <rte_log.h>
#include <rte_dev.h>
#include "rte_dev.h"
/** Double linked list of buses */
RTE_TAILQ_HEAD(rte_bus_list, rte_bus);

View File

@ -24,8 +24,8 @@ extern "C" {
#include <rte_debug.h>
#include <rte_interrupts.h>
#include <rte_dev.h>
#include <rte_bus.h>
#include "rte_dev.h"
#include "rte_bus.h"
#include <rte_pci.h>
/** Pathname of PCI devices directory. */