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 106FEA0524; Thu, 2 Jul 2020 09:43:51 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 625E61C229; Thu, 2 Jul 2020 09:43:50 +0200 (CEST) Received: from us-smtp-1.mimecast.com (us-smtp-delivery-1.mimecast.com [207.211.31.120]) by dpdk.org (Postfix) with ESMTP id 2058E1C1BA for ; Thu, 2 Jul 2020 09:43:47 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1593675827; 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; bh=DJrTvnHUpVtTkMwtk/FSSOae0vtKqf4lx2KP/2VumUE=; b=KsJ4RV2wEvzS/9hydsfQQ2lXgvTrrPcLP0RDiswPBHvp+qYtm0tZwExliLzTrHWENW0Y7R JoKCGE+UexS736iQcbhhM6i5gI6xzp1D/MduxuXDMA3+rQESFzlqoHvqQ69ELeEapsI4QL zaToI669spKkOY+5p/iHjgQKhwWB+s0= 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-173-ZIopvScEMhmM27kUox5LFg-1; Thu, 02 Jul 2020 03:43:45 -0400 X-MC-Unique: ZIopvScEMhmM27kUox5LFg-1 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 5520B19057A3; Thu, 2 Jul 2020 07:43:44 +0000 (UTC) Received: from amorenoz.users.ipa.redhat.com (ovpn-112-91.ams2.redhat.com [10.36.112.91]) by smtp.corp.redhat.com (Postfix) with ESMTP id 74BF45DAB0; Thu, 2 Jul 2020 07:43:39 +0000 (UTC) From: Adrian Moreno To: dev@dpdk.org Cc: chenbo.xia@intel.com, zhihong.wang@intel.com, xiao.w.wang@intel.com, ferruh.yigit@intel.com, maxime.coquelin@redhat.com, Adrian Moreno Date: Thu, 2 Jul 2020 09:43:30 +0200 Message-Id: <20200702074332.1211465-1-amorenoz@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=amorenoz@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v3 0/2] net/virtio: add vhost-user protocol features support 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" This series adds Vhost-user protocol features support to Virtio-user PMD's Vhost-user backend. The first patch introduces protocol features negotiation, and the second one reply-ack feature. --- Changes since v2: - Added the new vhost-user messages to vhost_msg_strings[] Changes since v1: - Rebased on top of virtio-next - Dropped patch 3 as it depends on a new SET_STATUS request being merged into Qemu. Will submit independently. - [Chenbo] Do not send SET_PROTOCOL_FEATURES request if not supported by backend Maxime Coquelin (2): net/virtio: add vhost-user protocol features support net/virtio: add reply-ack support to Virtio-user drivers/net/virtio/virtio_user/vhost.h | 13 ++++++ drivers/net/virtio/virtio_user/vhost_user.c | 29 ++++++++++++-- .../net/virtio/virtio_user/virtio_user_dev.c | 40 ++++++++++++++++++- .../net/virtio/virtio_user/virtio_user_dev.h | 3 ++ drivers/net/virtio/virtio_user_ethdev.c | 19 +++++++++ 5 files changed, 99 insertions(+), 5 deletions(-) -- 2.26.2