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 386F3A00C5; Sun, 26 Apr 2020 13:28:02 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 325881BF8C; Sun, 26 Apr 2020 13:28:01 +0200 (CEST) Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com [66.111.4.28]) by dpdk.org (Postfix) with ESMTP id 7570D1BF75 for ; Sun, 26 Apr 2020 13:27:59 +0200 (CEST) Received: from compute7.internal (compute7.nyi.internal [10.202.2.47]) by mailout.nyi.internal (Postfix) with ESMTP id EEA7E5C00D5; Sun, 26 Apr 2020 07:27:58 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute7.internal (MEProxy); Sun, 26 Apr 2020 07:27:58 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding:content-type; s=fm1; bh= E+Hwt7twQSfS8zn0/TKYIkexIpG1PKrF6fJu3vcniCg=; b=AlQukHNLRRqanYZx MxpADMaM+0A63Jf/G+SSmBIbZnOtZEsWuvN6v2bdpMXIdm63WsZMWgy6VeMEGweP DrmOH6NGNRg3do7TGToCjLE26qofV7XBth2tSGsUYommjcyIjJ5KXmAe7+Ogwfmn +Iw/GK8DE0hcRDsRB6EzfxNQQPRJHAyXwv8YcDj2NdVuwbQa5CTY3+3CR6qs0nMp cxBjmJQ2dkrCt2H08xfm5QWlX+HQJJFYviKxP4D/5VgXvAf/Guc5dnq0NoTwqdBQ XRJ1fZJwtue2UgVKSdlv1mnVj02PuVRTRRy1N6Ix6N4k1qT7f/98ULvMnE8/+Izu pIRbzA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm2; bh=E+Hwt7twQSfS8zn0/TKYIkexIpG1PKrF6fJu3vcni Cg=; b=nQ8C/3Qmvl2gkZPSGdzAnSBO1+Rf7J+PN0ckLeoBWTrfQVs4h53LXaUhA qj2JcKz99OOd5rxTRlmr7nULvGMQ6eocNDEzBRiW/nH5IBABhgUVeSCodwZfn/85 lvAZ45ucOF+6NjW8bbDXrzjbh+MsiVSu7Vbwgc1KQVrt1cSGapoyKjaFNfipQ6YA KeDQ88gHKFcXNHzn+yl2qVCRWEPLfsvCzSuuRevjW6/MjcGhjTesECACVdUPvqVs zRj4GJP3lkf+ygERQ/5qhYinNrFwOwTST0z9XeAp/wbDV/iQRiksiJ8dkPu3NSrg kPA0pRV9CUM8Nfl2GZERtryPScAeg== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgeduhedrheejgdegudcutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecusecvtfgvtghiphhivghnthhsucdlqddutddtmdenuc fjughrpefhvffufffkjghfggfgtgesthfuredttddtvdenucfhrhhomhepvfhhohhmrghs ucfoohhnjhgrlhhonhcuoehthhhomhgrshesmhhonhhjrghlohhnrdhnvghtqeenucfkph epjeejrddufeegrddvtdefrddukeegnecuvehluhhsthgvrhfuihiivgeptdenucfrrghr rghmpehmrghilhhfrhhomhepthhhohhmrghssehmohhnjhgrlhhonhdrnhgvth X-ME-Proxy: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 63D8C3065DDA; Sun, 26 Apr 2020 07:27:57 -0400 (EDT) From: Thomas Monjalon To: Raslan Darawsheh Cc: "dev@dpdk.org" , "david.marchand@redhat.com" , Anatoly Burakov , Li Feng Date: Sun, 26 Apr 2020 13:27:56 +0200 Message-ID: <10730169.jrtcCam0TZ@thomas> In-Reply-To: References: <20200426104725.2809101-1-thomas@monjalon.net> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] mem: fix build 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" > > Some compilers (on RHEL7 and CentOS7) were getting this error: > > error: "RTE_EXEC_ENV_FREEBSD" is not defined [-Werror=undef] > > > > Existence of a macro must be checked with "#ifdef" or "#if defined". > > > > Fixes: d72e4042c5eb ("mem: exclude unused memory from core dump") > > > > Signed-off-by: Thomas Monjalon > Tested-by: Raslan Darawsheh Applied