From patchwork Mon Jun 27 02:36:36 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Jiang, Cheng1" X-Patchwork-Id: 113456 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id B9333A055B; Mon, 27 Jun 2022 05:14:10 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 968B2410EF; Mon, 27 Jun 2022 05:14:10 +0200 (CEST) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id 300BE40E78 for ; Mon, 27 Jun 2022 05:14:09 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1656299649; x=1687835649; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=N4O3TeQH0989H3m8qCg6P91rKXTiL3UE1mSmpDByMNE=; b=eKHoyz43Z2J8L4bDFECHam6KfJkgRw6YUk/jcEtT3kxIrj5oK1lOvjG4 +A3RUY4/gp/TJfi4zN9UqiY6MVW9zpqV5lUPtJaDrlEbJNiclx9JxI7lC dQHocIc/pII3m2kpZrUfYQqw9b6aTHys92EyePsHt6n5Fa498jbiYBJPy oOAyXf3Cdv44OIFAoBVIQtyfYWl8sAb/BFG+tcZdRociy8wiKgydmBcDF xRb0eJ+rpeb8e6nhTELGfQ8Q4fM9WV/eUkVs7mCwCH2Xku7ELY+G3Cp+M MaKpWnRQx1RkLK4e/GIfp/SKAG1jioNiyHP/HPrk4uEqFDYM30ikpOySq g==; X-IronPort-AV: E=McAfee;i="6400,9594,10390"; a="306814814" X-IronPort-AV: E=Sophos;i="5.92,225,1650956400"; d="scan'208";a="306814814" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 26 Jun 2022 20:14:08 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,225,1650956400"; d="scan'208";a="564490729" Received: from dpdk_jiangcheng.sh.intel.com ([10.67.119.26]) by orsmga006.jf.intel.com with ESMTP; 26 Jun 2022 20:14:05 -0700 From: Cheng Jiang To: maxime.coquelin@redhat.com, chenbo.xia@intel.com Cc: dev@dpdk.org, jiayu.hu@intel.com, xuan.ding@intel.com, wenwux.ma@intel.com, yuanx.wang@intel.com, yvonnex.yang@intel.com, Cheng Jiang Subject: [PATCH v2] doc: add release notes for async vhost dequeue data-path Date: Mon, 27 Jun 2022 02:36:36 +0000 Message-Id: <20220627023636.36849-1-cheng1.jiang@intel.com> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20220627021821.34848-1-cheng1.jiang@intel.com> References: <20220627021821.34848-1-cheng1.jiang@intel.com> MIME-Version: 1.0 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Add release notes for asynchronous vhost dequeue data-path. Emphasize that split virtqueue and packed virtqueue are both supported in asynchronous vhost dequeue data-path. Signed-off-by: Cheng Jiang --- v2: fixed a full stop missing in the commit message. doc/guides/rel_notes/release_22_07.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) -- 2.35.1 diff --git a/doc/guides/rel_notes/release_22_07.rst b/doc/guides/rel_notes/release_22_07.rst index e743031f61..2594ddcec1 100644 --- a/doc/guides/rel_notes/release_22_07.rst +++ b/doc/guides/rel_notes/release_22_07.rst @@ -102,7 +102,8 @@ New Features * **Added vhost async dequeue API to receive packets from guest.** Added vhost async dequeue API which can leverage DMA devices to - accelerate receiving packets from guest. + accelerate receiving packets from guest. Split virtqueue and packed + virtqueue are both supported. * **Added vhost API to get the device type of a vDPA device.**