From: Michal Krawczyk Date: Fri, 30 Oct 2020 11:31:18 +0000 (+0100) Subject: net/ena: change name of supported PCI device IDs X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=f7138b91f80020d634248712bea1470a6c3a36f4;p=dpdk.git net/ena: change name of supported PCI device IDs The ID 0xEC21 is not associated with LLQ feature of the device, so it would be misleading for the user. Because of that, the current identifier is more precise. Together with code update, the documentation was changed to reflect current changes Signed-off-by: Michal Krawczyk Reviewed-by: Igor Chauskin Reviewed-by: Guy Tzalik --- diff --git a/doc/guides/nics/ena.rst b/doc/guides/nics/ena.rst index 9fc88f5d99..0f1f63f722 100644 --- a/doc/guides/nics/ena.rst +++ b/doc/guides/nics/ena.rst @@ -118,7 +118,7 @@ Supported ENA adapters Current ENA PMD supports the following ENA adapters including: * ``1d0f:ec20`` - ENA VF -* ``1d0f:ec21`` - ENA VF with LLQ support +* ``1d0f:ec21`` - ENA VF RSERV0 Supported Operating Systems --------------------------- diff --git a/drivers/net/ena/ena_ethdev.c b/drivers/net/ena/ena_ethdev.c index ad593c882c..b1c215b63e 100644 --- a/drivers/net/ena/ena_ethdev.c +++ b/drivers/net/ena/ena_ethdev.c @@ -140,8 +140,8 @@ static const struct ena_stats ena_stats_rx_strings[] = { /** Vendor ID used by Amazon devices */ #define PCI_VENDOR_ID_AMAZON 0x1D0F /** Amazon devices */ -#define PCI_DEVICE_ID_ENA_VF 0xEC20 -#define PCI_DEVICE_ID_ENA_LLQ_VF 0xEC21 +#define PCI_DEVICE_ID_ENA_VF 0xEC20 +#define PCI_DEVICE_ID_ENA_VF_RSERV0 0xEC21 #define ENA_TX_OFFLOAD_MASK (\ PKT_TX_L4_MASK | \ @@ -155,7 +155,7 @@ static const struct ena_stats ena_stats_rx_strings[] = { static const struct rte_pci_id pci_id_ena_map[] = { { RTE_PCI_DEVICE(PCI_VENDOR_ID_AMAZON, PCI_DEVICE_ID_ENA_VF) }, - { RTE_PCI_DEVICE(PCI_VENDOR_ID_AMAZON, PCI_DEVICE_ID_ENA_LLQ_VF) }, + { RTE_PCI_DEVICE(PCI_VENDOR_ID_AMAZON, PCI_DEVICE_ID_ENA_VF_RSERV0) }, { .device_id = 0 }, };