From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 6A6D8918D for ; Thu, 25 May 2017 11:50:26 +0200 (CEST) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 25 May 2017 02:50:26 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.38,390,1491289200"; d="scan'208";a="91624092" Received: from yliu-dev.sh.intel.com ([10.239.67.162]) by orsmga002.jf.intel.com with ESMTP; 25 May 2017 02:50:25 -0700 From: Yuanhan Liu To: Rami Rosen Cc: Yuanhan Liu , John McNamara , dpdk stable Date: Thu, 25 May 2017 17:47:51 +0800 Message-Id: <1495705809-21416-19-git-send-email-yuanhan.liu@linux.intel.com> X-Mailer: git-send-email 1.9.0 In-Reply-To: <1495705809-21416-1-git-send-email-yuanhan.liu@linux.intel.com> References: <1495705809-21416-1-git-send-email-yuanhan.liu@linux.intel.com> Subject: [dpdk-stable] patch 'net/i40e: fix a typo in flow' has been queued to stable release 17.02.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: Thu, 25 May 2017 09:50:26 -0000 Hi, FYI, your patch has been queued to stable release 17.02.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 05/28/17. So please shout if anyone has objections. Thanks. --yliu --- >>From 114bb79b86c56bc6747f88ac39ba36e1714a73a9 Mon Sep 17 00:00:00 2001 From: Rami Rosen Date: Sun, 26 Feb 2017 23:53:59 -0500 Subject: [PATCH] net/i40e: fix a typo in flow [ upstream commit d04e7d3d560442e2a4fa66ac7b6a4e43e803042b ] This patch fixes a trivial typo in i40e_flow.c. Fixes: 47c6782344b7 ("net/i40e: fix tunnel filter") Fixes: d416530e6358 ("net/i40e: parse tunnel filter") Signed-off-by: Rami Rosen Acked-by: John McNamara --- drivers/net/i40e/i40e_flow.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/net/i40e/i40e_flow.c b/drivers/net/i40e/i40e_flow.c index c6e4d87..f163ce5 100644 --- a/drivers/net/i40e/i40e_flow.c +++ b/drivers/net/i40e/i40e_flow.c @@ -1309,7 +1309,7 @@ i40e_flow_parse_vxlan_pattern(const struct rte_flow_item *pattern, case RTE_FLOW_ITEM_TYPE_IPV4: filter->ip_type = RTE_TUNNEL_IPTYPE_IPV4; /* IPv4 is used to describe protocol, - * spec amd mask should be NULL. + * spec and mask should be NULL. */ if (item->spec || item->mask) { rte_flow_error_set(error, EINVAL, @@ -1322,7 +1322,7 @@ i40e_flow_parse_vxlan_pattern(const struct rte_flow_item *pattern, case RTE_FLOW_ITEM_TYPE_IPV6: filter->ip_type = RTE_TUNNEL_IPTYPE_IPV6; /* IPv6 is used to describe protocol, - * spec amd mask should be NULL. + * spec and mask should be NULL. */ if (item->spec || item->mask) { rte_flow_error_set(error, EINVAL, @@ -1334,7 +1334,7 @@ i40e_flow_parse_vxlan_pattern(const struct rte_flow_item *pattern, break; case RTE_FLOW_ITEM_TYPE_UDP: /* UDP is used to describe protocol, - * spec amd mask should be NULL. + * spec and mask should be NULL. */ if (item->spec || item->mask) { rte_flow_error_set(error, EINVAL, -- 1.9.0