diff mbox series

[net-next] cxgb4vf: Update port information in cxgb4vf_open()

Message ID 20190129095019.19304-1-arjun@chelsio.com
State Accepted
Delegated to: David Miller
Headers show
Series [net-next] cxgb4vf: Update port information in cxgb4vf_open() | expand

Commit Message

Arjun Vynipadath Jan. 29, 2019, 9:50 a.m. UTC
It's possible that the basic port information could have
changed since we first read it.

Signed-off-by: Arjun Vynipadath <arjun@chelsio.com>
---
 drivers/net/ethernet/chelsio/cxgb4vf/cxgb4vf_main.c | 7 +++++++
 1 file changed, 7 insertions(+)

Comments

David Miller Jan. 29, 2019, 5:50 p.m. UTC | #1
From: Arjun Vynipadath <arjun@chelsio.com>
Date: Tue, 29 Jan 2019 15:20:19 +0530

> It's possible that the basic port information could have
> changed since we first read it.
> 
> Signed-off-by: Arjun Vynipadath <arjun@chelsio.com>

Applied, thanks.
diff mbox series

Patch

diff --git a/drivers/net/ethernet/chelsio/cxgb4vf/cxgb4vf_main.c b/drivers/net/ethernet/chelsio/cxgb4vf/cxgb4vf_main.c
index a8f78ea..3e37815 100644
--- a/drivers/net/ethernet/chelsio/cxgb4vf/cxgb4vf_main.c
+++ b/drivers/net/ethernet/chelsio/cxgb4vf/cxgb4vf_main.c
@@ -855,6 +855,13 @@  static int cxgb4vf_open(struct net_device *dev)
 			return err;
 	}
 
+	/* It's possible that the basic port information could have
+	 * changed since we first read it.
+	 */
+	err = t4vf_update_port_info(pi);
+	if (err < 0)
+		return err;
+
 	/*
 	 * Note that this interface is up and start everything up ...
 	 */