[dpdk-stable] patch 'app/testpmd: fix RFC addresses for Tx only' has been queued to stable release 19.11.1

luca.boccassi at gmail.com luca.boccassi at gmail.com
Tue Feb 11 12:21:42 CET 2020


Hi,

FYI, your patch has been queued to stable release 19.11.1

Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 02/13/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 8716a3106ee44c348e986dcbd25f06708f8c7aba Mon Sep 17 00:00:00 2001
From: Stephen Hemminger <stephen at networkplumber.org>
Date: Sun, 26 Jan 2020 19:34:58 -0800
Subject: [PATCH] app/testpmd: fix RFC addresses for Tx only

[ upstream commit 8d7c19d9e46957b045690d1530ba0a7be5c5dc03 ]

The previous patch to change default IP addresses for tx only
mode got the wrong values (typo).

Fixes: bf5b2126bf44 ("app/testpmd: add ability to set Tx IP and UDP parameters")

Signed-off-by: Stephen Hemminger <stephen at networkplumber.org>
Reviewed-by: Ferruh Yigit <ferruh.yigit at intel.com>
---
 app/test-pmd/txonly.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app/test-pmd/txonly.c b/app/test-pmd/txonly.c
index 3caf281cb8..d42a157f8f 100644
--- a/app/test-pmd/txonly.c
+++ b/app/test-pmd/txonly.c
@@ -45,8 +45,8 @@ uint16_t tx_udp_src_port = 9;
 uint16_t tx_udp_dst_port = 9;
 
 /* use RFC5735 / RFC2544 reserved network test addresses */
-uint32_t tx_ip_src_addr = (192U << 24) | (18 << 16) | (0 << 8) | 1;
-uint32_t tx_ip_dst_addr = (192U << 24) | (18 << 16) | (0 << 8) | 2;
+uint32_t tx_ip_src_addr = (198U << 24) | (18 << 16) | (0 << 8) | 1;
+uint32_t tx_ip_dst_addr = (198U << 24) | (18 << 16) | (0 << 8) | 2;
 
 #define IP_DEFTTL  64   /* from RFC 1340. */
 
-- 
2.20.1

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2020-02-11 11:17:44.058490813 +0000
+++ 0156-app-testpmd-fix-RFC-addresses-for-Tx-only.patch	2020-02-11 11:17:38.740007704 +0000
@@ -1,13 +1,14 @@
-From 8d7c19d9e46957b045690d1530ba0a7be5c5dc03 Mon Sep 17 00:00:00 2001
+From 8716a3106ee44c348e986dcbd25f06708f8c7aba Mon Sep 17 00:00:00 2001
 From: Stephen Hemminger <stephen at networkplumber.org>
 Date: Sun, 26 Jan 2020 19:34:58 -0800
 Subject: [PATCH] app/testpmd: fix RFC addresses for Tx only
 
+[ upstream commit 8d7c19d9e46957b045690d1530ba0a7be5c5dc03 ]
+
 The previous patch to change default IP addresses for tx only
 mode got the wrong values (typo).
 
 Fixes: bf5b2126bf44 ("app/testpmd: add ability to set Tx IP and UDP parameters")
-Cc: stable at dpdk.org
 
 Signed-off-by: Stephen Hemminger <stephen at networkplumber.org>
 Reviewed-by: Ferruh Yigit <ferruh.yigit at intel.com>
@@ -16,7 +17,7 @@
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 diff --git a/app/test-pmd/txonly.c b/app/test-pmd/txonly.c
-index 871cf6c154..4b5bec443b 100644
+index 3caf281cb8..d42a157f8f 100644
 --- a/app/test-pmd/txonly.c
 +++ b/app/test-pmd/txonly.c
 @@ -45,8 +45,8 @@ uint16_t tx_udp_src_port = 9;


More information about the stable mailing list