* [PATCH 1/7] i40e: fix for getting correct RSS hash result
[not found] ` <1403244889-21358-1-git-send-email-helin.zhang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
@ 2014-06-20 6:14 ` Helin Zhang
2014-06-20 6:14 ` [PATCH 2/7] i40evf: support configuring crc stripping hw offload Helin Zhang
` (6 subsequent siblings)
7 siblings, 0 replies; 16+ messages in thread
From: Helin Zhang @ 2014-06-20 6:14 UTC (permalink / raw)
To: dev-VfR2kkLFssw
It wrongly gets the RSS hash result from the RX descriptor which
has been modified for receiving new packet. The fix is to get the
RSS hash result from the buffer which saves the RX descriptor.
Signed-off-by: Helin Zhang <helin.zhang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Acked-by: Cunming Liang <cunming.liang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Acked-by: Jing Chen <jing.d.chen-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
---
lib/librte_pmd_i40e/i40e_rxtx.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/librte_pmd_i40e/i40e_rxtx.c b/lib/librte_pmd_i40e/i40e_rxtx.c
index d802894..22f55b9 100644
--- a/lib/librte_pmd_i40e/i40e_rxtx.c
+++ b/lib/librte_pmd_i40e/i40e_rxtx.c
@@ -864,7 +864,7 @@ i40e_recv_pkts(void *rx_queue, struct rte_mbuf **rx_pkts, uint16_t nb_pkts)
rxm->ol_flags = pkt_flags;
if (pkt_flags & PKT_RX_RSS_HASH)
rxm->pkt.hash.rss =
- rte_le_to_cpu_32(rxdp->wb.qword0.hi_dword.rss);
+ rte_le_to_cpu_32(rxd.wb.qword0.hi_dword.rss);
rx_pkts[nb_rx++] = rxm;
}
@@ -1017,7 +1017,7 @@ i40e_recv_scattered_pkts(void *rx_queue,
first_seg->ol_flags = pkt_flags;
if (pkt_flags & PKT_RX_RSS_HASH)
rxm->pkt.hash.rss =
- rte_le_to_cpu_32(rxdp->wb.qword0.hi_dword.rss);
+ rte_le_to_cpu_32(rxd.wb.qword0.hi_dword.rss);
/* Prefetch data of first segment, if configured to do so. */
rte_prefetch0(first_seg->pkt.data);
--
1.8.1.4
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH 2/7] i40evf: support configuring crc stripping hw offload
[not found] ` <1403244889-21358-1-git-send-email-helin.zhang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-06-20 6:14 ` [PATCH 1/7] i40e: fix for getting correct RSS hash result Helin Zhang
@ 2014-06-20 6:14 ` Helin Zhang
[not found] ` <1403244889-21358-3-git-send-email-helin.zhang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-06-20 6:14 ` [PATCH 3/7] i40e: ignore the failure of updating default filter settings Helin Zhang
` (5 subsequent siblings)
7 siblings, 1 reply; 16+ messages in thread
From: Helin Zhang @ 2014-06-20 6:14 UTC (permalink / raw)
To: dev-VfR2kkLFssw
In VF driver, crc stripping hw offload is enabled or not, according
to the configurations in config file.
Signed-off-by: Helin Zhang <helin.zhang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Acked-by: Cunming Liang <cunming.liang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Acked-by: Jing Chen <jing.d.chen-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
---
lib/librte_pmd_i40e/i40e_ethdev_vf.c | 16 +++++++++++++++-
1 file changed, 15 insertions(+), 1 deletion(-)
diff --git a/lib/librte_pmd_i40e/i40e_ethdev_vf.c b/lib/librte_pmd_i40e/i40e_ethdev_vf.c
index 4851df9..de71407 100644
--- a/lib/librte_pmd_i40e/i40e_ethdev_vf.c
+++ b/lib/librte_pmd_i40e/i40e_ethdev_vf.c
@@ -1062,8 +1062,22 @@ static struct rte_driver rte_i40evf_driver = {
PMD_REGISTER_DRIVER(rte_i40evf_driver);
static int
-i40evf_dev_configure(__rte_unused struct rte_eth_dev *dev)
+i40evf_dev_configure(struct rte_eth_dev *dev)
{
+ struct rte_eth_conf* conf = &dev->data->dev_conf;
+
+#ifdef RTE_LIBRTE_I40E_PF_DISABLE_STRIP_CRC
+ if (conf->rxmode.hw_strip_crc) {
+ conf->rxmode.hw_strip_crc = 0;
+ PMD_DRV_LOG(INFO, "VF can not enable hw CRC stripping\n");
+ }
+#else
+ if (!conf->rxmode.hw_strip_crc) {
+ conf->rxmode.hw_strip_crc = 1;
+ PMD_DRV_LOG(INFO, "VF can not disable hw CRC stripping\n");
+}
+#endif
+
return 0;
}
--
1.8.1.4
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH 3/7] i40e: ignore the failure of updating default filter settings
[not found] ` <1403244889-21358-1-git-send-email-helin.zhang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-06-20 6:14 ` [PATCH 1/7] i40e: fix for getting correct RSS hash result Helin Zhang
2014-06-20 6:14 ` [PATCH 2/7] i40evf: support configuring crc stripping hw offload Helin Zhang
@ 2014-06-20 6:14 ` Helin Zhang
[not found] ` <1403244889-21358-4-git-send-email-helin.zhang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-06-20 6:14 ` [PATCH 4/7] i40e: fix for updating the hash lookup table of PF RSS Helin Zhang
` (4 subsequent siblings)
7 siblings, 1 reply; 16+ messages in thread
From: Helin Zhang @ 2014-06-20 6:14 UTC (permalink / raw)
To: dev-VfR2kkLFssw
The failure of updating the default filter setting should be
ignored. The updating is to change the default vlan filter
behaviours configured by firmware to expected.
The failure happens on the firmware version of 4.2.2,
while doesn't happen on previous versions, as the default
settings of firmware changed.
Signed-off-by: Helin Zhang <helin.zhang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Acked-by: Cunming Liang <cunming.liang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Acked-by: Jing Chen <jing.d.chen-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
---
lib/librte_pmd_i40e/i40e_ethdev.c | 15 ++++++++-------
1 file changed, 8 insertions(+), 7 deletions(-)
diff --git a/lib/librte_pmd_i40e/i40e_ethdev.c b/lib/librte_pmd_i40e/i40e_ethdev.c
index a335242..102a206 100644
--- a/lib/librte_pmd_i40e/i40e_ethdev.c
+++ b/lib/librte_pmd_i40e/i40e_ethdev.c
@@ -2473,13 +2473,14 @@ i40e_vsi_setup(struct i40e_pf *pf,
(void)rte_memcpy(pf->dev_addr.addr_bytes, hw->mac.perm_addr,
ETH_ADDR_LEN);
ret = i40e_update_default_filter_setting(vsi);
- if (ret != I40E_SUCCESS) {
- PMD_DRV_LOG(ERR, "Failed to remove default "
- "filter setting\n");
- goto fail_msix_alloc;
- }
- }
- else if (type == I40E_VSI_SRIOV) {
+ if (ret != I40E_SUCCESS)
+ PMD_DRV_LOG(ERR, "Failure of removing default filter "
+ "setting can be ignored\n");
+ /**
+ * The failure of updating default filter setting
+ * can be ignored
+ */
+ } else if (type == I40E_VSI_SRIOV) {
memset(&ctxt, 0, sizeof(ctxt));
/**
* For other VSI, the uplink_seid equals to uplink VSI's
--
1.8.1.4
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH 4/7] i40e: fix for updating the hash lookup table of PF RSS
[not found] ` <1403244889-21358-1-git-send-email-helin.zhang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
` (2 preceding siblings ...)
2014-06-20 6:14 ` [PATCH 3/7] i40e: ignore the failure of updating default filter settings Helin Zhang
@ 2014-06-20 6:14 ` Helin Zhang
2014-06-20 6:14 ` [PATCH 5/7] i40e: double vlan should be specifically disabled by default Helin Zhang
` (3 subsequent siblings)
7 siblings, 0 replies; 16+ messages in thread
From: Helin Zhang @ 2014-06-20 6:14 UTC (permalink / raw)
To: dev-VfR2kkLFssw
The bit shifting were written wrongly in '0x1 < j',
the correct one should be '0x1 << j'.
Signed-off-by: Helin Zhang <helin.zhang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Acked-by: Cunming Liang <cunming.liang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Acked-by: Jing Chen <jing.d.chen-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
---
lib/librte_pmd_i40e/i40e_ethdev.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/librte_pmd_i40e/i40e_ethdev.c b/lib/librte_pmd_i40e/i40e_ethdev.c
index 102a206..f6beee6 100644
--- a/lib/librte_pmd_i40e/i40e_ethdev.c
+++ b/lib/librte_pmd_i40e/i40e_ethdev.c
@@ -1475,7 +1475,7 @@ i40e_dev_rss_reta_update(struct rte_eth_dev *dev,
l = I40E_READ_REG(hw, I40E_PFQF_HLUT(i >> 2));
for (j = 0, lut = 0; j < 4; j++) {
- if (mask & (0x1 < j))
+ if (mask & (0x1 << j))
lut |= reta_conf->reta[i + j] << (8 * j);
else
lut |= l & (0xFF << (8 * j));
--
1.8.1.4
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH 5/7] i40e: double vlan should be specifically disabled by default
[not found] ` <1403244889-21358-1-git-send-email-helin.zhang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
` (3 preceding siblings ...)
2014-06-20 6:14 ` [PATCH 4/7] i40e: fix for updating the hash lookup table of PF RSS Helin Zhang
@ 2014-06-20 6:14 ` Helin Zhang
2014-06-20 6:14 ` [PATCH 6/7] i40evf: fix for copying wrong size of link info, and remove an useless function Helin Zhang
` (2 subsequent siblings)
7 siblings, 0 replies; 16+ messages in thread
From: Helin Zhang @ 2014-06-20 6:14 UTC (permalink / raw)
To: dev-VfR2kkLFssw
Double vlan should be specifically disabled by default during
port initialization which is expected.
Signed-off-by: Helin Zhang <helin.zhang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Acked-by: Cunming Liang <cunming.liang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Acked-by: Jing Chen <jing.d.chen-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
---
lib/librte_pmd_i40e/i40e_ethdev.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/lib/librte_pmd_i40e/i40e_ethdev.c b/lib/librte_pmd_i40e/i40e_ethdev.c
index f6beee6..a5fe39a 100644
--- a/lib/librte_pmd_i40e/i40e_ethdev.c
+++ b/lib/librte_pmd_i40e/i40e_ethdev.c
@@ -483,6 +483,9 @@ eth_i40e_dev_init(__rte_unused struct eth_driver *eth_drv,
}
vsi = pf->main_vsi;
+
+ /* Disable double vlan by default */
+ i40e_vsi_config_double_vlan(vsi, FALSE);
if (!vsi->max_macaddrs)
len = ETHER_ADDR_LEN;
else
--
1.8.1.4
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH 6/7] i40evf: fix for copying wrong size of link info, and remove an useless function
[not found] ` <1403244889-21358-1-git-send-email-helin.zhang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
` (4 preceding siblings ...)
2014-06-20 6:14 ` [PATCH 5/7] i40e: double vlan should be specifically disabled by default Helin Zhang
@ 2014-06-20 6:14 ` Helin Zhang
[not found] ` <1403244889-21358-7-git-send-email-helin.zhang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-06-20 6:14 ` [PATCH 7/7] app/testpmd: rework for displaying different size of RX descriptors Helin Zhang
2014-06-20 6:23 ` [PATCH 0/7] enhancements for i40e Zhang, Helin
7 siblings, 1 reply; 16+ messages in thread
From: Helin Zhang @ 2014-06-20 6:14 UTC (permalink / raw)
To: dev-VfR2kkLFssw
Delete the inline function which is not used at this moment.
Fix the bug of copying wrong size of link info in function of
i40evf_get_link_status().
Signed-off-by: Helin Zhang <helin.zhang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Acked-by: Cunming Liang <cunming.liang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Acked-by: Jing Chen <jing.d.chen-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
---
lib/librte_pmd_i40e/i40e_ethdev_vf.c | 16 +---------------
1 file changed, 1 insertion(+), 15 deletions(-)
diff --git a/lib/librte_pmd_i40e/i40e_ethdev_vf.c b/lib/librte_pmd_i40e/i40e_ethdev_vf.c
index de71407..8989753 100644
--- a/lib/librte_pmd_i40e/i40e_ethdev_vf.c
+++ b/lib/librte_pmd_i40e/i40e_ethdev_vf.c
@@ -809,7 +809,7 @@ i40evf_get_link_status(struct rte_eth_dev *dev, struct rte_eth_link *link)
}
new_link = (struct rte_eth_link *)args.out_buffer;
- (void)rte_memcpy(link, new_link, sizeof(link));
+ (void)rte_memcpy(link, new_link, sizeof(*link));
return 0;
}
@@ -821,20 +821,6 @@ static struct rte_pci_id pci_id_i40evf_map[] = {
};
static inline int
-i40evf_dev_atomic_read_link_status(struct rte_eth_dev *dev,
- struct rte_eth_link *link)
-{
- struct rte_eth_link *dst = link;
- struct rte_eth_link *src = &(dev->data->dev_link);
-
- if (rte_atomic64_cmpset((uint64_t *)dst, *(uint64_t *)dst,
- *(uint64_t *)src) == 0)
- return -1;
-
- return 0;
-}
-
-static inline int
i40evf_dev_atomic_write_link_status(struct rte_eth_dev *dev,
struct rte_eth_link *link)
{
--
1.8.1.4
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH 7/7] app/testpmd: rework for displaying different size of RX descriptors
[not found] ` <1403244889-21358-1-git-send-email-helin.zhang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
` (5 preceding siblings ...)
2014-06-20 6:14 ` [PATCH 6/7] i40evf: fix for copying wrong size of link info, and remove an useless function Helin Zhang
@ 2014-06-20 6:14 ` Helin Zhang
[not found] ` <1403244889-21358-8-git-send-email-helin.zhang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-06-20 6:23 ` [PATCH 0/7] enhancements for i40e Zhang, Helin
7 siblings, 1 reply; 16+ messages in thread
From: Helin Zhang @ 2014-06-20 6:14 UTC (permalink / raw)
To: dev-VfR2kkLFssw
i40e supports 16 and 32 bytes RX descriptors which can be configured.
It needs to check the driver type and the configuration to determine
if 16 or 32 bytes RX descriptors is being used, for reading and
displaying the different sizes of RX descriptors.
Signed-off-by: Helin Zhang <helin.zhang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Acked-by: Cunming Liang <cunming.liang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Acked-by: Jing Chen <jing.d.chen-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
---
app/test-pmd/config.c | 77 ++++++++++++++++++++++++++++++++++-----------------
1 file changed, 52 insertions(+), 25 deletions(-)
diff --git a/app/test-pmd/config.c b/app/test-pmd/config.c
index 0023ab2..506058b 100644
--- a/app/test-pmd/config.c
+++ b/app/test-pmd/config.c
@@ -581,53 +581,80 @@ union igb_ring_dword {
} words;
};
-#ifndef RTE_LIBRTE_I40E_16BYTE_RX_DESC
-struct igb_ring_desc_32B {
+struct igb_ring_desc_32_bytes {
union igb_ring_dword lo_dword;
union igb_ring_dword hi_dword;
union igb_ring_dword resv1;
union igb_ring_dword resv2;
};
-#endif
-struct igb_ring_desc {
+struct igb_ring_desc_16_bytes {
union igb_ring_dword lo_dword;
union igb_ring_dword hi_dword;
};
static void
-ring_rx_descriptor_display(const struct rte_memzone *ring_mz, uint16_t desc_id)
+ring_rxd_display_dword(union igb_ring_dword dword)
+{
+ printf(" 0x%08X - 0x%08X\n", (unsigned)dword.words.lo,
+ (unsigned)dword.words.hi);
+}
+
+static void
+ring_rx_descriptor_display(const struct rte_memzone *ring_mz,
+ uint8_t port_id,
+ uint16_t desc_id)
{
-#ifdef RTE_LIBRTE_I40E_16BYTE_RX_DESC
- struct igb_ring_desc *ring;
- struct igb_ring_desc rd;
+ struct rte_eth_dev_info dev_info;
- ring = (struct igb_ring_desc *) ring_mz->addr;
+ memset(&dev_info, 0, sizeof(dev_info));
+ rte_eth_dev_info_get(port_id, &dev_info);
+
+ if (strstr(dev_info.driver_name, "i40e") != NULL) { /* i40e */
+#ifndef RTE_LIBRTE_I40E_16BYTE_RX_DESC
+ struct igb_ring_desc_32_bytes *ring =
+ (struct igb_ring_desc_32_bytes *)ring_mz->addr;
+
+ ring_rxd_display_dword(rte_le_to_cpu_64(\
+ ring[desc_id].lo_dword));
+ ring_rxd_display_dword(rte_le_to_cpu_64(\
+ ring[desc_id].hi_dword));
+ ring_rxd_display_dword(rte_le_to_cpu_64(\
+ ring[desc_id].resv1));
+ ring_rxd_display_dword(rte_le_to_cpu_64(\
+ ring[desc_id].resv2));
#else
- struct igb_ring_desc_32B *ring;
- struct igb_ring_desc_32B rd;
+ struct igb_ring_desc_16_bytes *ring =
+ (struct igb_ring_desc_16_bytes *)ring_mz->addr;
- ring = (struct igb_ring_desc_32B *) ring_mz->addr;
+ ring_rxd_display_dword(rte_le_to_cpu_64(\
+ ring[desc_id].lo_dword));
+ ring_rxd_display_dword(rte_le_to_cpu_64(\
+ ring[desc_id].hi_dword));
#endif
- rd.lo_dword = rte_le_to_cpu_64(ring[desc_id].lo_dword);
- rd.hi_dword = rte_le_to_cpu_64(ring[desc_id].hi_dword);
- printf(" 0x%08X - 0x%08X / 0x%08X - 0x%08X\n",
- (unsigned)rd.lo_dword.words.lo, (unsigned)rd.lo_dword.words.hi,
- (unsigned)rd.hi_dword.words.lo, (unsigned)rd.hi_dword.words.hi);
+ } else { /* not i40e */
+ struct igb_ring_desc_16_bytes *ring =
+ (struct igb_ring_desc_16_bytes *)ring_mz->addr;
+
+ ring_rxd_display_dword(rte_le_to_cpu_64(\
+ ring[desc_id].lo_dword));
+ ring_rxd_display_dword(rte_le_to_cpu_64(\
+ ring[desc_id].hi_dword));
+ }
}
static void
ring_tx_descriptor_display(const struct rte_memzone *ring_mz, uint16_t desc_id)
{
- struct igb_ring_desc *ring;
- struct igb_ring_desc rd;
+ struct igb_ring_desc_16_bytes *ring;
+ struct igb_ring_desc_16_bytes txd;
- ring = (struct igb_ring_desc *) ring_mz->addr;
- rd.lo_dword = rte_le_to_cpu_64(ring[desc_id].lo_dword);
- rd.hi_dword = rte_le_to_cpu_64(ring[desc_id].hi_dword);
+ ring = (struct igb_ring_desc_16_bytes *)ring_mz->addr;
+ txd.lo_dword = rte_le_to_cpu_64(ring[desc_id].lo_dword);
+ txd.hi_dword = rte_le_to_cpu_64(ring[desc_id].hi_dword);
printf(" 0x%08X - 0x%08X / 0x%08X - 0x%08X\n",
- (unsigned)rd.lo_dword.words.lo, (unsigned)rd.lo_dword.words.hi,
- (unsigned)rd.hi_dword.words.lo, (unsigned)rd.hi_dword.words.hi);
+ (unsigned)txd.lo_dword.words.lo, (unsigned)txd.lo_dword.words.hi,
+ (unsigned)txd.hi_dword.words.lo, (unsigned)txd.hi_dword.words.hi);
}
void
@@ -644,7 +671,7 @@ rx_ring_desc_display(portid_t port_id, queueid_t rxq_id, uint16_t rxd_id)
rx_mz = ring_dma_zone_lookup("rx_ring", port_id, rxq_id);
if (rx_mz == NULL)
return;
- ring_rx_descriptor_display(rx_mz, rxd_id);
+ ring_rx_descriptor_display(rx_mz, port_id, rxd_id);
}
void
--
1.8.1.4
^ permalink raw reply related [flat|nested] 16+ messages in thread
* Re: [PATCH 0/7] enhancements for i40e
[not found] ` <1403244889-21358-1-git-send-email-helin.zhang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
` (6 preceding siblings ...)
2014-06-20 6:14 ` [PATCH 7/7] app/testpmd: rework for displaying different size of RX descriptors Helin Zhang
@ 2014-06-20 6:23 ` Zhang, Helin
7 siblings, 0 replies; 16+ messages in thread
From: Zhang, Helin @ 2014-06-20 6:23 UTC (permalink / raw)
To: Thomas Monjalon; +Cc: dev-VfR2kkLFssw@public.gmane.org
-----Original Message-----
From: Zhang, Helin
Sent: Friday, June 20, 2014 2:15 PM
To: dev-VfR2kkLFssw@public.gmane.org
Cc: Zhang, Helin
Subject: [PATCH 0/7] enhancements for i40e
These patches are enhancements for i40e or relevant. In detail, they include:
* fix for getting correct RSS hash result in i40e RX functions.
* support crc stripping hw offload in VF driver.
* ignore the failure of updating default filter setting.
* fix for updating the hash lookup table of PF RSS.
* disable double vlan by default during initialization.
* fix for copying wrong size of link info, and remove an
useless function.
* rework in testpmd to support displaying different size
of RX descriptors.
Helin Zhang (7):
i40e: fix for getting correct RSS hash result
i40evf: support configuring crc stripping hw offload
i40e: ignore the failure of updating default filter settings
i40e: fix for updating the hash lookup table of PF RSS
i40e: double vlan should be specifically disabled by default
i40evf: fix for copying wrong size of link info, and remove an useless
function
app/testpmd: rework for displaying different size of RX descriptors
app/test-pmd/config.c | 77 ++++++++++++++++++++++++------------
lib/librte_pmd_i40e/i40e_ethdev.c | 20 ++++++----
lib/librte_pmd_i40e/i40e_ethdev_vf.c | 32 +++++++--------
lib/librte_pmd_i40e/i40e_rxtx.c | 4 +-
4 files changed, 82 insertions(+), 51 deletions(-)
--
1.8.1.4
-----------------------------------------------------------------------------------------------------------------------------------------------
Hi Thomas
Please help to merge these patches which is for 1.7.0-rc2!
It has important fix for i40e PMD running on the latest version of NIC firmware.
It also contains the rework you asked in testpmd.
Thank you very much!
Regards,
Helin
^ permalink raw reply [flat|nested] 16+ messages in thread