dpdk: Only use vmbus on Linux

Type: improvement
Change-Id: Iba3e287f420c0bdc8d248695163e7dfe1acd24d8
Signed-off-by: Tom Jones <thj@freebsd.org>
This commit is contained in:
Tom Jones
2024-02-01 16:05:31 +00:00
committed by Damjan Marion
parent cc0c8c7e9e
commit 934bab6766
2 changed files with 6 additions and 0 deletions

View File

@@ -491,6 +491,7 @@ dpdk_get_pci_device (const struct rte_eth_dev_info *info)
return NULL;
}
#ifdef __linux__
/* If this device is VMBUS return pointer to info, otherwise NULL */
struct rte_vmbus_device *
dpdk_get_vmbus_device (const struct rte_eth_dev_info *info)
@@ -507,6 +508,7 @@ dpdk_get_vmbus_device (const struct rte_eth_dev_info *info)
else
return NULL;
}
#endif /* __linux__ */
/*
* fd.io coding-style-patch-verification: ON

View File

@@ -24,7 +24,9 @@
#include <rte_eal.h>
#include <rte_bus_pci.h>
#ifdef __linux__
#include <rte_bus_vmbus.h>
#endif /* __linux__ */
#include <rte_ethdev.h>
#include <rte_version.h>
#include <rte_net.h>
@@ -35,7 +37,9 @@
#include <bus_driver.h>
#include <bus_pci_driver.h>
#ifdef __linux__
#include <bus_vmbus_driver.h>
#endif /* __linux__ */
#endif
#include <vnet/devices/devices.h>