app: update test pci device ids
Signed-off-by: Intel
This commit is contained in:
parent
45f1b6e868
commit
ce0ce98e9f
@ -44,7 +44,6 @@
|
|||||||
|
|
||||||
#include "test.h"
|
#include "test.h"
|
||||||
|
|
||||||
#define RTE_PCI_DEV_ID_DECL(vend, dev) {RTE_PCI_DEVICE(vend, dev)},
|
|
||||||
|
|
||||||
#define TEST_BLACKLIST_NUM 0x100
|
#define TEST_BLACKLIST_NUM 0x100
|
||||||
|
|
||||||
@ -72,24 +71,20 @@ static int my_driver_init(struct rte_pci_driver *dr,
|
|||||||
* drivers are created (one with IGB devices, the other with IXGBE devices).
|
* drivers are created (one with IGB devices, the other with IXGBE devices).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* IXGBE NICS + e1000 used for Qemu */
|
/* IXGBE NICS */
|
||||||
#define RTE_LIBRTE_IXGBE_PMD 1
|
|
||||||
#undef RTE_LIBRTE_IGB_PMD
|
|
||||||
struct rte_pci_id my_driver_id[] = {
|
struct rte_pci_id my_driver_id[] = {
|
||||||
|
|
||||||
|
#define RTE_PCI_DEV_ID_DECL_IXGBE(vend, dev) {RTE_PCI_DEVICE(vend, dev)},
|
||||||
#include <rte_pci_dev_ids.h>
|
#include <rte_pci_dev_ids.h>
|
||||||
|
|
||||||
/* this device is the e1000 of qemu for testing */
|
|
||||||
{RTE_PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x100E)},
|
|
||||||
|
|
||||||
{ .vendor_id = 0, /* sentinel */ },
|
{ .vendor_id = 0, /* sentinel */ },
|
||||||
};
|
};
|
||||||
|
|
||||||
struct rte_pci_id my_driver_id2[] = {
|
struct rte_pci_id my_driver_id2[] = {
|
||||||
|
|
||||||
/* IGB NICS */
|
/* IGB & EM NICS */
|
||||||
#undef RTE_LIBRTE_IXGBE_PMD
|
#define RTE_PCI_DEV_ID_DECL_EM(vend, dev) {RTE_PCI_DEVICE(vend, dev)},
|
||||||
#define RTE_LIBRTE_IGB_PMD 1
|
#define RTE_PCI_DEV_ID_DECL_IGB(vend, dev) {RTE_PCI_DEVICE(vend, dev)},
|
||||||
#define RTE_PCI_DEV_USE_82575EB_COPPER
|
#define RTE_PCI_DEV_USE_82575EB_COPPER
|
||||||
#include <rte_pci_dev_ids.h>
|
#include <rte_pci_dev_ids.h>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user