From patchwork Wed Jun 28 13:43:15 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: David Marchand X-Patchwork-Id: 129056 X-Patchwork-Delegate: thomas@monjalon.net 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 653E842D80; Wed, 28 Jun 2023 15:43:36 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3D20040151; Wed, 28 Jun 2023 15:43:36 +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 49A14400EF for ; Wed, 28 Jun 2023 15:43:35 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1687959814; 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=zr1JpoI+75e8zzA0rn5WtzKOetUFj2G8EndgLFWvLNQ=; b=MwFOOAtM13UsCbId1+G1qqcJ+Z/9i+XEujSJw/CIJoRWVbMtflzXAB5VwG84sRQFdU9AUU Lg6ZsLYhPZiW/YFvbMopv3IuYae0OxulrmBkIJaYLxkdZC/9KmoIkUptS8GN516Ym0Gq8o ftCWmBlDc+G84sHXW/6nOi0qNeaPbLA= 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-619-wklrNcWeMVarKR2Iz5upPw-1; Wed, 28 Jun 2023 09:43:30 -0400 X-MC-Unique: wklrNcWeMVarKR2Iz5upPw-1 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.rdu2.redhat.com [10.11.54.2]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 078DE88D06E; Wed, 28 Jun 2023 13:43:22 +0000 (UTC) Received: from dmarchan.redhat.com (unknown [10.45.224.210]) by smtp.corp.redhat.com (Postfix) with ESMTP id C2E2D40C6CCD; Wed, 28 Jun 2023 13:43:20 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: thomas@monjalon.net, bluca@debian.org, bruce.richardson@intel.com, mb@smartsharesystems.com Subject: [PATCH] doc: announce change for building deprecated libraries Date: Wed, 28 Jun 2023 15:43:15 +0200 Message-Id: <20230628134315.551591-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.2 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 As part of a larger work on selecting parts of DPDK of interests for users, enabling deprecated libraries won't be done via the disable_libs build option anymore. An example of the new build option can be found at: https://patchwork.dpdk.org/project/dpdk/patch/20230628132004.340074-2-david.marchand@redhat.com/ Signed-off-by: David Marchand Acked-by: Morten Brørup Acked-by: Bruce Richardson Acked-by: Thomas Monjalon --- doc/guides/rel_notes/deprecation.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst index 8e1cdd677a..f148d7c80a 100644 --- a/doc/guides/rel_notes/deprecation.rst +++ b/doc/guides/rel_notes/deprecation.rst @@ -11,6 +11,10 @@ here. Deprecation Notices ------------------- +* build: Enabling deprecated libraries (``flow_classify``, ``kni``) won't be + possible anymore through the use of the ``disable_libs`` build option. A + new build option for deprecated libraries will be introduced instead. + * kvargs: The function ``rte_kvargs_process`` will get a new parameter for returning key match count. It will ease handling of no-match case.