Re: [PATCH v2 1/2] dts: add fwd restart decorator to rx capabilities

2025-01-26 Thread Patrick Robb
Thanks Nick - applied to next-dts with a commit message touch up.


Re: [PATCH v2 2/2] dts: add mtu update and jumbo frames test suite

2025-01-26 Thread Patrick Robb
Thanks Nick - A couple minor changes I reduced the testsuite name to simply
"mtu" based on our chat on Friday, and touched up the commit message.

Applied to next-dts.


[DPDK/DTS Bug 1619] Unit test link_bonding_autotest will fail.

2025-01-26 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1619

Bug ID: 1619
   Summary: Unit test link_bonding_autotest will fail.
   Product: DPDK
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: Normal
 Component: DTS
  Assignee: dev@dpdk.org
  Reporter: nandinipersad...@gmail.com
CC: juraj.lin...@pantheon.tech, pr...@iol.unh.edu
  Target Milestone: ---

Unit tests will fail in test_tlb_tx_burst() function with error for uneven
distribution of packets.

Resolution/Workaround:
There is no workaround available.

Affected Environment/Platform:
Fedora 20.

Driver/Module:
Link Bonding.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[DPDK/ethdev Bug 1620] Pause Frame Forwarding does not work properly on igb

2025-01-26 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1620

Bug ID: 1620
   Summary: Pause Frame Forwarding does not work properly on igb
   Product: DPDK
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: Normal
 Component: ethdev
  Assignee: dev@dpdk.org
  Reporter: nandinipersad...@gmail.com
  Target Milestone: ---

For igb devices rte_eth_flow_ctrl_set does not work as expected. Pause frames
are always forwarded on igb, regardless of the RFCE, MPMCF and DPF registers.

Implication:
Pause frames will never be rejected by the host on 1G NICs and they will always
be forwarded.

Resolution/Workaround:
There is no workaround available.

Affected Environment/Platform:
All.

Driver/Module:
Poll Mode Driver (PMD).

-- 
You are receiving this mail because:
You are the assignee for the bug.

[DPDK/ethdev Bug 1621] In packets provided by the PMD, some flags are missing

2025-01-26 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1621

Bug ID: 1621
   Summary: In packets provided by the PMD, some flags are missing
   Product: DPDK
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: Normal
 Component: ethdev
  Assignee: dev@dpdk.org
  Reporter: nandinipersad...@gmail.com
  Target Milestone: ---

Description:
In packets provided by the PMD, some flags are missing. The application does
not have access to information provided by the hardware (packet is broadcast,
packet is multicast, packet is IPv4 and so on).

Implication:
The ol_flags field in the rte_mbuf structure is not correct and should not be
used.

Resolution/Workaround:
The application has to parse the Ethernet header itself to get the information,
which is slower.

Affected Environment/Platform:
All.

Driver/Module:
Poll Mode Driver (PMD).

-- 
You are receiving this mail because:
You are the assignee for the bug.

[PATCH v2] net/virtio: add virtio hash report feature

2025-01-26 Thread Kommula Shiva Shankar
This patch adds virtio hash report feature, which is
supported in packet queue mode with scalar version

Signed-off-by: Kommula Shiva Shankar 
---
 drivers/net/virtio/virtio.h   |  2 ++
 drivers/net/virtio/virtio_ethdev.c| 20 -
 drivers/net/virtio/virtio_ethdev.h|  1 +
 drivers/net/virtio/virtio_rxtx.c  | 30 +++
 .../net/virtio/virtio_user/virtio_user_dev.c  |  1 +
 drivers/net/virtio/virtqueue.h| 21 +
 6 files changed, 74 insertions(+), 1 deletion(-)

diff --git a/drivers/net/virtio/virtio.h b/drivers/net/virtio/virtio.h
index ef5827c5f5..c2a0fd477c 100644
--- a/drivers/net/virtio/virtio.h
+++ b/drivers/net/virtio/virtio.h
@@ -30,6 +30,7 @@
 #define VIRTIO_NET_F_GUEST_ANNOUNCE 21 /* Guest can announce device on the 
network */
 #define VIRTIO_NET_F_MQ22  /* Device supports Receive Flow 
Steering */
 #define VIRTIO_NET_F_CTRL_MAC_ADDR 23  /* Set MAC address */
