From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 1A405FA88 for ; Tue, 20 Dec 2016 18:00:42 +0100 (CET) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga102.fm.intel.com with ESMTP; 20 Dec 2016 09:00:42 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,379,1477983600"; d="scan'208";a="20799516" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.237.220.29]) ([10.237.220.29]) by orsmga002.jf.intel.com with ESMTP; 20 Dec 2016 09:00:39 -0800 To: Wei Zhao , dev@dpdk.org References: <1480675394-59179-1-git-send-email-wei.zhao1@intel.com> <1480675394-59179-16-git-send-email-wei.zhao1@intel.com> Cc: wenzhuo.lu@intel.com From: Ferruh Yigit Message-ID: Date: Tue, 20 Dec 2016 17:00:38 +0000 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.5.1 MIME-Version: 1.0 In-Reply-To: <1480675394-59179-16-git-send-email-wei.zhao1@intel.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 8bit Subject: Re: [dpdk-dev] [PATCH 15/18] net/ixgbe: parse flow director filter 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: Tue, 20 Dec 2016 17:00:43 -0000 On 12/2/2016 10:43 AM, Wei Zhao wrote: > From: wei zhao1 > > check if the rule is a flow director rule, and get the flow director info. > > Signed-off-by: wei zhao1 > Signed-off-by: Wenzhuo Lu > --- <...> > + PATTERN_SKIP_VOID(rule, struct ixgbe_fdir_rule, > + RTE_FLOW_ERROR_TYPE_ITEM_NUM); > + if (item->type != RTE_FLOW_ITEM_TYPE_ETH && > + item->type != RTE_FLOW_ITEM_TYPE_IPV4 && > + item->type != RTE_FLOW_ITEM_TYPE_IPV6 && > + item->type != RTE_FLOW_ITEM_TYPE_UDP && > + item->type != RTE_FLOW_ITEM_TYPE_VXLAN && > + item->type != RTE_FLOW_ITEM_TYPE_NVGRE) { This gives build error [1], there are a few more same usage: .../drivers/net/ixgbe/ixgbe_ethdev.c:9238:17: error: comparison of constant 241 with expression of type 'const enum rte_flow_item_type' is always true [-Werror,-Wtautological-constant-out-of-range-compare] item->type != RTE_FLOW_ITEM_TYPE_NVGRE) {