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 99F85A0542; Fri, 18 Nov 2022 09:55:00 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 41E5240E03; Fri, 18 Nov 2022 09:55:00 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id BEE4740E03 for ; Fri, 18 Nov 2022 09:54:58 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1668761698; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=qtwDyDxIWzGfHV7V5haaSZYVIStIoj4TpncJMbICrHI=; b=Vs+Z1S605x0clsuDH1w9MnEyofmk1jOu5avWiLHIjVO4CJAgIuefFz02NyOPo36Bq4zeIz IZDMWXnygu4nPxLaTQlk9LYJVokaUthqdxq9ULjbHkdMWPdfgl5BmVFO9tRU9SnYj2ivZu 2N5+KHQ6kIrcQEuCYoEwkPhofEIVfRI= Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-346-K3_4-2UHPf6bzdqPQQ1tHQ-1; Fri, 18 Nov 2022 03:54:56 -0500 X-MC-Unique: K3_4-2UHPf6bzdqPQQ1tHQ-1 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.rdu2.redhat.com [10.11.54.8]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id B8FE23C0D84F for ; Fri, 18 Nov 2022 08:54:55 +0000 (UTC) Received: from localhost.localdomain (ovpn-192-54.brq.redhat.com [10.40.192.54]) by smtp.corp.redhat.com (Postfix) with ESMTP id 4225BC2C8C7 for ; Fri, 18 Nov 2022 08:54:55 +0000 (UTC) From: David Marchand To: dev@dpdk.org Subject: [PATCH 00/11] Fixes for clang 15 Date: Fri, 18 Nov 2022 09:53:02 +0100 Message-Id: <20221118085313.2118977-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.8 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII"; x-default=true 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 37 has just been released with clang 15. The latter seems more picky wrt unused variable. Fixes have been tested in GHA with a simple patch I used in my own repo: https://github.com/david-marchand/dpdk/commit/82cd57ae5490 https://github.com/david-marchand/dpdk/actions/runs/3495454457 -- David Marchand David Marchand (11): service: fix build with clang 15 vhost: fix build with clang 15 bus/dpaa: fix build with clang 15 net/atlantic: fix build with clang 15 net/dpaa2: fix build with clang 15 net/ice: fix build with clang 15 app/testpmd: fix build with clang 15 app/testpmd: fix build with clang 15 in flow code test/efd: fix build with clang 15 test/member: fix build with clang 15 test/event: fix build with clang 15 app/test-pmd/config.c | 14 -------------- app/test-pmd/noisy_vnf.c | 2 +- app/test/test_efd_perf.c | 1 - app/test/test_event_timer_adapter.c | 2 -- app/test/test_member.c | 1 - app/test/test_member_perf.c | 1 - drivers/bus/dpaa/base/qbman/bman.h | 4 +--- drivers/net/atlantic/atl_rxtx.c | 5 ++--- drivers/net/dpaa2/dpaa2_rxtx.c | 4 +--- drivers/net/ice/ice_ddp_package.c | 3 --- lib/eal/common/rte_service.c | 2 -- lib/vhost/virtio_net.c | 2 -- 12 files changed, 5 insertions(+), 36 deletions(-) -- 2.38.1