From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 49629A04B5; Thu, 29 Oct 2020 09:29:02 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 23E4CC31B; Thu, 29 Oct 2020 09:28:54 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [216.205.24.124]) by dpdk.org (Postfix) with ESMTP id 355CEBE81 for ; Thu, 29 Oct 2020 09:28:52 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1603960130; 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=e/Ao4Rh51fNmH3ukR3mtDm5Ne1p1WYSPQm1KoZOPGwI=; b=iQxg3XzzbugwHOvCmFnXfB/Nj8M4Jxu76n+hz0peHg5ObkSmXRloZAOh1hUdfdoYv3VNB2 JG9bmhiwSnqsB+6eNtxbKNssAfVIHkubznyk1uS2wp0HgjP1GMqR3uAioPya8OA4d32+w1 +U2ens37iIk6w+fjdL44FzrGtLMVBKo= 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-585-6ibT1PZnNgmIYOqG2gjCbg-1; Thu, 29 Oct 2020 04:28:48 -0400 X-MC-Unique: 6ibT1PZnNgmIYOqG2gjCbg-1 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id B91F61084D6D; Thu, 29 Oct 2020 08:28:47 +0000 (UTC) Received: from [10.36.110.11] (unknown [10.36.110.11]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 648875C1D0; Thu, 29 Oct 2020 08:28:46 +0000 (UTC) To: Patrick Fu , dev@dpdk.org, chenbo.xia@intel.com References: <20201027085019.4146312-1-patrick.fu@intel.com> From: Maxime Coquelin Message-ID: Date: Thu, 29 Oct 2020 09:28:44 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.3.1 MIME-Version: 1.0 In-Reply-To: <20201027085019.4146312-1-patrick.fu@intel.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 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 v1] vhost: fix uninitialized local variable X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 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 10/27/20 9:50 AM, Patrick Fu wrote: > This patch initializes a local parameter in async data path to avoid > compiler warnings. > > Fixes: cd6760da1076 ("vhost: introduce async enqueue for split ring") > > Signed-off-by: Patrick Fu > --- > lib/librte_vhost/virtio_net.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > Applied to dpdk-next-virtio/main. Thanks! Maxime