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 D83BAA0C53; Wed, 3 Nov 2021 14:48:31 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id BD93E426E1; Wed, 3 Nov 2021 14:48:31 +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 EDDD841134 for ; Wed, 3 Nov 2021 14:48:29 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1635947309; 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=ohIhe77Kl8Buwc6ho7wEJ9FEZEibvdock1XFKWbdJkA=; b=AfsH7QYQYPZ4fQJWOheGcRhdnOyo5Jm5fU52MM6JO843O9L9vHwWWUi5EBmp+QccoMMjcp Naf7DFjGL06gMZE4YDK3IOegGu2PlD788fVsQGrr+HQm/CI2PvRPPFtoifpsn7jCWgRjQo NSfuIBjPosdrHQwuZ9MfrjIUXCgfnkU= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-258-U9hplLArOfW2kz-vve5O4A-1; Wed, 03 Nov 2021 09:48:26 -0400 X-MC-Unique: U9hplLArOfW2kz-vve5O4A-1 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 6A8C6BBEE0; Wed, 3 Nov 2021 13:48:25 +0000 (UTC) Received: from [10.39.208.36] (unknown [10.39.208.36]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 529E71009AB7; Wed, 3 Nov 2021 13:48:17 +0000 (UTC) Message-ID: Date: Wed, 3 Nov 2021 14:48:15 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.2.0 To: dev@dpdk.org, chenbo.xia@intel.com, xuemingl@nvidia.com, xiao.w.wang@intel.com, david.marchand@redhat.com Cc: Thomas Monjalon References: <20211102095611.6716-1-maxime.coquelin@redhat.com> From: Maxime Coquelin In-Reply-To: <20211102095611.6716-1-maxime.coquelin@redhat.com> X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=maxime.coquelin@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Language: en-US Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v3] vhost: mark vDPA driver API as internal 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 11/2/21 10:56, Maxime Coquelin wrote: > This patch marks the vDPA driver APIs as internal and > rename the corresponding header file to vdpa_driver.h. > > Signed-off-by: Maxime Coquelin > Acked-by: Thomas Monjalon > Reviewed-by: Chenbo Xia > --- > Changes in v3: > ============== > - Update deprecation notice and release note > > Changes in v2: > ============= > - Alphabetical ordering in version.map (David) > - Rename header to vdpa_driver.h (David) > - Add Techboard in Cc to vote for API breakage exception > > doc/guides/rel_notes/deprecation.rst | 4 ---- > doc/guides/rel_notes/release_21_11.rst | 4 ++++ > drivers/vdpa/ifc/ifcvf_vdpa.c | 2 +- > drivers/vdpa/mlx5/mlx5_vdpa.h | 2 +- > lib/vhost/meson.build | 4 +++- > lib/vhost/vdpa.c | 2 +- > lib/vhost/{rte_vdpa_dev.h => vdpa_driver.h} | 12 +++++++++--- > lib/vhost/version.map | 13 +++++++++---- > lib/vhost/vhost.h | 2 +- > 9 files changed, 29 insertions(+), 16 deletions(-) > rename lib/vhost/{rte_vdpa_dev.h => vdpa_driver.h} (95%) > Applied to dpdk-next-virtio/main. Thanks, Maxime