patch 'net/vhost: add missing newline in logs' has been queued to stable release 20.11.8

luca.boccassi at gmail.com luca.boccassi at gmail.com
Wed Mar 22 01:41:46 CET 2023


Hi,

FYI, your patch has been queued to stable release 20.11.8

Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 03/23/23. So please
shout if anyone has objections.

Also note that after the patch there's a diff of the upstream commit vs the
patch applied to the branch. This will indicate if there was any rebasing
needed to apply to the stable branch. If there were code changes for rebasing
(ie: not only metadata diffs), please double check that the rebase was
correctly done.

Queued patches are on a temporary branch at:
https://github.com/bluca/dpdk-stable

This queued commit can be viewed at:
https://github.com/bluca/dpdk-stable/commit/6de448700ea0880adf455369e0e9f2042d09b799

Thanks.

Luca Boccassi

---
>From 6de448700ea0880adf455369e0e9f2042d09b799 Mon Sep 17 00:00:00 2001
From: David Marchand <david.marchand at redhat.com>
Date: Thu, 9 Mar 2023 13:37:50 +0100
Subject: [PATCH] net/vhost: add missing newline in logs

[ upstream commit d539a20b7561d9e97d13f9b43d74ec030bd1a4ba ]

Fixes: 3f8ff12821e4 ("vhost: support interrupt mode")
Fixes: 8f1750f42e2d ("net/vhost: perform SW checksum in Rx path")
Fixes: 8ba1723783b2 ("net/vhost: perform SW checksum in Tx path")

Signed-off-by: David Marchand <david.marchand at redhat.com>
Reviewed-by: Chenbo Xia <chenbo.xia at intel.com>
---
 drivers/net/vhost/rte_eth_vhost.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/net/vhost/rte_eth_vhost.c b/drivers/net/vhost/rte_eth_vhost.c
index c994f2429b..5e57e35ebd 100644
--- a/drivers/net/vhost/rte_eth_vhost.c
+++ b/drivers/net/vhost/rte_eth_vhost.c
@@ -623,7 +623,7 @@ eth_rxq_intr_disable(struct rte_eth_dev *dev, uint16_t qid)
 
 	ret = rte_vhost_get_vhost_vring(vq->vid, (qid << 1) + 1, &vring);
 	if (ret < 0) {
-		VHOST_LOG(ERR, "Failed to get rxq%d's vring", qid);
+		VHOST_LOG(ERR, "Failed to get rxq%d's vring\n", qid);
 		return ret;
 	}
 	VHOST_LOG(INFO, "Disable interrupt for rxq%d\n", qid);
@@ -819,7 +819,7 @@ new_device(int vid)
 		if (dev_conf->intr_conf.rxq) {
 			if (eth_vhost_install_intr(eth_dev) < 0) {
 				VHOST_LOG(INFO,
-					"Failed to install interrupt handler.");
+					"Failed to install interrupt handler.\n");
 					return -1;
 			}
 		}
@@ -1152,7 +1152,7 @@ eth_dev_start(struct rte_eth_dev *eth_dev)
 		if (dev_conf->intr_conf.rxq) {
 			if (eth_vhost_install_intr(eth_dev) < 0) {
 				VHOST_LOG(INFO,
-					"Failed to install interrupt handler.");
+					"Failed to install interrupt handler.\n");
 					return -1;
 			}
 		}
-- 
2.39.2

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2023-03-21 21:56:37.460657174 +0000
+++ 0010-net-vhost-add-missing-newline-in-logs.patch	2023-03-21 21:56:37.064806882 +0000
@@ -1 +1 @@
-From d539a20b7561d9e97d13f9b43d74ec030bd1a4ba Mon Sep 17 00:00:00 2001
+From 6de448700ea0880adf455369e0e9f2042d09b799 Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit d539a20b7561d9e97d13f9b43d74ec030bd1a4ba ]
+
@@ -9 +10,0 @@
-Cc: stable at dpdk.org
@@ -14,2 +15,2 @@
- drivers/net/vhost/rte_eth_vhost.c | 10 +++++-----
- 1 file changed, 5 insertions(+), 5 deletions(-)
+ drivers/net/vhost/rte_eth_vhost.c | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
@@ -18 +19 @@
-index 9c609b45a3..198bf4d1f4 100644
+index c994f2429b..5e57e35ebd 100644
@@ -21,19 +22 @@
-@@ -297,7 +297,7 @@ vhost_dev_csum_configure(struct rte_eth_dev *eth_dev)
- 	if (internal->features & (1ULL << VIRTIO_NET_F_CSUM)) {
- 		if (!(rxmode->offloads &
- 				(RTE_ETH_RX_OFFLOAD_UDP_CKSUM | RTE_ETH_RX_OFFLOAD_TCP_CKSUM))) {
--			VHOST_LOG(NOTICE, "Rx csum will be done in SW, may impact performance.");
-+			VHOST_LOG(NOTICE, "Rx csum will be done in SW, may impact performance.\n");
- 			internal->rx_sw_csum = true;
- 		}
- 	}
-@@ -305,7 +305,7 @@ vhost_dev_csum_configure(struct rte_eth_dev *eth_dev)
- 	if (!(internal->features & (1ULL << VIRTIO_NET_F_GUEST_CSUM))) {
- 		if (txmode->offloads &
- 				(RTE_ETH_TX_OFFLOAD_UDP_CKSUM | RTE_ETH_TX_OFFLOAD_TCP_CKSUM)) {
--			VHOST_LOG(NOTICE, "Tx csum will be done in SW, may impact performance.");
-+			VHOST_LOG(NOTICE, "Tx csum will be done in SW, may impact performance.\n");
- 			internal->tx_sw_csum = true;
- 		}
- 	}
-@@ -646,7 +646,7 @@ eth_rxq_intr_disable(struct rte_eth_dev *dev, uint16_t qid)
+@@ -623,7 +623,7 @@ eth_rxq_intr_disable(struct rte_eth_dev *dev, uint16_t qid)
@@ -48 +31 @@
-@@ -851,7 +851,7 @@ new_device(int vid)
+@@ -819,7 +819,7 @@ new_device(int vid)
@@ -57 +40 @@
-@@ -1191,7 +1191,7 @@ eth_dev_start(struct rte_eth_dev *eth_dev)
+@@ -1152,7 +1152,7 @@ eth_dev_start(struct rte_eth_dev *eth_dev)


More information about the stable mailing list