|
@@ -1698,8 +1698,10 @@ int mlx4_en_start_port(struct net_device *dev)
|
|
|
|
|
|
mlx4_set_stats_bitmap(mdev->dev, &priv->stats_bitmap);
|
|
|
|
|
|
+#ifdef CONFIG_MLX4_EN_VXLAN
|
|
|
if (priv->mdev->dev->caps.flags2 & MLX4_DEV_CAP_FLAG2_VXLAN_OFFLOADS)
|
|
|
vxlan_get_rx_port(dev);
|
|
|
+#endif
|
|
|
priv->port_up = true;
|
|
|
netif_tx_start_all_queues(dev);
|
|
|
netif_device_attach(dev);
|
|
@@ -2267,6 +2269,7 @@ static int mlx4_en_get_phys_port_id(struct net_device *dev,
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
+#ifdef CONFIG_MLX4_EN_VXLAN
|
|
|
static void mlx4_en_add_vxlan_offloads(struct work_struct *work)
|
|
|
{
|
|
|
int ret;
|
|
@@ -2341,6 +2344,7 @@ static void mlx4_en_del_vxlan_port(struct net_device *dev,
|
|
|
|
|
|
queue_work(priv->mdev->workqueue, &priv->vxlan_del_task);
|
|
|
}
|
|
|
+#endif
|
|
|
|
|
|
static const struct net_device_ops mlx4_netdev_ops = {
|
|
|
.ndo_open = mlx4_en_open,
|
|
@@ -2368,8 +2372,10 @@ static const struct net_device_ops mlx4_netdev_ops = {
|
|
|
.ndo_busy_poll = mlx4_en_low_latency_recv,
|
|
|
#endif
|
|
|
.ndo_get_phys_port_id = mlx4_en_get_phys_port_id,
|
|
|
+#ifdef CONFIG_MLX4_EN_VXLAN
|
|
|
.ndo_add_vxlan_port = mlx4_en_add_vxlan_port,
|
|
|
.ndo_del_vxlan_port = mlx4_en_del_vxlan_port,
|
|
|
+#endif
|
|
|
};
|
|
|
|
|
|
static const struct net_device_ops mlx4_netdev_ops_master = {
|
|
@@ -2461,8 +2467,10 @@ int mlx4_en_init_netdev(struct mlx4_en_dev *mdev, int port,
|
|
|
INIT_WORK(&priv->linkstate_task, mlx4_en_linkstate);
|
|
|
INIT_DELAYED_WORK(&priv->stats_task, mlx4_en_do_get_stats);
|
|
|
INIT_DELAYED_WORK(&priv->service_task, mlx4_en_service_task);
|
|
|
+#ifdef CONFIG_MLX4_EN_VXLAN
|
|
|
INIT_WORK(&priv->vxlan_add_task, mlx4_en_add_vxlan_offloads);
|
|
|
INIT_WORK(&priv->vxlan_del_task, mlx4_en_del_vxlan_offloads);
|
|
|
+#endif
|
|
|
#ifdef CONFIG_MLX4_EN_DCB
|
|
|
if (!mlx4_is_slave(priv->mdev->dev)) {
|
|
|
if (mdev->dev->caps.flags & MLX4_DEV_CAP_FLAG_SET_ETH_SCHED) {
|