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 06845A04C2; Thu, 21 Nov 2019 04:12:12 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 96E352BA2; Thu, 21 Nov 2019 04:12:11 +0100 (CET) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id AFE04235 for ; Thu, 21 Nov 2019 04:12:10 +0100 (CET) X-Amp-Result: UNKNOWN X-Amp-Original-Verdict: FILE UNKNOWN X-Amp-File-Uploaded: False Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 20 Nov 2019 19:12:09 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.69,224,1571727600"; d="scan'208";a="381589822" Received: from yexl-server.sh.intel.com (HELO localhost) ([10.67.117.17]) by orsmga005.jf.intel.com with ESMTP; 20 Nov 2019 19:12:07 -0800 Date: Thu, 21 Nov 2019 11:08:31 +0800 From: Ye Xiaolong To: Thomas Monjalon Cc: Rosen Xu , dev@dpdk.org, tianfei.zhang@intel.com, andy.pei@intel.com, ferruh.yigit@intel.com, david.marchand@redhat.com Message-ID: <20191121030831.GA23317@intel.com> References: <1571917119-149534-2-git-send-email-andy.pei@intel.com> <1573722187-148846-1-git-send-email-rosen.xu@intel.com> <1573722187-148846-11-git-send-email-rosen.xu@intel.com> <10496132.hlKR8GaRvu@xps> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <10496132.hlKR8GaRvu@xps> User-Agent: Mutt/1.9.4 (2018-02-28) Subject: Re: [dpdk-dev] [PATCH v18 10/19] raw/ifpga: add SEU error handler 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" On 11/20, Thomas Monjalon wrote: >Rosen (and most of your colleagues), >Please use --in-reply-to when sending a new version. >All versions must be a reply to the very first cover letter. I'll broadcast this message to our team. Thanks, Xiaolong > >14/11/2019 10:02, Rosen Xu: >> + IFPGA_RAWDEV_PMD_INFO("seu emr low: 0x%lx\n", val); > >Using %lx is usually wrong. >val is 64-bit. >On 32-bit machines (like some Intel ones), it does not compile. >I had to fix it while pulling next-net. > >The same issue was in "raw/ifpga/base: clean fme errors". > >Please check 32-bit compilation. > >Note: we should have such check in the CI. > >