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 BED3EA0C53; Wed, 3 Nov 2021 14:47:32 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4F31D426DD; Wed, 3 Nov 2021 14:47:32 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [216.205.24.124]) by mails.dpdk.org (Postfix) with ESMTP id 1CF1C41134 for ; Wed, 3 Nov 2021 14:47:31 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1635947250; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=H6GcfI20nZACbhwvQkwn//Xw32ScQmZyLEs6uwYg8mM=; b=TP2K8/tz6Svm3EbO31qXOrWG60uYwFm9pXEne7XV3KQMkcDn15vk4ShSVu5AfXv0oIcYYe FR0EmnhDrWu8JxY9H5HkaT5HaPh4Dp7TkCSaoaJ2Ee2tnYoETVoliDTi8H2pMlz3/I33t1 uBTlEe297la/Il5yhByUEun1Ls0YpHI= 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-399-mXpaWYp5PMadm9EByKgwlw-1; Wed, 03 Nov 2021 09:47:27 -0400 X-MC-Unique: mXpaWYp5PMadm9EByKgwlw-1 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id E257F87D54F; Wed, 3 Nov 2021 13:47:26 +0000 (UTC) Received: from [10.39.208.36] (unknown [10.39.208.36]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 7778867865; Wed, 3 Nov 2021 13:46:59 +0000 (UTC) Message-ID: <0d805056-8a00-cb86-3824-c8582ea826de@redhat.com> Date: Wed, 3 Nov 2021 14:46:57 +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, david.marchand@redhat.com References: <20211102104748.57078-1-maxime.coquelin@redhat.com> From: Maxime Coquelin In-Reply-To: <20211102104748.57078-1-maxime.coquelin@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 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] vhost: rename driver callbacks struct 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 11:47, Maxime Coquelin wrote: > As previously announced, this patch renames struct > vhost_device_ops to struct rte_vhost_device_ops. > > Signed-off-by: Maxime Coquelin > --- > doc/guides/rel_notes/deprecation.rst | 3 --- > doc/guides/rel_notes/release_21_11.rst | 2 ++ > drivers/net/vhost/rte_eth_vhost.c | 2 +- > examples/vdpa/main.c | 2 +- > examples/vhost/main.c | 2 +- > examples/vhost_blk/vhost_blk.c | 2 +- > examples/vhost_blk/vhost_blk.h | 2 +- > examples/vhost_crypto/main.c | 2 +- > lib/vhost/rte_vhost.h | 4 ++-- > lib/vhost/socket.c | 6 +++--- > lib/vhost/vhost.h | 4 ++-- > 11 files changed, 15 insertions(+), 16 deletions(-) > Applied to dpdk-next-virtio/main with fixing missing documentation change reported by Chenbo. Thanks, Maxime