From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 757BFA0032; Fri, 30 Dec 2022 22:38:03 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 17823410D0; Fri, 30 Dec 2022 22:38:03 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 6615240141 for ; Fri, 30 Dec 2022 22:38:01 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1086) id 81CCF20FB191; Fri, 30 Dec 2022 13:38:00 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 81CCF20FB191 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1672436280; bh=AG/cgSvCs1Obs951oQwdBPXujFQjPSoHlaMMRQV3PSs=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=oae1W9T6q2rwFYrx8f+YMYLmizAy80G3YOX0OeTpqzqUkX5cc9I1TLYgcplJpvVZV hC9nEmrhqnBkHKJoNYzeEi67PcXtszutoWngSiUKO474nWy8bMlSBSrmNtJTtgBZzd V/yKt4bXIyyU3fA8TuQpb7Ijxa1v31TrouCR+Zsk= Date: Fri, 30 Dec 2022 13:38:00 -0800 From: Tyler Retzlaff To: Thomas Monjalon Cc: Kai Ji , dev@dpdk.org, pablo.de.lara.guarch@intel.com, David Marchand Subject: Re: [PATCH] crypto/qat: fix build Message-ID: <20221230213800.GA5139@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <20221230210728.86920-1-thomas@monjalon.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20221230210728.86920-1-thomas@monjalon.net> User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org On Fri, Dec 30, 2022 at 10:07:28PM +0100, Thomas Monjalon wrote: > When trying to compile on a fresh system, I hit this error: > > intel-ipsec-mb.h:333: error: "AES_BLOCK_SIZE" redefined > 333 | #define AES_BLOCK_SIZE IMB_AES_BLOCK_SIZE > In file included from drivers/crypto/qat/qat_sym_session.c:8: > /usr/include/openssl/aes.h:26: previous definition > 26 | # define AES_BLOCK_SIZE 16 > > I don't know why it was not seen before. > Is it because of a change in intel-ipsec-mb.h or in OpenSSL? > > Signed-off-by: Thomas Monjalon > --- owners of intel-ipsec-mb.h should guard against the namespace conflict... Acked-by: Tyler Retzlaff