From patchwork Mon Jul 31 14:48:15 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Marchand X-Patchwork-Id: 1 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id EFE8E42FA5; Mon, 31 Jul 2023 16:48:32 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8286D40A89; Mon, 31 Jul 2023 16:48:32 +0200 (CEST) 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 8AE6F4067B for ; Mon, 31 Jul 2023 16:48:30 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1690814909; 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: in-reply-to:in-reply-to:references:references; bh=74PqRmbI9i6Vafm8tmAePX3IIARWsOaab/fJkIyR5cE=; b=aR4WjU95LN8sGp+J/al5LDnC8fGiPSF5fs9BWKEPdwnPrNK1Vpzq9rJ1Ykf4PiWC1XRj+h 9NgA3pIYPs+GMvx/ypNegQ7SmL9ud6dLRlsC5jiAzFxo0MZlYjxgT0+UMPU4llGQSwjv+z da4IkEole8q0xDFhqE+Fw2YIc7YGP6Y= Received: from mimecast-mx02.redhat.com (66.187.233.73 [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-438-d9ftW3fHNxWXJWLXp5Ihtw-1; Mon, 31 Jul 2023 10:48:26 -0400 X-MC-Unique: d9ftW3fHNxWXJWLXp5Ihtw-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.rdu2.redhat.com [10.11.54.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 1FCCC2A59551; Mon, 31 Jul 2023 14:48:26 +0000 (UTC) Received: from dmarchan.redhat.com (unknown [10.45.224.120]) by smtp.corp.redhat.com (Postfix) with ESMTP id 89202F784D; Mon, 31 Jul 2023 14:48:24 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: thomas@monjalon.net, bluca@debian.org, tredaelli@redhat.com, i.maximets@ovn.org, james.r.harris@intel.com, mohammed@hawari.fr Subject: [PATCH v7 0/2] Select optional libraries Date: Mon, 31 Jul 2023 16:48:15 +0200 Message-ID: <20230731144817.2147634-1-david.marchand@redhat.com> In-Reply-To: <20230629090459.823130-1-david.marchand@redhat.com> References: <20230629090459.823130-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.5 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com 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 This series is one implementation to try and please users who want to select more easily which parts of DPDK are built. It introduces a change in behavior for enabling deprecated libraries: this series is aimed at the next release but sent early as a demo of what changes are required. A deprecation notice has been sent so that this work can be merged in v23.11: https://patchwork.dpdk.org/project/dpdk/patch/20230628134315.551591-1-david.marchand@redhat.com/ Changes since v6: - rebased on v23.11-rc0, - updated docs, Changes since v5: - added acks from Morten, - resent series as a new thread to avoid confusing patchwork with the previous partially applied series, Changes since v4: - rebased on main, - switched to a list of enabled deprecated libraries, Changes since v3: - split kni cleanup, - split variable rename cleanup, - introduced a new meson option to control deprecated libraries activation, - simplified the actual implementation of enable_libs to mimic enable_drivers behavior,