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 252B2A0503; Wed, 18 May 2022 12:17:15 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C063C40156; Wed, 18 May 2022 12:17:14 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mails.dpdk.org (Postfix) with ESMTP id 9D34A400D6 for ; Wed, 18 May 2022 12:17:12 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1652869032; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=NGCFM8ox0qAqwqaXrk7MN8S5eXWeLZgQdaEcnbT/KZo=; b=gFyOFwBWLXSXmmMTZAooFTL3i1qF/HHDmjNN2fkQjhtoAU4J7L3oIcMSfwTruNKlugXa94 eva8stpwSjowOTsx1MxStJ7qMXITEYki+Uy+TdKTfMDrjiwzcXRlAqwtMm3sjmlfGsTQmg 3PrJuZmwoaKhdd8cVI+5ron0TnvLxX0= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-169-2sBNuoXKNgaJURpIcFA7yg-1; Wed, 18 May 2022 06:17:10 -0400 X-MC-Unique: 2sBNuoXKNgaJURpIcFA7yg-1 Received: from smtp.corp.redhat.com (int-mx10.intmail.prod.int.rdu2.redhat.com [10.11.54.10]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 4A456811E9B; Wed, 18 May 2022 10:17:10 +0000 (UTC) Received: from fchome.home (unknown [10.40.195.61]) by smtp.corp.redhat.com (Postfix) with ESMTP id EB85D492C14; Wed, 18 May 2022 10:17:08 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: thomas@monjalon.net, ferruh.yigit@xilinx.com Subject: [PATCH 00/12] Fix compilation with gcc 12 Date: Wed, 18 May 2022 12:16:45 +0200 Message-Id: <20220518101657.1230416-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.85 on 10.11.54.10 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=david.marchand@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Fedora 36 is out since early may and comes with gcc 12. This series fixes compilation or waives some checks. There might be something fishy with rte_memcpy on x86 but, for now, the rte_memcpy related fixes are on the caller side. Some "base" drivers have issues, I chose the simple solution of waiving the checks for them. Compilation is the only thing checked. Please driver maintainers, check nothing got broken. -- David Marchand David Marchand (12): common/cpt: fix build with GCC 12 crypto/cnxk: fix build with GCC 12 crypto/ipsec_mb: fix build with GCC 12 net/ena: fix build with GCC 12 net/enetfec: fix build with GCC 12 net/ice: fix build with GCC 12 net/ice/base: fix build with GCC 12 net/qede/base: fix build with GCC 12 vdpa/ifc: fix build with GCC 12 vhost/crypto: fix build with GCC 12 app/flow-perf: fix build with GCC 12 test/ipsec: fix build with GCC 12 app/test-flow-perf/main.c | 48 ++++++---------------------- app/test/test_ipsec.c | 48 +++++++++++++++++----------- drivers/common/cpt/cpt_ucode.h | 8 +++++ drivers/crypto/cnxk/cnxk_se.h | 8 +++++ drivers/crypto/ipsec_mb/pmd_snow3g.c | 7 ++-- drivers/net/ena/ena_rss.c | 7 ++-- drivers/net/enetfec/enet_ethdev.c | 9 ++++++ drivers/net/ice/base/meson.build | 5 +++ drivers/net/ice/ice_ethdev.c | 3 +- drivers/net/qede/base/meson.build | 5 +++ drivers/vdpa/ifc/ifcvf_vdpa.c | 2 ++ lib/vhost/vhost_crypto.c | 8 ++--- 12 files changed, 88 insertions(+), 70 deletions(-) -- 2.36.1