Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cd866606 authored by Singhai, Anjali's avatar Singhai, Anjali Committed by David S. Miller
Browse files

i40e: Call geneve_get_rx_port to get the existing Geneve ports



This patch adds a call to geneve_get_rx_port in i40e so that when it
comes up it can learn about the existing geneve tunnels.

Signed-off-by: default avatarAnjali Singhai Jain <anjali.singhai@intel.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 05ca4029
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -5339,6 +5339,9 @@ int i40e_open(struct net_device *netdev)
#ifdef CONFIG_I40E_VXLAN
	vxlan_get_rx_port(netdev);
#endif
#ifdef CONFIG_I40E_GENEVE
	geneve_get_rx_port(netdev);
#endif

	return 0;
}