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 E2DDDA0032; Tue, 12 Jul 2022 13:39:01 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8FA7241109; Tue, 12 Jul 2022 13:39:01 +0200 (CEST) Received: from shelob.oktetlabs.ru (shelob.oktetlabs.ru [91.220.146.113]) by mails.dpdk.org (Postfix) with ESMTP id C2992400D4; Tue, 12 Jul 2022 13:39:00 +0200 (CEST) Received: from [192.168.1.39] (unknown [188.170.75.69]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by shelob.oktetlabs.ru (Postfix) with ESMTPSA id A96E4CB; Tue, 12 Jul 2022 14:38:59 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 shelob.oktetlabs.ru A96E4CB DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=oktetlabs.ru; s=default; t=1657625939; bh=ZOQihR+6JPg8ZFtmk9NYRAg6e5o1XNMjTjHnqAgU3K0=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=wDVSyKi40mI0YXe+RhrsievarNPN6CapyTI4q8M8RsbHtTV0D1aj/m+hEiQNIDbS0 1lU4WBi1nNuFHOeNcd6j9LWQHClZc1H2Hth5iECWXTfnAa9jAWHFq8Cyr7/QVihycR uooZeJCuO+axyfkE25mgaS5w1OrZt38P6ed7sRJQ= Message-ID: <22107325-e08f-ac43-b49a-a75aa68c1952@oktetlabs.ru> Date: Tue, 12 Jul 2022 14:38:52 +0300 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.11.0 Subject: Re: [PATCH] doc: announce marking device and driver objects as internal Content-Language: en-US To: Kevin Laatz , David Marchand , dev@dpdk.org, techboard@dpdk.org Cc: Ray Kinsella References: <20220710061736.973563-1-david.marchand@redhat.com> From: Andrew Rybchenko In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed 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 On 7/12/22 11:24, Kevin Laatz wrote: > On 10/07/2022 07:17, David Marchand wrote: >> rte_driver and rte_device are unnecessarily exposed in the public >> API/ABI. >> Announce that they will be made opaque in the public API and mark >> associated API as internal. >> This impacts all bus, as their driver registration mechanism will be >> made internal. >> >> Note: the PCI bus had a similar deprecation notice that we can remove as >> the new one is more generic. >> >> Signed-off-by: David Marchand >> --- >>   doc/guides/rel_notes/deprecation.rst | 12 +++++++----- >>   1 file changed, 7 insertions(+), 5 deletions(-) >> > Thanks for working on this cleanup, David! > > Acked-by: Kevin Laatz > Acked-by: Andrew Rybchenko