[dpdk-stable] patch 'app/test-sad: fix uninitialized variable' has been queued to stable release 19.11.6

luca.boccassi at gmail.com luca.boccassi at gmail.com
Wed Oct 28 11:45:01 CET 2020


Hi,

FYI, your patch has been queued to stable release 19.11.6

Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 10/30/20. 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.

Thanks.

Luca Boccassi

---
>From d3549443b21ffc8941feeb17a0882aa675a94ac4 Mon Sep 17 00:00:00 2001
From: Vladimir Medvedkin <vladimir.medvedkin at intel.com>
Date: Fri, 18 Sep 2020 13:35:56 +0100
Subject: [PATCH] app/test-sad: fix uninitialized variable

[ upstream commit d26ec0d90e8bc4489b1338a48af0023a53e3edb3 ]

Coverity issue: 362055
Fixes: 908be0651a5a ("app/test-sad: add test application for IPsec SAD")

Signed-off-by: Vladimir Medvedkin <vladimir.medvedkin at intel.com>
---
 app/test-sad/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/test-sad/main.c b/app/test-sad/main.c
index b01e84c570..8380fad744 100644
--- a/app/test-sad/main.c
+++ b/app/test-sad/main.c
@@ -617,7 +617,7 @@ main(int argc, char **argv)
 {
 	int ret;
 	struct rte_ipsec_sad *sad;
-	struct rte_ipsec_sad_conf conf;
+	struct rte_ipsec_sad_conf conf = {0};
 	unsigned int lcore_id;
 
 	ret = rte_eal_init(argc, argv);
-- 
2.20.1

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2020-10-28 10:35:16.142551783 +0000
+++ 0142-app-test-sad-fix-uninitialized-variable.patch	2020-10-28 10:35:11.716833144 +0000
@@ -1,11 +1,12 @@
-From d26ec0d90e8bc4489b1338a48af0023a53e3edb3 Mon Sep 17 00:00:00 2001
+From d3549443b21ffc8941feeb17a0882aa675a94ac4 Mon Sep 17 00:00:00 2001
 From: Vladimir Medvedkin <vladimir.medvedkin at intel.com>
 Date: Fri, 18 Sep 2020 13:35:56 +0100
 Subject: [PATCH] app/test-sad: fix uninitialized variable
 
+[ upstream commit d26ec0d90e8bc4489b1338a48af0023a53e3edb3 ]
+
 Coverity issue: 362055
 Fixes: 908be0651a5a ("app/test-sad: add test application for IPsec SAD")
-Cc: stable at dpdk.org
 
 Signed-off-by: Vladimir Medvedkin <vladimir.medvedkin at intel.com>
 ---


More information about the stable mailing list