From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.6 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 29B90C2D0A8 for ; Mon, 28 Sep 2020 09:17:42 +0000 (UTC) Received: from dpdk.org (dpdk.org [92.243.14.124]) by mail.kernel.org (Postfix) with ESMTP id 850AA21D7F for ; Mon, 28 Sep 2020 09:17:41 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="I+1YUKL/" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 850AA21D7F Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id C44151BED6; Mon, 28 Sep 2020 11:17:29 +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 CA48E1B6D2 for ; Mon, 28 Sep 2020 11:17:27 +0200 (CEST) Dkim-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1601284646; 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=GRA1vVeSV+89Pyv+JouxPt+oi+WlQEZu1ZZ3EpLiASk=; b=I+1YUKL/h0fntxBRTRFtTWcM84g81+Oqz/Sinwq0GcPxImCy3rVF4k6Nq1XqV25nvGrO/n QSfJHSv8hIimoihtwHmVWcY9p8wWDCe+NRvUbc69Ins/Y4Jy5eFQA+gwtXyJKOrxdYs49o mPeQtxa7QAExoUDjIInSq4EJyfREE7I= 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-428-GKgResFOPKKB8BzQA1aVkg-1; Mon, 28 Sep 2020 05:17:21 -0400 X-MC-Unique: GKgResFOPKKB8BzQA1aVkg-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 48C951005504; Mon, 28 Sep 2020 09:17:20 +0000 (UTC) Received: from localhost.localdomain (unknown [10.36.110.36]) by smtp.corp.redhat.com (Postfix) with ESMTP id 509FB78834; Mon, 28 Sep 2020 09:17:16 +0000 (UTC) From: Maxime Coquelin To: dev@dpdk.org, chenbo.xia@intel.com, ian.stokes@intel.com Cc: Maxime Coquelin Date: Mon, 28 Sep 2020 11:17:08 +0200 Message-Id: <20200928091712.7946-1-maxime.coquelin@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=maxime.coquelin@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Subject: [dpdk-dev] [PATCH v2 0/4] vhost: remove dequeue zero-copy 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" 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. Changes in v2: -------------- * Fix build issue due to unused symbol (Chenbo) * Remove remaining zmbuf related struct definition (Chenbo) * Fix typo in commit message (Chenbo) * Remove helper string in Vhost PMD (Chenbo) 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 | 14 -- 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 | 28 --- lib/librte_vhost/vhost_user.c | 80 +------ lib/librte_vhost/virtio_net.c | 326 +++------------------------- 10 files changed, 35 insertions(+), 548 deletions(-) -- 2.26.2