All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] hv_netvsc: do not use VF device if link is down
@ 2020-08-04 16:54 Stephen Hemminger
  2020-08-04 17:26 ` Haiyang Zhang
  2020-08-04 23:15 ` David Miller
  0 siblings, 2 replies; 3+ messages in thread
From: Stephen Hemminger @ 2020-08-04 16:54 UTC (permalink / raw)
  To: haiyangz, davem, kuba; +Cc: netdev, wei.liu, Stephen Hemminger, Shah, Ashish N

If the accelerated networking SRIOV VF device has lost carrier
use the synthetic network device which is available as backup
path. This is a rare case since if VF link goes down, normally
the VMBus device will also loose external connectivity as well.
But if the communication is between two VM's on the same host
the VMBus device will still work.

Reported-by: "Shah, Ashish N" <ashish.n.shah@intel.com>
Fixes: 0c195567a8f6 ("netvsc: transparent VF management")
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
---
 drivers/net/hyperv/netvsc_drv.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/drivers/net/hyperv/netvsc_drv.c b/drivers/net/hyperv/netvsc_drv.c
index 6267f706e8ee..0d779bba1b01 100644
--- a/drivers/net/hyperv/netvsc_drv.c
+++ b/drivers/net/hyperv/netvsc_drv.c
@@ -532,12 +532,13 @@ static int netvsc_xmit(struct sk_buff *skb, struct net_device *net, bool xdp_tx)
 	u32 hash;
 	struct hv_page_buffer pb[MAX_PAGE_BUFFER_COUNT];
 
-	/* if VF is present and up then redirect packets
-	 * already called with rcu_read_lock_bh
+	/* If VF is present and up then redirect packets to it.
+	 * Skip the VF if it is marked down or has no carrier.
+	 * If netpoll is in uses, then VF can not be used either.
 	 */
 	vf_netdev = rcu_dereference_bh(net_device_ctx->vf_netdev);
 	if (vf_netdev && netif_running(vf_netdev) &&
-	    !netpoll_tx_running(net))
+	    netif_carrier_ok(vf_netdev) && !netpoll_tx_running(net))
 		return netvsc_vf_xmit(net, vf_netdev, skb);
 
 	/* We will atmost need two pages to describe the rndis
-- 
2.27.0


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

* RE: [PATCH] hv_netvsc: do not use VF device if link is down
  2020-08-04 16:54 [PATCH] hv_netvsc: do not use VF device if link is down Stephen Hemminger
@ 2020-08-04 17:26 ` Haiyang Zhang
  2020-08-04 23:15 ` David Miller
  1 sibling, 0 replies; 3+ messages in thread
From: Haiyang Zhang @ 2020-08-04 17:26 UTC (permalink / raw)
  To: Stephen Hemminger, davem, kuba; +Cc: netdev, wei.liu, Shah, Ashish N



> -----Original Message-----
> From: Stephen Hemminger <stephen@networkplumber.org>
> Sent: Tuesday, August 4, 2020 12:54 PM
> To: Haiyang Zhang <haiyangz@microsoft.com>; davem@davemloft.net;
> kuba@kernel.org
> Cc: netdev@vger.kernel.org; wei.liu@kernel.org; Stephen Hemminger
> <stephen@networkplumber.org>; Shah, Ashish N <ashish.n.shah@intel.com>
> Subject: [PATCH] hv_netvsc: do not use VF device if link is down
> 
> If the accelerated networking SRIOV VF device has lost carrier
> use the synthetic network device which is available as backup
> path. This is a rare case since if VF link goes down, normally
> the VMBus device will also loose external connectivity as well.
> But if the communication is between two VM's on the same host
> the VMBus device will still work.
> 
> Reported-by: "Shah, Ashish N" <ashish.n.shah@intel.com>
> Fixes: 0c195567a8f6 ("netvsc: transparent VF management")
> Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>

Reviewed-by: Haiyang Zhang <haiyangz@microsoft.com>

Thank you.


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

* Re: [PATCH] hv_netvsc: do not use VF device if link is down
  2020-08-04 16:54 [PATCH] hv_netvsc: do not use VF device if link is down Stephen Hemminger
  2020-08-04 17:26 ` Haiyang Zhang
@ 2020-08-04 23:15 ` David Miller
  1 sibling, 0 replies; 3+ messages in thread
From: David Miller @ 2020-08-04 23:15 UTC (permalink / raw)
  To: stephen; +Cc: haiyangz, kuba, netdev, wei.liu, ashish.n.shah

From: Stephen Hemminger <stephen@networkplumber.org>
Date: Tue,  4 Aug 2020 09:54:15 -0700

> If the accelerated networking SRIOV VF device has lost carrier
> use the synthetic network device which is available as backup
> path. This is a rare case since if VF link goes down, normally
> the VMBus device will also loose external connectivity as well.
> But if the communication is between two VM's on the same host
> the VMBus device will still work.
> 
> Reported-by: "Shah, Ashish N" <ashish.n.shah@intel.com>
> Fixes: 0c195567a8f6 ("netvsc: transparent VF management")
> Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>

Applied and queued up for -stable, thanks.

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

end of thread, other threads:[~2020-08-04 23:15 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-04 16:54 [PATCH] hv_netvsc: do not use VF device if link is down Stephen Hemminger
2020-08-04 17:26 ` Haiyang Zhang
2020-08-04 23:15 ` David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.