+#define VIRTIO_NET_F_HASH_REPORT  57/* Supports hash report */
 #define VIRTIO_NET_F_RSS   60  /* RSS supported */
 
 /*
@@ -187,6 +188,7 @@ struct virtio_hw {
uint8_t started;
uint8_t weak_barriers;
uint8_t vlan_strip;
+   uint8_t has_hash_report;
bool rx_ol_scatter;
uint8_t has_tx_offload;
uint8_t has_rx_offload;
diff --git a/drivers/net/virtio/virtio_ethdev.c 
b/drivers/net/virtio/virtio_ethdev.c
index 70d4839def..caacbce57a 100644
--- a/drivers/net/virtio/virtio_ethdev.c
+++ b/drivers/net/virtio/virtio_ethdev.c
@@ -1796,7 +1796,9 @@ virtio_init_device(struct rte_eth_dev *eth_dev, uint64_t 
req_features)
eth_dev->data->dev_flags &= ~RTE_ETH_DEV_INTR_LSC;
 
/* Setting up rx_header size for the device */
-   if (virtio_with_feature(hw, VIRTIO_NET_F_MRG_RXBUF) ||
+   if (virtio_with_feature(hw, VIRTIO_NET_F_HASH_REPORT))
+   hw->vtnet_hdr_size = sizeof(struct virtio_net_hdr_hash_report);
+   else if (virtio_with_feature(hw, VIRTIO_NET_F_MRG_RXBUF) ||
virtio_with_feature(hw, VIRTIO_F_VERSION_1) ||
virtio_with_packed_queue(hw))
hw->vtnet_hdr_size = sizeof(struct virtio_net_hdr_mrg_rxbuf);
@@ -2181,6 +2183,10 @@ virtio_dev_configure(struct rte_eth_dev *dev)
(1ULL << VIRTIO_NET_F_GUEST_TSO4) |
(1ULL << VIRTIO_NET_F_GUEST_TSO6);
 
+   if (rx_offloads & RTE_ETH_RX_OFFLOAD_RSS_HASH)
+   req_features |=
+   (1ULL << VIRTIO_NET_F_HASH_REPORT);
+
if (tx_offloads & (RTE_ETH_TX_OFFLOAD_UDP_CKSUM |
   RTE_ETH_TX_OFFLOAD_TCP_CKSUM))
req_features |= (1ULL << VIRTIO_NET_F_CSUM);
@@ -2233,6 +2239,9 @@ virtio_dev_configure(struct rte_eth_dev *dev)
if (rx_offloads & RTE_ETH_RX_OFFLOAD_VLAN_STRIP)
hw->vlan_strip = 1;
 
+   if (rx_offloads & RTE_ETH_RX_OFFLOAD_RSS_HASH)
+   hw->has_hash_report = 1;
+
hw->rx_ol_scatter = (rx_offloads & RTE_ETH_RX_OFFLOAD_SCATTER);
 
if ((rx_offloads & RTE_ETH_RX_OFFLOAD_VLAN_FILTER) &&
@@ -2285,6 +2294,12 @@ virtio_dev_configure(struct rte_eth_dev *dev)
"disabled packed ring vectorized rx for 
TCP_LRO enabled");
hw->use_vec_rx = 0;
}
+
+   if (rx_offloads & RTE_ETH_RX_OFFLOAD_RSS_HASH) {
+   PMD_DRV_LOG(INFO,
+   "disabled packed ring vectorized rx for 
RSS_HASH enabled");
+   hw->use_vec_rx = 0;
+   }
}
} else {
if (virtio_with_feature(hw, VIRTIO_F_IN_ORDER)) {
@@ -2669,6 +2684,9 @@ virtio_dev_info_get(struct rte_eth_dev *dev, struct 
rte_eth_dev_info *dev_info)
dev_info->flow_type_rss_offloads = 0;
}
 
+   if (host_features & (1ULL << VIRTIO_NET_F_HASH_REPORT))
+   dev_info->rx_offload_capa |= RTE_ETH_RX_OFFLOAD_RSS_HASH;
+
if (host_features & (1ULL << VIRTIO_F_RING_PACKED)) {
/*
 * According to 2.7 Packed Virtqueues,
diff --git a/drivers/net/virtio/virtio_ethdev.h 
b/drivers/net/virtio/virtio_ethdev.h
index 7be1c9acd0..7aa771fd2b 100644
--- a/drivers/net/virtio/virtio_ethdev.h
+++ b/drivers/net/virtio/virtio_ethdev.h
@@ -46,6 +46,7 @@
 1u << VIRTIO_NET_F_CSUM   |\
 1u << VIRTIO_NET_F_HOST_TSO4  |\
 1u << VIRTIO_NET_F_HOST_TSO6  |\
+1ULL << VIRTIO_NET_F_HASH_REPORT  |\
 1ULL << VIRTIO_NET_F_RSS)
 
 extern const struct eth_dev_ops virtio_user_secondary_eth_dev_ops;
diff --git a/drivers/net/virtio/virtio_rxtx.c b/drivers/net/virtio/virtio_rxtx.c
index b67f063b31..35bd61350c 100644
--- a/drivers/net/virtio/virtio_rxtx.c
+++ b/drivers/net/virtio/virtio_rxtx.c
@@ -40,6 

[PATCH] net/cnxk: fix of NIX send header L3 type

2025-01-26 Thread Rahul Bhansali
For small packets less than 55 bytes, SQ error interrupts are
observed.
When checksum offload flag is enabled and mbuf ol_flags are not
set, then default L3 type will be set to IPv6 in vector
processing. Based on this, HW will still validate for minimum
header size and generate send header error if mismatch.

To address this, will set default L3 type to none. Mbuf ol_flags
RTE_MBUF_F_TX_IPV6 will set with offload feature TSO or L4
checksum only, so handled in corresponding routine.

Fixes: f71b7dbbf04b ("net/cnxk: add vector Tx for CN10K")
Fixes: e829e60c6917 ("net/cnxk: support Tx burst vector for CN20K")

Signed-off-by: Rahul Bhansali 
---
 drivers/net/cnxk/cn10k_tx.h | 7 +--
 drivers/net/cnxk/cn20k_tx.h | 7 +--
 2 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/drivers/net/cnxk/cn10k_tx.h b/drivers/net/cnxk/cn10k_tx.h
index 7d9b259a5f..77f4e54cd8 100644
--- a/drivers/net/cnxk/cn10k_tx.h
+++ b/drivers/net/cnxk/cn10k_tx.h
@@ -1773,6 +1773,9 @@ cn10k_nix_prepare_tso(struct rte_mbuf *m, union 
nix_send_hdr_w1_u *w1,
w0->lso_mps = m->tso_segsz;
w0->lso_format = NIX_LSO_FORMAT_IDX_TSOV4 + !!(ol_flags & 
RTE_MBUF_F_TX_IPV6);
w1->ol4type = NIX_SENDL4TYPE_TCP_CKSUM;
+   w1->ol3type = ((!!(ol_flags & RTE_MBUF_F_TX_IPV4)) << 1) +
+ ((!!(ol_flags & RTE_MBUF_F_TX_IPV6)) << 2) +
+ !!(ol_flags & RTE_MBUF_F_TX_IP_CKSUM);
 
/* Handle tunnel tso */
if ((flags & NIX_TX_OFFLOAD_OL3_OL4_CSUM_F) &&
@@ -2477,7 +2480,7 @@ cn10k_nix_xmit_pkts_vector(void *tx_queue, uint64_t *ws,
 */
const uint8x16_t tbl = {
/* [0-15] = il4type:il3type */
-   0x04, /* none (IPv6 assumed) */
+   0x00, /* none */
0x14, /* RTE_MBUF_F_TX_TCP_CKSUM (IPv6 assumed) 
*/
0x24, /* RTE_MBUF_F_TX_SCTP_CKSUM (IPv6 
assumed) */
0x34, /* RTE_MBUF_F_TX_UDP_CKSUM (IPv6 assumed) 
*/
@@ -2681,7 +2684,7 @@ cn10k_nix_xmit_pkts_vector(void *tx_queue, uint64_t *ws,
const uint8x16x2_t tbl = {{
{
/* [0-15] = il4type:il3type */
-   0x04, /* none (IPv6) */
+   0x00, /* none */
0x14, /* RTE_MBUF_F_TX_TCP_CKSUM (IPv6) 
*/
0x24, /* RTE_MBUF_F_TX_SCTP_CKSUM 
(IPv6) */
0x34, /* RTE_MBUF_F_TX_UDP_CKSUM (IPv6) 
*/
diff --git a/drivers/net/cnxk/cn20k_tx.h b/drivers/net/cnxk/cn20k_tx.h
index c731406529..dd28be1edd 100644
--- a/drivers/net/cnxk/cn20k_tx.h
+++ b/drivers/net/cnxk/cn20k_tx.h
@@ -1733,6 +1733,9 @@ cn20k_nix_prepare_tso(struct rte_mbuf *m, union 
nix_send_hdr_w1_u *w1, union nix
w0->lso_mps = m->tso_segsz;
w0->lso_format = NIX_LSO_FORMAT_IDX_TSOV4 + !!(ol_flags & 
RTE_MBUF_F_TX_IPV6);
w1->ol4type = NIX_SENDL4TYPE_TCP_CKSUM;
+   w1->ol3type = ((!!(ol_flags & RTE_MBUF_F_TX_IPV4)) << 1) +
+ ((!!(ol_flags & RTE_MBUF_F_TX_IPV6)) << 2) +
+ !!(ol_flags & RTE_MBUF_F_TX_IP_CKSUM);
 
/* Handle tunnel tso */
if ((flags & NIX_TX_OFFLOAD_OL3_OL4_CSUM_F) && (ol_flags & 
RTE_MBUF_F_TX_TUNNEL_MASK)) {
@@ -2395,7 +2398,7 @@ cn20k_nix_xmit_pkts_vector(void *tx_queue, uint64_t *ws, 
struct rte_mbuf **tx_pk
 */
const uint8x16_t tbl = {
/* [0-15] = il4type:il3type */
-   0x04, /* none (IPv6 assumed) */
+   0x04, /* none */
0x14, /* RTE_MBUF_F_TX_TCP_CKSUM (IPv6 assumed) 
*/
0x24, /* RTE_MBUF_F_TX_SCTP_CKSUM (IPv6 
assumed) */
0x34, /* RTE_MBUF_F_TX_UDP_CKSUM (IPv6 assumed) 
*/
@@ -2595,7 +2598,7 @@ cn20k_nix_xmit_pkts_vector(void *tx_queue, uint64_t *ws, 
struct rte_mbuf **tx_pk
const uint8x16x2_t tbl = {{
{
/* [0-15] = il4type:il3type */
-   0x04, /* none (IPv6) */
+   0x04, /* none */
0x14, /* RTE_MBUF_F_TX_TCP_CKSUM (IPv6) 
*/
0x24, /* RTE_MBUF_F_TX_SCTP_CKSUM 
(IPv6) */
0x34, /* RTE_MBUF_F_TX_UDP_CKSUM (IPv6) 
*/
-- 
2.25.1



[PATCH] net/virtio: add virtio hash report feature

2025-01-26 Thread Kommula Shiva Shankar
This patch adds virtio hash report feature, which is
supported in packet queue mode with scalar version

Signed-off-by: Kommula Shiva Shankar 
---
 drivers/net/virtio/virtio.h   |  2 ++
 drivers/net/virtio/virtio_ethdev.c| 20 -
 drivers/net/virtio/virtio_ethdev.h|  1 +
 drivers/net/virtio/virtio_rxtx.c  | 30 +++
 .../net/virtio/virtio_user/virtio_user_dev.c  |  1 +
 drivers/net/virtio/virtqueue.h| 21 +
 6 files changed, 74 insertions(+), 1 deletion(-)

diff --git a/drivers/net/virtio/virtio.h b/drivers/net/virtio/virtio.h
index ef5827c5f5..c2a0fd477c 100644
--- a/drivers/net/virtio/virtio.h
+++ b/drivers/net/virtio/virtio.h
@@ -30,6 +30,7 @@
 #define VIRTIO_NET_F_GUEST_ANNOUNCE 21 /* Guest can announce device on the 
network */
 #define VIRTIO_NET_F_MQ22  /* Device supports Receive Flow 
Steering */
 #define VIRTIO_NET_F_CTRL_MAC_ADDR 23  /* Set MAC address */
+#define VIRTIO_NET_F_HASH_REPORT  57/* Supports hash report */
 #define VIRTIO_NET_F_RSS   60  /* RSS supported */
 
 /*
@@ -187,6 +188,7 @@ struct virtio_hw {
uint8_t started;
uint8_t weak_barriers;
uint8_t vlan_strip;
+   uint8_t has_hash_report;
bool rx_ol_scatter;
uint8_t has_tx_offload;
uint8_t has_rx_offload;
diff --git a/drivers/net/virtio/virtio_ethdev.c 
b/drivers/net/virtio/virtio_ethdev.c
index 70d4839def..caacbce57a 100644
--- a/drivers/net/virtio/virtio_ethdev.c
+++ b/drivers/net/virtio/virtio_ethdev.c
@@ -1796,7 +1796,9 @@ virtio_init_device(struct rte_eth_dev *eth_dev, uint64_t 
req_features)
eth_dev->data->dev_flags &= ~RTE_ETH_DEV_INTR_LSC;
 
/* Setting up rx_header size for the device */
-   if (virtio_with_feature(hw, VIRTIO_NET_F_MRG_RXBUF) ||
+   if (virtio_with_feature(hw, VIRTIO_NET_F_HASH_REPORT))
+   hw->vtnet_hdr_size = sizeof(struct virtio_net_hdr_hash_report);
+   else if (virtio_with_feature(hw, VIRTIO_NET_F_MRG_RXBUF) ||
virtio_with_feature(hw, VIRTIO_F_VERSION_1) ||
virtio_with_packed_queue(hw))
hw->vtnet_hdr_size = sizeof(struct virtio_net_hdr_mrg_rxbuf);
@@ -2181,6 +2183,10 @@ virtio_dev_configure(struct rte_eth_dev *dev)
(1ULL << VIRTIO_NET_F_GUEST_TSO4) |
(1ULL << VIRTIO_NET_F_GUEST_TSO6);
 
+   if (rx_offloads & RTE_ETH_RX_OFFLOAD_RSS_HASH)
+   req_features |=
+   (1ULL << VIRTIO_NET_F_HASH_REPORT);
+
if (tx_offloads & (RTE_ETH_TX_OFFLOAD_UDP_CKSUM |
   RTE_ETH_TX_OFFLOAD_TCP_CKSUM))
req_features |= (1ULL << VIRTIO_NET_F_CSUM);
@@ -2233,6 +2239,9 @@ virtio_dev_configure(struct rte_eth_dev *dev)
if (rx_offloads & RTE_ETH_RX_OFFLOAD_VLAN_STRIP)
hw->vlan_strip = 1;
 
+   if (rx_offloads & RTE_ETH_RX_OFFLOAD_RSS_HASH)
+   hw->has_hash_report = 1;
+
hw->rx_ol_scatter = (rx_offloads & RTE_ETH_RX_OFFLOAD_SCATTER);
 
if ((rx_offloads & RTE_ETH_RX_OFFLOAD_VLAN_FILTER) &&
@@ -2285,6 +2294,12 @@ virtio_dev_configure(struct rte_eth_dev *dev)
"disabled packed ring vectorized rx for 
TCP_LRO enabled");
hw->use_vec_rx = 0;
}
+
+   if (rx_offloads & RTE_ETH_RX_OFFLOAD_RSS_HASH) {
+   PMD_DRV_LOG(INFO,
+   "disabled packed ring vectorized rx for 
RSS_HASH enabled");
+   hw->use_vec_rx = 0;
+   }
}
} else {
if (virtio_with_feature(hw, VIRTIO_F_IN_ORDER)) {
@@ -2669,6 +2684,9 @@ virtio_dev_info_get(struct rte_eth_dev *dev, struct 
rte_eth_dev_info *dev_info)
dev_info->flow_type_rss_offloads = 0;
}
 
+   if (host_features & (1ULL << VIRTIO_NET_F_HASH_REPORT))
+   dev_info->rx_offload_capa |= RTE_ETH_RX_OFFLOAD_RSS_HASH;
+
if (host_features & (1ULL << VIRTIO_F_RING_PACKED)) {
/*
 * According to 2.7 Packed Virtqueues,
diff --git a/drivers/net/virtio/virtio_ethdev.h 
b/drivers/net/virtio/virtio_ethdev.h
index 7be1c9acd0..7aa771fd2b 100644
--- a/drivers/net/virtio/virtio_ethdev.h
+++ b/drivers/net/virtio/virtio_ethdev.h
@@ -46,6 +46,7 @@
 1u << VIRTIO_NET_F_CSUM   |\
 1u << VIRTIO_NET_F_HOST_TSO4  |\
 1u << VIRTIO_NET_F_HOST_TSO6  |\
+1ULL << VIRTIO_NET_F_HASH_REPORT  |\
 1ULL << VIRTIO_NET_F_RSS)
 
 extern const struct eth_dev_ops virtio_user_secondary_eth_dev_ops;
diff --git a/drivers/net/virtio/virtio_rxtx.c b/drivers/net/virtio/virtio_rxtx.c
index b67f063b31..35bd61350c 100644
--- a/drivers/net/virtio/virtio_rxtx.c
+++ b/drivers/net/virtio/virtio_rxtx.c
@@ -40,6