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 34DCCA0C3F; Thu, 15 Apr 2021 17:38:30 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4FED81621D1; Thu, 15 Apr 2021 17:38:28 +0200 (CEST) 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 383DA162172 for ; Thu, 15 Apr 2021 17:38:26 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1618501105; 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=HyFFR9YSlxgrmWyHQYW/m4NUz+D9I7EcPixyTTsLhhU=; b=Phz5C1VaYv8lMxDelisEBTgkOAr9nda5nXqeQdZ6q1nU0gDzbwY1qtRnyrEakJi0IkcTcS 5+HGDCWwTm2GiEdkrh7WgdsOasn6FaVP2xRgIdtqye6HweXPAY6SeOh8sK//pp4NQGR8Ty dMPiS73zvd8dojLezZseXSArtQuIpd0= 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-518-KAmzKqJxNr-rFiGQ4csHFg-1; Thu, 15 Apr 2021 11:38:24 -0400 X-MC-Unique: KAmzKqJxNr-rFiGQ4csHFg-1 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 4647D1020C20 for ; Thu, 15 Apr 2021 15:38:23 +0000 (UTC) Received: from [10.36.110.28] (unknown [10.36.110.28]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 87ECD610A8; Thu, 15 Apr 2021 15:38:22 +0000 (UTC) To: Balazs Nemeth , dev@dpdk.org References: <9e8da88efd007673c8c99b1b286be62484f892d2.1617790501.git.bnemeth@redhat.com> From: Maxime Coquelin Message-ID: <108e525d-234f-cfb9-de78-e4d18134f2e8@redhat.com> Date: Thu, 15 Apr 2021 17:38:20 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.8.1 MIME-Version: 1.0 In-Reply-To: <9e8da88efd007673c8c99b1b286be62484f892d2.1617790501.git.bnemeth@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 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-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v2 4/4] vhost: remove unnecessary level of indirection 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 4/7/21 12:17 PM, Balazs Nemeth wrote: > There is no need to pass a pointer to an mbuf pointer. > > Signed-off-by: Balazs Nemeth > --- > lib/librte_vhost/virtio_net.c | 10 +++++----- > 1 file changed, 5 insertions(+), 5 deletions(-) > Reviewed-by: Maxime Coquelin Thanks, Maxime