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 994CBA04DD for ; Tue, 20 Oct 2020 18:53:18 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 6AED5ACF8; Tue, 20 Oct 2020 18:53:17 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [63.128.21.124]) by dpdk.org (Postfix) with ESMTP id 88773ACF5 for ; Tue, 20 Oct 2020 18:53:14 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1603212793; 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=jG45rlv+i1YQ3NaN0885m400Wj9loRMZGaLNGEkCiY0=; b=d++thrlk2EA+9fvyQvFUFj57WYxmstlHyob9QuS77gru0FUHHtGRHdcW5fbdcgxvsRk761 c0d//efpJSp4gCaSHjpGtGNY4S3NuksiCRPv70XweJ6+MopOBB9J24XzRVsZmDRl0Tn5g+ gdX+EC1GZnl3ib+utXxKQRpy9Lt8cTg= 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-74-Aob_Xx67M1mY3aB__bHezw-1; Tue, 20 Oct 2020 12:53:09 -0400 X-MC-Unique: Aob_Xx67M1mY3aB__bHezw-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 DBB1E8064AA; Tue, 20 Oct 2020 16:53:07 +0000 (UTC) Received: from [10.33.36.223] (unknown [10.33.36.223]) by smtp.corp.redhat.com (Postfix) with ESMTP id 90FFF5B4B2; Tue, 20 Oct 2020 16:53:00 +0000 (UTC) To: Adrian Moreno , dev@dpdk.org Cc: yinan.wang@intel.com, patrick.fu@intel.com, stable@dpdk.org, Maxime Coquelin , Chenbo Xia , Zhihong Wang References: <20201020152052.389446-1-amorenoz@redhat.com> <20201020152052.389446-2-amorenoz@redhat.com> From: Kevin Traynor Message-ID: Date: Tue, 20 Oct 2020 17:52:59 +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: <20201020152052.389446-2-amorenoz@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=ktraynor@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: 8bit Subject: Re: [dpdk-stable] [dpdk-dev] [PATCH v2 1/3] virtio-user: fix backend selection if stat fails X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" On 20/10/2020 16:20, Adrian Moreno wrote: > If stat fails because the file does not exist, it means that > the backend must be vhost-user in server mode. > > Also, log the detected backend type. > > Bugzilla ID: 559 > Fixes: f908b22ea47a ("net/virtio: move backend type selection to ethdev") > Cc: stable@dpdk.org > > Signed-off-by: Adrian Moreno > --- > drivers/net/virtio/virtio_user/virtio_user_dev.c | 7 +++++++ > drivers/net/virtio/virtio_user/virtio_user_dev.h | 1 + > drivers/net/virtio/virtio_user_ethdev.c | 6 +++++- > 3 files changed, 13 insertions(+), 1 deletion(-) Acked-by: Kevin Traynor