DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH v1] net/vhost: add queue status check
@ 2021-11-16 16:44 Miao Li
  2021-11-16  9:34 ` Maxime Coquelin
  0 siblings, 1 reply; 5+ messages in thread
From: Miao Li @ 2021-11-16 16:44 UTC (permalink / raw)
  To: dev; +Cc: chenbo.xia, maxime.coquelin

This patch adds queue status check to make sure that vhost monitor
address will not be got until the link between backend and frontend
up and the packets are allowed to be queued.

Signed-off-by: Miao Li <miao.li@intel.com>
---
 drivers/net/vhost/rte_eth_vhost.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/net/vhost/rte_eth_vhost.c b/drivers/net/vhost/rte_eth_vhost.c
index 070f0e6dfd..9d600054d8 100644
--- a/drivers/net/vhost/rte_eth_vhost.c
+++ b/drivers/net/vhost/rte_eth_vhost.c
@@ -1415,6 +1415,8 @@ vhost_get_monitor_addr(void *rx_queue, struct rte_power_monitor_cond *pmc)
 	int ret;
 	if (vq == NULL)
 		return -EINVAL;
+	if (unlikely(rte_atomic32_read(&vq->allow_queuing) == 0))
+		return -EINVAL;
 	ret = rte_vhost_get_monitor_addr(vq->vid, vq->virtqueue_id,
 			&vhost_pmc);
 	if (ret < 0)
-- 
2.25.1


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-01-31  8:36 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-16 16:44 [PATCH v1] net/vhost: add queue status check Miao Li
2021-11-16  9:34 ` Maxime Coquelin
2021-11-16  9:36   ` Maxime Coquelin
2021-11-19  6:30     ` Li, Miao
2022-01-31  8:36       ` Maxime Coquelin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).