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 0EA78A0548; Tue, 18 May 2021 09:42:52 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C2A1F4068E; Tue, 18 May 2021 09:42:51 +0200 (CEST) Received: from shelob.oktetlabs.ru (shelob.oktetlabs.ru [91.220.146.113]) by mails.dpdk.org (Postfix) with ESMTP id BD45440041 for ; Tue, 18 May 2021 09:42:50 +0200 (CEST) Received: from [192.168.38.17] (aros.oktetlabs.ru [192.168.38.17]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by shelob.oktetlabs.ru (Postfix) with ESMTPSA id 2373F7F519; Tue, 18 May 2021 10:42:50 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 shelob.oktetlabs.ru 2373F7F519 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=oktetlabs.ru; s=default; t=1621323770; bh=eSAOb4kzoomjZyv5fCY1rHPOLAziLXTV3Nu37GM8K2w=; h=Subject:To:Cc:References:From:Date:In-Reply-To; b=nbPQKyPrqFvob66JX1txhNyTlgwfbfWQpF+E8PkOtR7qn7KMwtalRusLsrRb2lwoB sUstrqQmpaghMGFiSj4NstuGP0AzKcP8TLS55dLgy04TNBpmRKSmbPlLsHdlgrmaa0 Rrb9CvGACy3rCHwenh8AMD716m+HL0KOdTAbTU8g= To: Thomas Monjalon , dev@dpdk.org Cc: ferruh.yigit@intel.com, david.marchand@redhat.com, olivier.matz@6wind.com, maxime.coquelin@redhat.com, chenbo.xia@intel.com, ktraynor@redhat.com, Ray Kinsella , Neil Horman References: <20210518073441.2749096-1-thomas@monjalon.net> From: Andrew Rybchenko Organization: OKTET Labs Message-ID: Date: Tue, 18 May 2021 10:42:49 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.10.0 MIME-Version: 1.0 In-Reply-To: <20210518073441.2749096-1-thomas@monjalon.net> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH] doc: announce transition to vDPA port close function 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 Sender: "dev" On 5/18/21 10:34 AM, Thomas Monjalon wrote: > There is a layer violation in the vDPA API which encourages to destroy > a full device with rte_dev_remove() instead of just closing the port. > The plan is to introduce a new function in 21.08, promote in 21.11, > and deprecate rte_vdpa_get_rte_device() in 21.11. > > Signed-off-by: Thomas Monjalon Acked-by: Andrew Rybchenko