patches for DPDK stable branches
 help / color / mirror / Atom feed
From: "Xueming(Steven) Li" <xuemingl@nvidia.com>
To: Yuan Wang <yuanx.wang@intel.com>, "stable@dpdk.org" <stable@dpdk.org>
Cc: "maxime.coquelin@redhat.com" <maxime.coquelin@redhat.com>,
	"chenbo.xia@intel.com" <chenbo.xia@intel.com>,
	"jiayu.hu@intel.com" <jiayu.hu@intel.com>,
	"cheng1.jiang@intel.com" <cheng1.jiang@intel.com>,
	"qiming.yang@intel.com" <qiming.yang@intel.com>,
	Stephen Hemminger <stephen@networkplumber.org>
Subject: RE: [PATCH 20.11] net/virtio-user: fix socket non-blocking mode
Date: Tue, 16 Aug 2022 05:54:35 +0000	[thread overview]
Message-ID: <DM4PR12MB537362D858FB4BF8FC4016B4A16B9@DM4PR12MB5373.namprd12.prod.outlook.com> (raw)
In-Reply-To: <20220815173235.52217-1-yuanx.wang@intel.com>

Hi Yuan,

20.11 RC1 test has started, this  patch will queue to the next LTS.

Thanks,
Xueming Li

> -----Original Message-----
> From: Yuan Wang <yuanx.wang@intel.com>
> Sent: Tuesday, August 16, 2022 1:33 AM
> To: Xueming(Steven) Li <xuemingl@nvidia.com>; stable@dpdk.org
> Cc: maxime.coquelin@redhat.com; chenbo.xia@intel.com; jiayu.hu@intel.com; cheng1.jiang@intel.com; qiming.yang@intel.com; Yuan
> Wang <yuanx.wang@intel.com>; Stephen Hemminger <stephen@networkplumber.org>
> Subject: [PATCH 20.11] net/virtio-user: fix socket non-blocking mode
> 
> [ upstream commit 41f9a1757ffc010cc3debaad9a56af8ad88d0c6d ]
> 
> The virtio-user initialization requires unix socket to receive backend messages in block mode. However, virtio_user_read_dev_config() sets
> the same socket to nonblocking via fcntl, which affects all threads.
> Enabling the rxq interrupt can causes both of these behaviors to occur concurrently, with the result that the initialization may fail because
> no messages are received in nonblocking socket.
> 
> Fix that by replacing O_NONBLOCK with the recv per-call option MSG_DONTWAIT.
> 
> Fixes: ef53b6030039 ("net/virtio-user: support LSC")
> 
> Signed-off-by: Yuan Wang <yuanx.wang@intel.com>
> Acked-by: Stephen Hemminger <stephen@networkplumber.org>
> Reviewed-by: Chenbo Xia <chenbo.xia@intel.com>
> ---
>  drivers/net/virtio/virtio_user_ethdev.c | 15 ++-------------
>  1 file changed, 2 insertions(+), 13 deletions(-)
> 
> diff --git a/drivers/net/virtio/virtio_user_ethdev.c b/drivers/net/virtio/virtio_user_ethdev.c
> index 04d6d7e2f..347caeef4 100644
> --- a/drivers/net/virtio/virtio_user_ethdev.c
> +++ b/drivers/net/virtio/virtio_user_ethdev.c
> @@ -252,15 +252,9 @@ virtio_user_read_dev_config(struct virtio_hw *hw, size_t offset,
> 
>  		if (dev->vhostfd >= 0) {
>  			int r;
> -			int flags;
> 
> -			flags = fcntl(dev->vhostfd, F_GETFL);
> -			if (fcntl(dev->vhostfd, F_SETFL,
> -					flags | O_NONBLOCK) == -1) {
> -				PMD_DRV_LOG(ERR, "error setting O_NONBLOCK flag");
> -				return;
> -			}
> -			r = recv(dev->vhostfd, buf, 128, MSG_PEEK);
> +			r = recv(dev->vhostfd, buf, 128,
> +				       MSG_PEEK | MSG_DONTWAIT);
>  			if (r == 0 || (r < 0 && errno != EAGAIN)) {
>  				dev->net_status &= (~VIRTIO_NET_S_LINK_UP);
>  				PMD_DRV_LOG(ERR, "virtio-user port %u is down", @@ -276,11 +270,6 @@
> virtio_user_read_dev_config(struct virtio_hw *hw, size_t offset,
>  			} else {
>  				dev->net_status |= VIRTIO_NET_S_LINK_UP;
>  			}
> -			if (fcntl(dev->vhostfd, F_SETFL,
> -					flags & ~O_NONBLOCK) == -1) {
> -				PMD_DRV_LOG(ERR, "error clearing O_NONBLOCK flag");
> -				return;
> -			}
>  		} else if (dev->is_server) {
>  			dev->net_status &= (~VIRTIO_NET_S_LINK_UP);
>  			if (virtio_user_server_reconnect(dev) >= 0)
> --
> 2.25.1


      reply	other threads:[~2022-08-16  5:54 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-15 17:32 Yuan Wang
2022-08-16  5:54 ` Xueming(Steven) Li [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=DM4PR12MB537362D858FB4BF8FC4016B4A16B9@DM4PR12MB5373.namprd12.prod.outlook.com \
    --to=xuemingl@nvidia.com \
    --cc=chenbo.xia@intel.com \
    --cc=cheng1.jiang@intel.com \
    --cc=jiayu.hu@intel.com \
    --cc=maxime.coquelin@redhat.com \
    --cc=qiming.yang@intel.com \
    --cc=stable@dpdk.org \
    --cc=stephen@networkplumber.org \
    --cc=yuanx.wang@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).