]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
net/mlx5e: Store eswitch uplink representor state on a dedicated struct
authorOz Shlomo <ozsh@mellanox.com>
Thu, 25 Oct 2018 18:51:11 +0000 (21:51 +0300)
committerSaeed Mahameed <saeedm@mellanox.com>
Mon, 10 Dec 2018 23:53:03 +0000 (15:53 -0800)
Currently only a single field in the representor private structure
is relevant for uplink representors.  As a pre-step to allow adding
additional uplink representor fields, introduce uplink representor
private structure.

This is prepration step towards replacing egdev logic with the
indirect block notification mechanism. This patch doesn't change
any functionality.

Signed-off-by: Oz Shlomo <ozsh@mellanox.com>
Reviewed-by: Eli Britstein <elibr@mellanox.com>
Acked-by: Or Gerlitz <ogerlitz@mellanox.com>
Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
drivers/net/ethernet/mellanox/mlx5/core/en_rep.c
drivers/net/ethernet/mellanox/mlx5/core/en_rep.h
drivers/net/ethernet/mellanox/mlx5/core/en_tc.c

index a137540b84bf0cc634438464a5a40f1054c373be..25a656b50264cddefdc70140f83229bbffed98cb 100644 (file)
@@ -1244,7 +1244,7 @@ mlx5e_nic_rep_load(struct mlx5_core_dev *dev, struct mlx5_eswitch_rep *rep)
 {
        struct mlx5e_rep_priv *rpriv = mlx5e_rep_to_rep_priv(rep);
        struct mlx5e_priv *priv = netdev_priv(rpriv->netdev);
-
+       struct mlx5_rep_uplink_priv *uplink_priv = &rpriv->uplink_priv;
        int err;
 
        if (test_bit(MLX5E_STATE_OPENED, &priv->state)) {
@@ -1258,7 +1258,7 @@ mlx5e_nic_rep_load(struct mlx5_core_dev *dev, struct mlx5_eswitch_rep *rep)
                goto err_remove_sqs;
 
        /* init shared tc flow table */
-       err = mlx5e_tc_esw_init(&rpriv->tc_ht);
+       err = mlx5e_tc_esw_init(&uplink_priv->tc_ht);
        if (err)
                goto  err_neigh_cleanup;
 
@@ -1281,7 +1281,7 @@ mlx5e_nic_rep_unload(struct mlx5_eswitch_rep *rep)
                mlx5e_remove_sqs_fwd_rules(priv);
 
        /* clean uplink offloaded TC rules, delete shared tc flow table */
-       mlx5e_tc_esw_cleanup(&rpriv->tc_ht);
+       mlx5e_tc_esw_cleanup(&rpriv->uplink_priv.tc_ht);
 
        mlx5e_rep_neigh_cleanup(rpriv);
 }
index 844d32d5c29f051386c525c0a8f89063340c7550..8d39c5c59aebddf97b682ae9565ac536ee8a27a7 100644 (file)
@@ -53,13 +53,20 @@ struct mlx5e_neigh_update_table {
        unsigned long           min_interval; /* jiffies */
 };
 
+struct mlx5_rep_uplink_priv {
+       /* Filters DB - instantiated by the uplink representor and shared by
+        * the uplink's VFs
+        */
+       struct rhashtable  tc_ht;
+};
+
 struct mlx5e_rep_priv {
        struct mlx5_eswitch_rep *rep;
        struct mlx5e_neigh_update_table neigh_update;
        struct net_device      *netdev;
        struct mlx5_flow_handle *vport_rx_rule;
        struct list_head       vport_sqs_list;
-       struct rhashtable      tc_ht; /* valid for uplink rep */
+       struct mlx5_rep_uplink_priv uplink_priv; /* valid for uplink rep */
 };
 
 static inline
index a3ff2492646d7a29b53d1003f98df85e218d3c8d..42eb6ee377549fbf82528eed55c683a47095b1ef 100644 (file)
@@ -3018,7 +3018,7 @@ static struct rhashtable *get_tc_ht(struct mlx5e_priv *priv)
 
        if (MLX5_VPORT_MANAGER(priv->mdev) && esw->mode == SRIOV_OFFLOADS) {
                uplink_rpriv = mlx5_eswitch_get_uplink_priv(esw, REP_ETH);
-               return &uplink_rpriv->tc_ht;
+               return &uplink_rpriv->uplink_priv.tc_ht;
        } else
                return &priv->fs.tc.ht;
 }