From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from youngberry.canonical.com (youngberry.canonical.com [91.189.89.112]) by dpdk.org (Postfix) with ESMTP id 1753E5F0F for ; Mon, 30 Jul 2018 18:17:34 +0200 (CEST) Received: from 1.general.paelzer.uk.vpn ([10.172.196.172] helo=lap.fritz.box) by youngberry.canonical.com with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.76) (envelope-from ) id 1fkApM-00009D-KX; Mon, 30 Jul 2018 16:15:20 +0000 From: Christian Ehrhardt To: Wei Zhao Cc: Wenzhuo Lu , dpdk stable Date: Mon, 30 Jul 2018 18:11:29 +0200 Message-Id: <20180730161342.16566-44-christian.ehrhardt@canonical.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20180730161342.16566-1-christian.ehrhardt@canonical.com> References: <20180730161342.16566-1-christian.ehrhardt@canonical.com> Subject: [dpdk-stable] patch 'app/testpmd: fix VLAN TCI mask set error for FDIR' has been queued to stable release 18.05.1 X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Jul 2018 16:17:34 -0000 Hi, FYI, your patch has been queued to stable release 18.05.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 08/01/18. So please shout if anyone has objections. Thanks. Christian Ehrhardt --- >>From 798e16b72cd4f169ddee0421a46e885c94c4ec9a Mon Sep 17 00:00:00 2001 From: Wei Zhao Date: Tue, 5 Jun 2018 17:12:11 +0800 Subject: [PATCH] app/testpmd: fix VLAN TCI mask set error for FDIR [ upstream commit 26f579aa274b46f42d77228dd6628c951cba05a1 ] The vlan tci mask should be set to 0xEFFF, not 0x0, the wrong mask will cause mask error for register set. Fixes: d9d5e6f2f0ba ("app/testpmd: set default flow director mask") Signed-off-by: Wei Zhao Acked-by: Wenzhuo Lu --- app/test-pmd/testpmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test-pmd/testpmd.c b/app/test-pmd/testpmd.c index 24c199844..63c2a5aca 100644 --- a/app/test-pmd/testpmd.c +++ b/app/test-pmd/testpmd.c @@ -346,7 +346,7 @@ struct rte_fdir_conf fdir_conf = { .pballoc = RTE_FDIR_PBALLOC_64K, .status = RTE_FDIR_REPORT_STATUS, .mask = { - .vlan_tci_mask = 0x0, + .vlan_tci_mask = 0xFFEF, .ipv4_mask = { .src_ip = 0xFFFFFFFF, .dst_ip = 0xFFFFFFFF, -- 2.17.1