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 CBD6E41EB1; Thu, 16 Mar 2023 15:48:07 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id BEA4A40DF6; Thu, 16 Mar 2023 15:48:07 +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 BF68F40DDC for ; Thu, 16 Mar 2023 15:48:05 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1678978085; 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=CXnKwSqGsqZFYk5Fn3IHrXrjSyUjG5fHN5dgs3CKcUo=; b=H1tp+DLneL0YILJE+9FLd3Uzi7wGgp29yd+71H/AAgutWDfuKzXnSVc16AoaVsX6YANYOl oA3nItkjKOZIgF3nFZTTbcKrl8aMVEK5k6UCYRU7o/DcywDiViLOfn+jaVeyZgMtEV6d7f amqFTvKcw6Hc38RjjMAsIVqpWqNZWpA= 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-450-GJ5gjUrKOmqrH_za2VujTw-1; Thu, 16 Mar 2023 10:48:01 -0400 X-MC-Unique: GJ5gjUrKOmqrH_za2VujTw-1 Received: from smtp.corp.redhat.com (int-mx10.intmail.prod.int.rdu2.redhat.com [10.11.54.10]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 68D8F85A5A3; Thu, 16 Mar 2023 14:48:01 +0000 (UTC) Received: from [10.39.208.23] (unknown [10.39.208.23]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 8C92E483EC0; Thu, 16 Mar 2023 14:48:00 +0000 (UTC) Message-ID: <389bfd03-f6f4-30b1-1dd0-54276843ec5c@redhat.com> Date: Thu, 16 Mar 2023 15:47:59 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.8.0 Subject: Re: [PATCH v2 0/2] vhost: fix names to follow new naming convention To: Nobuhiro MIKI , chenbo.xia@intel.com Cc: dev@dpdk.org, stephen@networkplumber.org References: <20230309051643.70171-1-nmiki@yahoo-corp.jp> From: Maxime Coquelin In-Reply-To: <20230309051643.70171-1-nmiki@yahoo-corp.jp> X-Scanned-By: MIMEDefang 3.1 on 10.11.54.10 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 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 3/9/23 06:16, Nobuhiro MIKI wrote: > In this series, we simply replace 'master' with 'frontend' and > 'slave' with 'backend' so that vhost user protocol message, > protocol names follow the new naming conventions. > > v2: > - Update .mailmap in patch 1 > - Replace 'master' with 'frontend' in patch 2 > > Nobuhiro MIKI (2): > vhost: fix constants to follow new naming convention > vhost: refactor to follow new naming convention > > .mailmap | 2 +- > drivers/vdpa/ifc/ifcvf_vdpa.c | 6 +-- > drivers/vdpa/mlx5/mlx5_vdpa.c | 4 +- > drivers/vdpa/sfc/sfc_vdpa_ops.c | 4 +- > lib/vhost/rte_vhost.h | 16 +++--- > lib/vhost/version.map | 2 +- > lib/vhost/vhost.c | 4 +- > lib/vhost/vhost.h | 4 +- > lib/vhost/vhost_crypto.c | 2 +- > lib/vhost/vhost_user.c | 90 ++++++++++++++++----------------- > lib/vhost/vhost_user.h | 22 ++++---- > 11 files changed, 78 insertions(+), 78 deletions(-) > Applied to dpdk-next-virtio/main. Thanks, Maxime