From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 01A26A320B for ; Mon, 21 Oct 2019 14:07:43 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 52D041BEFA; Mon, 21 Oct 2019 14:07:30 +0200 (CEST) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id 6B0971BECC for ; Mon, 21 Oct 2019 14:07:22 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 21 Oct 2019 05:07:11 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.67,323,1566889200"; d="scan'208";a="372154307" Received: from npg-dpdk-cvl-simeisu-118d193.sh.intel.com ([10.67.110.183]) by orsmga005.jf.intel.com with ESMTP; 21 Oct 2019 05:07:10 -0700 From: Simei Su To: qi.z.zhang@intel.com, xiaolong.ye@intel.com Cc: dev@dpdk.org, simei.su@intel.com Date: Mon, 21 Oct 2019 20:06:51 +0800 Message-Id: <1571659612-46066-3-git-send-email-simei.su@intel.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1571659612-46066-1-git-send-email-simei.su@intel.com> References: <1571537689-351403-1-git-send-email-simei.su@intel.com> <1571659612-46066-1-git-send-email-simei.su@intel.com> Subject: [dpdk-dev] [PATCH v8 2/3] net/ice: change one member type of the pattern structure 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This patch changes a variable type from uint64_t to void pointer to avoid compilation issues for converting a point to uint64_t in i686 environment. Signed-off-by: Simei Su --- drivers/net/ice/ice_generic_flow.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/ice/ice_generic_flow.h b/drivers/net/ice/ice_generic_flow.h index 098a687..b6e4ed0 100644 --- a/drivers/net/ice/ice_generic_flow.h +++ b/drivers/net/ice/ice_generic_flow.h @@ -411,7 +411,7 @@ struct ice_pattern_match_item { enum rte_flow_item_type *pattern_list; /* pattern_list must end with RTE_FLOW_ITEM_TYPE_END */ uint64_t input_set_mask; - uint64_t meta; + void *meta; }; typedef int (*engine_init_t)(struct ice_adapter *ad); -- 1.8.3.1