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 7CCCFA0519; Fri, 3 Jul 2020 17:57:42 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id F0CF71DC77; Fri, 3 Jul 2020 17:57:40 +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 A4CEA1DC3D for ; Fri, 3 Jul 2020 17:57:38 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1593791858; 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=J9RPZrmTrpkxfEjdtkiCZbkLBJmpQ4qgd3JN/G05ERg=; b=GHIJyVBOTV26jpfRXZmLH0wZkYLEbnmD+wk+2QyetAkVYC32VBYYZ+pEheH8o66SU7pNAm sjZzoMdkW2c+h034u9Y3ndlL7bzKe/LS87UuGQ5XZzlRjJkKlNJFh/SvjzlXHFiYzy+o9O ud9l7EpQK+NTInKntq9j3j+hpQPlaqg= 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-466-MtDDTyXfPwiz7mFA3Tjb3w-1; Fri, 03 Jul 2020 11:57:36 -0400 X-MC-Unique: MtDDTyXfPwiz7mFA3Tjb3w-1 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 136C6EC1A1; Fri, 3 Jul 2020 15:57:35 +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 C15802E02B; Fri, 3 Jul 2020 15:57:30 +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: Fri, 3 Jul 2020 17:57:25 +0200 Message-Id: <20200703155727.1320821-1-amorenoz@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 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 v4 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 v3: - [Chenbo] Do not process MQ if VHOST_USER_F_PROTOCOL_FEATURES is unsupported 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 | 41 ++++++++++++++++++- .../net/virtio/virtio_user/virtio_user_dev.h | 3 ++ drivers/net/virtio/virtio_user_ethdev.c | 20 +++++++++ 5 files changed, 101 insertions(+), 5 deletions(-) -- 2.26.2