net/sfc: add VFs to the table of PCI IDs for supported NICs

Signed-off-by: Ivan Malov <ivan.malov@oktetlabs.ru>
Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com>
Reviewed-by: Andrew Lee <alee@solarflare.com>
This commit is contained in:
Ivan Malov 2017-03-09 17:23:03 +00:00 committed by Ferruh Yigit
parent 4650ed44c1
commit 223a29a25e
3 changed files with 6 additions and 0 deletions

View File

@ -18,6 +18,7 @@ Multicast MAC filter = Y
RSS hash = Y
RSS key update = Y
RSS reta update = Y
SR-IOV = Y
Flow control = Y
Flow API = Y
VLAN offload = P

View File

@ -94,6 +94,8 @@ New Features
* Generic flow API support for Ethernet, VLAN, IPv4, IPv6, UDP and TCP
pattern items with QUEUE action for ingress traffic.
* Support virtual functions (VFs)
* **Added vmxnet3 version 3 support.**
Added support for vmxnet3 version 3 which includes several

View File

@ -1412,8 +1412,11 @@ sfc_eth_dev_uninit(struct rte_eth_dev *dev)
static const struct rte_pci_id pci_id_sfc_efx_map[] = {
{ RTE_PCI_DEVICE(EFX_PCI_VENID_SFC, EFX_PCI_DEVID_FARMINGDALE) },
{ RTE_PCI_DEVICE(EFX_PCI_VENID_SFC, EFX_PCI_DEVID_FARMINGDALE_VF) },
{ RTE_PCI_DEVICE(EFX_PCI_VENID_SFC, EFX_PCI_DEVID_GREENPORT) },
{ RTE_PCI_DEVICE(EFX_PCI_VENID_SFC, EFX_PCI_DEVID_GREENPORT_VF) },
{ RTE_PCI_DEVICE(EFX_PCI_VENID_SFC, EFX_PCI_DEVID_MEDFORD) },
{ RTE_PCI_DEVICE(EFX_PCI_VENID_SFC, EFX_PCI_DEVID_MEDFORD_VF) },
{ .vendor_id = 0 /* sentinel */ }
};