Rename tun_dev to fwd_dev within mlx5e_tc_update_priv struct
since future implementation may introduce other device types
which the handler is forwarding to.
Signed-off-by: Ariel Levkovich <lariel@nvidia.com>
Signed-off-by: Saeed Mahameed <saeedm@nvidia.com>
                return false;
        }
 
-       /* Set tun_dev so we do dev_put() after datapath */
-       tc_priv->tun_dev = dev;
+       /* Set fwd_dev so we do dev_put() after datapath */
+       tc_priv->fwd_dev = dev;
 
        skb->dev = dev;
 
 
 static void mlx5_rep_tc_post_napi_receive(struct mlx5e_tc_update_priv *tc_priv)
 {
-       if (tc_priv->tun_dev)
-               dev_put(tc_priv->tun_dev);
+       if (tc_priv->fwd_dev)
+               dev_put(tc_priv->fwd_dev);
 }
 
 static void mlx5e_restore_skb_sample(struct mlx5e_priv *priv, struct sk_buff *skb,
 
 int mlx5e_tc_num_filters(struct mlx5e_priv *priv, unsigned long flags);
 
 struct mlx5e_tc_update_priv {
-       struct net_device *tun_dev;
+       struct net_device *fwd_dev;
 };
 
 struct mlx5_nic_flow_attr {