From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 6EC53A00C2; Mon, 28 Mar 2022 17:05:35 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3F5E2427F9; Mon, 28 Mar 2022 17:05:35 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mails.dpdk.org (Postfix) with ESMTP id D95BB41104 for ; Mon, 28 Mar 2022 17:05:33 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1648479933; 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: in-reply-to:in-reply-to:references:references; bh=2ZxltBtFVr+7CFWJNiHkqU90Ziu3NPKEUxbsLzdM+p4=; b=Ci8lrNFKRP37HkeksZUukRVOfs++BmUiNoq1OcyEobwy8TwV06ai+i/USl1dO+gf+Qa071 D7h44fzOxrZCdF/QtPoluN/Lv5HRVnl7jmk/JlURbl+UiguGSToKNSlJy8YrROhZN1bOcE tg3vp0DYBKhuL1NJuy+lHx9A7trmSJY= Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-625-sfOItdG-O0iKP_mk1uqZWw-1; Mon, 28 Mar 2022 11:05:30 -0400 X-MC-Unique: sfOItdG-O0iKP_mk1uqZWw-1 Received: from smtp.corp.redhat.com (int-mx10.intmail.prod.int.rdu2.redhat.com [10.11.54.10]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id C97D73C14858; Mon, 28 Mar 2022 15:05:28 +0000 (UTC) Received: from [10.39.208.2] (unknown [10.39.208.2]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 95602401E8A; Mon, 28 Mar 2022 15:05:22 +0000 (UTC) Message-ID: <010d6382-866e-2492-b4f2-3825adeadf2b@redhat.com> Date: Mon, 28 Mar 2022 17:05:20 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.7.0 Subject: Re: [RFC 1/2] vhost: add unsafe API to check inflight packets To: xuan.ding@intel.com, chenbo.xia@intel.com Cc: dev@dpdk.org, jiayu.hu@intel.com, sunil.pai.g@intel.com References: <20220216070417.9597-1-xuan.ding@intel.com> <20220216070417.9597-2-xuan.ding@intel.com> From: Maxime Coquelin In-Reply-To: <20220216070417.9597-2-xuan.ding@intel.com> X-Scanned-By: MIMEDefang 2.85 on 10.11.54.10 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-Language: en-US Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit 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 Hi Xuan, On 2/16/22 08:04, xuan.ding@intel.com wrote: > From: Xuan Ding > > In async data path, when vring state changes or device is destroyed, > it is necessary to know the number of inflight packets in DMA engine. > This patch provides a thread unsafe API to return the number of > inflight packets for a vhost queue without using any lock. > > Signed-off-by: Xuan Ding > --- > doc/guides/prog_guide/vhost_lib.rst | 5 +++++ > doc/guides/rel_notes/release_22_03.rst | 4 ++++ > lib/vhost/rte_vhost_async.h | 14 ++++++++++++++ > lib/vhost/version.map | 1 + > lib/vhost/vhost.c | 26 ++++++++++++++++++++++++++ > 5 files changed, 50 insertions(+) > > diff --git a/doc/guides/prog_guide/vhost_lib.rst b/doc/guides/prog_guide/vhost_lib.rst > index 886f8f5e72..f95288d128 100644 > --- a/doc/guides/prog_guide/vhost_lib.rst > +++ b/doc/guides/prog_guide/vhost_lib.rst > @@ -271,6 +271,11 @@ The following is an overview of some key Vhost API functions: > This function returns the amount of in-flight packets for the vhost > queue using async acceleration. > > + * ``rte_vhost_async_get_inflight_thread_unsafe(vid, queue_id)`` > + > + Get the number of inflight packets for a vhost queue without > + performing any locking. Here and below in the API doc, I would add that it should only be used within the vhost ops, which already hold the lock. > + > * ``rte_vhost_clear_queue_thread_unsafe(vid, queue_id, **pkts, count, dma_id, vchan_id)`` > > Clear inflight packets which are submitted to DMA engine in vhost async data > diff --git a/doc/guides/rel_notes/release_22_03.rst b/doc/guides/rel_notes/release_22_03.rst > index ff3095d742..37ef37bb20 100644 > --- a/doc/guides/rel_notes/release_22_03.rst > +++ b/doc/guides/rel_notes/release_22_03.rst > @@ -149,6 +149,10 @@ New Features > * Called ``rte_ipv4/6_udptcp_cksum_mbuf()`` functions in testpmd csum mode > to support software UDP/TCP checksum over multiple segments. > > +* **Added vhost API to get the number of inflight packets.** > + > + Added an API which can get the number of inflight packets in > + vhost async data path without using lock. > > Removed Items > ------------- > diff --git a/lib/vhost/rte_vhost_async.h b/lib/vhost/rte_vhost_async.h > index 838c4778cc..06b0b0a579 100644 > --- a/lib/vhost/rte_vhost_async.h > +++ b/lib/vhost/rte_vhost_async.h > @@ -135,6 +135,20 @@ uint16_t rte_vhost_poll_enqueue_completed(int vid, uint16_t queue_id, > __rte_experimental > int rte_vhost_async_get_inflight(int vid, uint16_t queue_id); > > +/** > + * This function is lock-free version to return the amount of in-flight > + * packets for the vhost queue which uses async channel acceleration. > + * > + * @param vid > + * id of vhost device to enqueue data > + * @param queue_id > + * queue id to enqueue data > + * @return > + * the amount of in-flight packets on success; -1 on failure > + */ > +__rte_experimental > +int rte_vhost_async_get_inflight_thread_unsafe(int vid, uint16_t queue_id); > + > /** > * This function checks async completion status and clear packets for > * a specific vhost device queue. Packets which are inflight will be > diff --git a/lib/vhost/version.map b/lib/vhost/version.map > index 1202ba9c1a..03b46cb10e 100644 > --- a/lib/vhost/version.map > +++ b/lib/vhost/version.map > @@ -87,6 +87,7 @@ EXPERIMENTAL { > > # added in 22.03 > rte_vhost_async_dma_configure; > + rte_vhost_async_get_inflight_thread_unsafe; Don't forget to move it to "added in 22.07". > }; > > INTERNAL { > diff --git a/lib/vhost/vhost.c b/lib/vhost/vhost.c > index 6bcb716de0..33dca62c6c 100644 > --- a/lib/vhost/vhost.c > +++ b/lib/vhost/vhost.c > @@ -1907,6 +1907,32 @@ rte_vhost_async_get_inflight(int vid, uint16_t queue_id) > return ret; > } > > +int > +rte_vhost_async_get_inflight_thread_unsafe(int vid, uint16_t queue_id) > +{ > + struct vhost_virtqueue *vq; > + struct virtio_net *dev = get_device(vid); > + int ret = -1; > + > + if (dev == NULL) > + return ret; > + > + if (queue_id >= VHOST_MAX_VRING) > + return ret; > + > + vq = dev->virtqueue[queue_id]; > + > + if (vq == NULL) > + return ret; > + > + if (!vq->async) > + return ret; > + > + ret = vq->async->pkts_inflight_n; > + > + return ret; > +} > + > int > rte_vhost_get_monitor_addr(int vid, uint16_t queue_id, > struct rte_vhost_power_monitor_cond *pmc)