From patchwork Tue Sep 15 13:35:54 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Maxime Coquelin X-Patchwork-Id: 77736 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 68E8FA04C7; Tue, 15 Sep 2020 15:36:11 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 4668A1C000; Tue, 15 Sep 2020 15:36:11 +0200 (CEST) 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 8E635DE0 for ; Tue, 15 Sep 2020 15:36:09 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1600176969; 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=w+3lOukdbQGvsnVJSaqTrNmiw/x4Hyc35LwQmzGf/ZY=; b=M0kQV2USVplv8yQISff3v8mmzYcfndJ6XQD5gKEvGzZ1WU/9oPXpC4wz9v0bApTE//4+Iq lSzMyZ2GHViLhJEqFisNS8aHv3Jhgbi5m9KK5+QptE+jvfBWf+cOe24YzUPRPH7pSvcfXf BgN4eNw3oDwE7GwadAq7EEoV7IEn9LA= 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-565-sjseNWIYPp6MvzIoUh2hYg-1; Tue, 15 Sep 2020 09:36:07 -0400 X-MC-Unique: sjseNWIYPp6MvzIoUh2hYg-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 159B61074665; Tue, 15 Sep 2020 13:36:05 +0000 (UTC) Received: from localhost.localdomain (unknown [10.36.110.16]) by smtp.corp.redhat.com (Postfix) with ESMTP id E747A75143; Tue, 15 Sep 2020 13:36:00 +0000 (UTC) From: Maxime Coquelin To: dev@dpdk.org, chenbo.xia@intel.com, ian.stokes@intel.com Cc: Maxime Coquelin Date: Tue, 15 Sep 2020 15:35:54 +0200 Message-Id: <20200915133558.210639-1-maxime.coquelin@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=maxime.coquelin@redhat.com X-Mimecast-Spam-Score: 0.0 X-Mimecast-Originator: redhat.com Subject: [dpdk-dev] [PATCH 0/4] pick 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" As announced in DPDK v20.08, this series removes dequeue zero-copy support to Vhost library. Support for the feature is also being removed in OVS. Maxime Coquelin (4): net/vhost: remove dequeue zero-copy support examples/vhost_crypto: use vhost async-copy flag examples/vhost: remove dequeue zero-copy support vhost: remove dequeue zero-copy support doc/guides/prog_guide/vhost_lib.rst | 52 +---- drivers/net/vhost/rte_eth_vhost.c | 13 -- examples/vhost/main.c | 18 +- examples/vhost_crypto/main.c | 2 +- lib/librte_vhost/rte_vhost.h | 2 +- lib/librte_vhost/socket.c | 47 ---- lib/librte_vhost/vhost.c | 14 -- lib/librte_vhost/vhost.h | 7 - lib/librte_vhost/vhost_user.c | 79 +------ lib/librte_vhost/virtio_net.c | 326 +++------------------------- 10 files changed, 35 insertions(+), 525 deletions(-)