From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id B0FF32C56 for ; Sun, 26 Feb 2017 22:54:47 +0100 (CET) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga105.fm.intel.com with ESMTP; 26 Feb 2017 13:54:46 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.35,210,1484035200"; d="scan'208";a="1135209155" Received: from imail001.iil.intel.com ([10.184.207.12]) by fmsmga002.fm.intel.com with ESMTP; 26 Feb 2017 13:54:45 -0800 Received: from desku.iil.intel.com ([143.185.141.168]) by imail001.iil.intel.com with ESMTP id v1QLshfG017518; Sun, 26 Feb 2017 23:54:43 +0200 From: Rami Rosen To: dev@dpdk.org Cc: Rami Rosen Date: Sun, 26 Feb 2017 23:53:59 -0500 Message-Id: <20170227045359.20479-1-rami.rosen@intel.com> X-Mailer: git-send-email 2.9.3 Subject: [dpdk-dev] [PATCH] net/i40e: Fix a typo in i40e_flow.c. X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 Feb 2017 21:54:48 -0000 This patch fixes a trivial typo in i40e_flow.c. Signed-off-by: Rami Rosen --- 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, -- 2.9.3