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 B82E2A00BE; Thu, 28 May 2020 09:46:50 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 2EAFD1DB28; Thu, 28 May 2020 09:46:44 +0200 (CEST) Received: from us-smtp-delivery-1.mimecast.com (us-smtp-1.mimecast.com [205.139.110.61]) by dpdk.org (Postfix) with ESMTP id BDAD31DA52 for ; Thu, 28 May 2020 09:46:41 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1590652000; 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=Eom4c9vONtDHE/7IWJ5rGy3FuA4zya87zlPmgNXlzsk=; b=Z6s2bogWbQKTpQKuQLyoa8SqPjO/rKlMfeIt242apyK7FmgUNu9phcmA1d6mYnef+lKzym 28sOXjZpBsNiJbNfWIc38LG+jB2HV99QcSENVaWW4MWrpy0IRJO0NYRH+PUD9wz3mhzJN7 8R5kCRi2LlNAL+q6H/pdjZQAvGyQCvI= 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-152-Re_W99O2OCO5O65GgDs5iA-1; Thu, 28 May 2020 03:46:36 -0400 X-MC-Unique: Re_W99O2OCO5O65GgDs5iA-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 AE013108BD0F; Thu, 28 May 2020 07:46:35 +0000 (UTC) Received: from localhost.localdomain (unknown [10.36.110.21]) by smtp.corp.redhat.com (Postfix) with ESMTP id 7FD845C1B0; Thu, 28 May 2020 07:46:30 +0000 (UTC) From: Maxime Coquelin To: dev@dpdk.org, amorenoz@redhat.com, xiaolong.ye@intel.com, shahafs@mellanox.com, matan@mellanox.com Cc: Maxime Coquelin Date: Thu, 28 May 2020 09:46:24 +0200 Message-Id: <20200528074627.439192-1-maxime.coquelin@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 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 0/3] net/virtio: add Vhost-user protocol features 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. The third patch adds support to the SET_STATUS request, which is not merged upstream yet. Neither in DPDK Vhost-user backend nor in Qemu. So the first two patches can be applied as-is, while for the last one, we have at least to wait the Qemu bits, which includes the specification update, is merged upstream. Maxime Coquelin (3): net/virtio: add vhost-user protocol features support net/virtio: add reply-ack support to Virtio-user net/virtio: add Virtio status support to Virtio-user drivers/net/virtio/virtio_user/vhost.h | 18 ++++++ drivers/net/virtio/virtio_user/vhost_user.c | 35 ++++++++++- .../net/virtio/virtio_user/virtio_user_dev.c | 58 ++++++++++++++++++- .../net/virtio/virtio_user/virtio_user_dev.h | 4 ++ drivers/net/virtio/virtio_user_ethdev.c | 20 +++++++ 5 files changed, 130 insertions(+), 5 deletions(-) -- 2.26.2