Commit cd66358e authored by Sathya Perla's avatar Sathya Perla Committed by David S. Miller

bnxt_en: alloc tc_info{} struct only when tc flower is enabled

TC flower is not enabled on VFs and when there's no FW support.
Alloc the tc_info{} struct at init time only when TC flower is being
enabled.
Signed-off-by: default avatarSathya Perla <sathya.perla@broadcom.com>
Signed-off-by: default avatarMichael Chan <michael.chan@broadcom.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 5a84acbe
...@@ -7347,7 +7347,7 @@ static int bnxt_setup_tc_block_cb(enum tc_setup_type type, void *type_data, ...@@ -7347,7 +7347,7 @@ static int bnxt_setup_tc_block_cb(enum tc_setup_type type, void *type_data,
{ {
struct bnxt *bp = cb_priv; struct bnxt *bp = cb_priv;
if (BNXT_VF(bp)) if (!bnxt_tc_flower_enabled(bp))
return -EOPNOTSUPP; return -EOPNOTSUPP;
switch (type) { switch (type) {
......
...@@ -1346,7 +1346,7 @@ struct bnxt { ...@@ -1346,7 +1346,7 @@ struct bnxt {
enum devlink_eswitch_mode eswitch_mode; enum devlink_eswitch_mode eswitch_mode;
struct bnxt_vf_rep **vf_reps; /* array of vf-rep ptrs */ struct bnxt_vf_rep **vf_reps; /* array of vf-rep ptrs */
u16 *cfa_code_map; /* cfa_code -> vf_idx map */ u16 *cfa_code_map; /* cfa_code -> vf_idx map */
struct bnxt_tc_info tc_info; struct bnxt_tc_info *tc_info;
}; };
#define BNXT_RX_STATS_OFFSET(counter) \ #define BNXT_RX_STATS_OFFSET(counter) \
......
...@@ -658,7 +658,7 @@ static int bnxt_tc_put_l2_node(struct bnxt *bp, ...@@ -658,7 +658,7 @@ static int bnxt_tc_put_l2_node(struct bnxt *bp,
struct bnxt_tc_flow_node *flow_node) struct bnxt_tc_flow_node *flow_node)
{ {
struct bnxt_tc_l2_node *l2_node = flow_node->l2_node; struct bnxt_tc_l2_node *l2_node = flow_node->l2_node;
struct bnxt_tc_info *tc_info = &bp->tc_info; struct bnxt_tc_info *tc_info = bp->tc_info;
int rc; int rc;
/* remove flow_node from the L2 shared flow list */ /* remove flow_node from the L2 shared flow list */
...@@ -714,7 +714,7 @@ bnxt_tc_get_ref_flow_handle(struct bnxt *bp, struct bnxt_tc_flow *flow, ...@@ -714,7 +714,7 @@ bnxt_tc_get_ref_flow_handle(struct bnxt *bp, struct bnxt_tc_flow *flow,
struct bnxt_tc_flow_node *flow_node, struct bnxt_tc_flow_node *flow_node,
__le16 *ref_flow_handle) __le16 *ref_flow_handle)
{ {
struct bnxt_tc_info *tc_info = &bp->tc_info; struct bnxt_tc_info *tc_info = bp->tc_info;
struct bnxt_tc_flow_node *ref_flow_node; struct bnxt_tc_flow_node *ref_flow_node;
struct bnxt_tc_l2_node *l2_node; struct bnxt_tc_l2_node *l2_node;
...@@ -829,7 +829,7 @@ static int bnxt_tc_get_ref_decap_handle(struct bnxt *bp, ...@@ -829,7 +829,7 @@ static int bnxt_tc_get_ref_decap_handle(struct bnxt *bp,
struct bnxt_tc_flow_node *flow_node, struct bnxt_tc_flow_node *flow_node,
__le32 *ref_decap_handle) __le32 *ref_decap_handle)
{ {
struct bnxt_tc_info *tc_info = &bp->tc_info; struct bnxt_tc_info *tc_info = bp->tc_info;
struct bnxt_tc_flow_node *ref_flow_node; struct bnxt_tc_flow_node *ref_flow_node;
struct bnxt_tc_l2_node *decap_l2_node; struct bnxt_tc_l2_node *decap_l2_node;
...@@ -867,7 +867,7 @@ static void bnxt_tc_put_decap_l2_node(struct bnxt *bp, ...@@ -867,7 +867,7 @@ static void bnxt_tc_put_decap_l2_node(struct bnxt *bp,
struct bnxt_tc_flow_node *flow_node) struct bnxt_tc_flow_node *flow_node)
{ {
struct bnxt_tc_l2_node *decap_l2_node = flow_node->decap_l2_node; struct bnxt_tc_l2_node *decap_l2_node = flow_node->decap_l2_node;
struct bnxt_tc_info *tc_info = &bp->tc_info; struct bnxt_tc_info *tc_info = bp->tc_info;
int rc; int rc;
/* remove flow_node from the decap L2 sharing flow list */ /* remove flow_node from the decap L2 sharing flow list */
...@@ -886,7 +886,7 @@ static void bnxt_tc_put_decap_handle(struct bnxt *bp, ...@@ -886,7 +886,7 @@ static void bnxt_tc_put_decap_handle(struct bnxt *bp,
struct bnxt_tc_flow_node *flow_node) struct bnxt_tc_flow_node *flow_node)
{ {
__le32 decap_handle = flow_node->decap_node->tunnel_handle; __le32 decap_handle = flow_node->decap_node->tunnel_handle;
struct bnxt_tc_info *tc_info = &bp->tc_info; struct bnxt_tc_info *tc_info = bp->tc_info;
int rc; int rc;
if (flow_node->decap_l2_node) if (flow_node->decap_l2_node)
...@@ -973,7 +973,7 @@ static int bnxt_tc_get_decap_handle(struct bnxt *bp, struct bnxt_tc_flow *flow, ...@@ -973,7 +973,7 @@ static int bnxt_tc_get_decap_handle(struct bnxt *bp, struct bnxt_tc_flow *flow,
__le32 *decap_filter_handle) __le32 *decap_filter_handle)
{ {
struct ip_tunnel_key *decap_key = &flow->tun_key; struct ip_tunnel_key *decap_key = &flow->tun_key;
struct bnxt_tc_info *tc_info = &bp->tc_info; struct bnxt_tc_info *tc_info = bp->tc_info;
struct bnxt_tc_l2_key l2_info = { {0} }; struct bnxt_tc_l2_key l2_info = { {0} };
struct bnxt_tc_tunnel_node *decap_node; struct bnxt_tc_tunnel_node *decap_node;
struct ip_tunnel_key tun_key = { 0 }; struct ip_tunnel_key tun_key = { 0 };
...@@ -1051,7 +1051,7 @@ static void bnxt_tc_put_encap_handle(struct bnxt *bp, ...@@ -1051,7 +1051,7 @@ static void bnxt_tc_put_encap_handle(struct bnxt *bp,
struct bnxt_tc_tunnel_node *encap_node) struct bnxt_tc_tunnel_node *encap_node)
{ {
__le32 encap_handle = encap_node->tunnel_handle; __le32 encap_handle = encap_node->tunnel_handle;
struct bnxt_tc_info *tc_info = &bp->tc_info; struct bnxt_tc_info *tc_info = bp->tc_info;
int rc; int rc;
rc = bnxt_tc_put_tunnel_node(bp, &tc_info->encap_table, rc = bnxt_tc_put_tunnel_node(bp, &tc_info->encap_table,
...@@ -1070,7 +1070,7 @@ static int bnxt_tc_get_encap_handle(struct bnxt *bp, struct bnxt_tc_flow *flow, ...@@ -1070,7 +1070,7 @@ static int bnxt_tc_get_encap_handle(struct bnxt *bp, struct bnxt_tc_flow *flow,
__le32 *encap_handle) __le32 *encap_handle)
{ {
struct ip_tunnel_key *encap_key = &flow->actions.tun_encap_key; struct ip_tunnel_key *encap_key = &flow->actions.tun_encap_key;
struct bnxt_tc_info *tc_info = &bp->tc_info; struct bnxt_tc_info *tc_info = bp->tc_info;
struct bnxt_tc_tunnel_node *encap_node; struct bnxt_tc_tunnel_node *encap_node;
int rc; int rc;
...@@ -1137,7 +1137,7 @@ static int bnxt_tc_get_tunnel_handle(struct bnxt *bp, ...@@ -1137,7 +1137,7 @@ static int bnxt_tc_get_tunnel_handle(struct bnxt *bp,
static int __bnxt_tc_del_flow(struct bnxt *bp, static int __bnxt_tc_del_flow(struct bnxt *bp,
struct bnxt_tc_flow_node *flow_node) struct bnxt_tc_flow_node *flow_node)
{ {
struct bnxt_tc_info *tc_info = &bp->tc_info; struct bnxt_tc_info *tc_info = bp->tc_info;
int rc; int rc;
/* send HWRM cmd to free the flow-id */ /* send HWRM cmd to free the flow-id */
...@@ -1180,7 +1180,7 @@ static int bnxt_tc_add_flow(struct bnxt *bp, u16 src_fid, ...@@ -1180,7 +1180,7 @@ static int bnxt_tc_add_flow(struct bnxt *bp, u16 src_fid,
struct tc_cls_flower_offload *tc_flow_cmd) struct tc_cls_flower_offload *tc_flow_cmd)
{ {
struct bnxt_tc_flow_node *new_node, *old_node; struct bnxt_tc_flow_node *new_node, *old_node;
struct bnxt_tc_info *tc_info = &bp->tc_info; struct bnxt_tc_info *tc_info = bp->tc_info;
struct bnxt_tc_flow *flow; struct bnxt_tc_flow *flow;
__le32 tunnel_handle = 0; __le32 tunnel_handle = 0;
__le16 ref_flow_handle; __le16 ref_flow_handle;
...@@ -1261,7 +1261,7 @@ static int bnxt_tc_add_flow(struct bnxt *bp, u16 src_fid, ...@@ -1261,7 +1261,7 @@ static int bnxt_tc_add_flow(struct bnxt *bp, u16 src_fid,
static int bnxt_tc_del_flow(struct bnxt *bp, static int bnxt_tc_del_flow(struct bnxt *bp,
struct tc_cls_flower_offload *tc_flow_cmd) struct tc_cls_flower_offload *tc_flow_cmd)
{ {
struct bnxt_tc_info *tc_info = &bp->tc_info; struct bnxt_tc_info *tc_info = bp->tc_info;
struct bnxt_tc_flow_node *flow_node; struct bnxt_tc_flow_node *flow_node;
flow_node = rhashtable_lookup_fast(&tc_info->flow_table, flow_node = rhashtable_lookup_fast(&tc_info->flow_table,
...@@ -1280,7 +1280,7 @@ static int bnxt_tc_get_flow_stats(struct bnxt *bp, ...@@ -1280,7 +1280,7 @@ static int bnxt_tc_get_flow_stats(struct bnxt *bp,
struct tc_cls_flower_offload *tc_flow_cmd) struct tc_cls_flower_offload *tc_flow_cmd)
{ {
struct bnxt_tc_flow_stats stats, *curr_stats, *prev_stats; struct bnxt_tc_flow_stats stats, *curr_stats, *prev_stats;
struct bnxt_tc_info *tc_info = &bp->tc_info; struct bnxt_tc_info *tc_info = bp->tc_info;
struct bnxt_tc_flow_node *flow_node; struct bnxt_tc_flow_node *flow_node;
struct bnxt_tc_flow *flow; struct bnxt_tc_flow *flow;
unsigned long lastused; unsigned long lastused;
...@@ -1378,7 +1378,7 @@ static int ...@@ -1378,7 +1378,7 @@ static int
bnxt_tc_flow_stats_batch_update(struct bnxt *bp, int num_flows, bnxt_tc_flow_stats_batch_update(struct bnxt *bp, int num_flows,
struct bnxt_tc_stats_batch stats_batch[]) struct bnxt_tc_stats_batch stats_batch[])
{ {
struct bnxt_tc_info *tc_info = &bp->tc_info; struct bnxt_tc_info *tc_info = bp->tc_info;
int rc, i; int rc, i;
rc = bnxt_hwrm_cfa_flow_stats_get(bp, num_flows, stats_batch); rc = bnxt_hwrm_cfa_flow_stats_get(bp, num_flows, stats_batch);
...@@ -1405,7 +1405,7 @@ bnxt_tc_flow_stats_batch_prep(struct bnxt *bp, ...@@ -1405,7 +1405,7 @@ bnxt_tc_flow_stats_batch_prep(struct bnxt *bp,
struct bnxt_tc_stats_batch stats_batch[], struct bnxt_tc_stats_batch stats_batch[],
int *num_flows) int *num_flows)
{ {
struct bnxt_tc_info *tc_info = &bp->tc_info; struct bnxt_tc_info *tc_info = bp->tc_info;
struct rhashtable_iter *iter = &tc_info->iter; struct rhashtable_iter *iter = &tc_info->iter;
void *flow_node; void *flow_node;
int rc, i; int rc, i;
...@@ -1443,7 +1443,7 @@ bnxt_tc_flow_stats_batch_prep(struct bnxt *bp, ...@@ -1443,7 +1443,7 @@ bnxt_tc_flow_stats_batch_prep(struct bnxt *bp,
void bnxt_tc_flow_stats_work(struct bnxt *bp) void bnxt_tc_flow_stats_work(struct bnxt *bp)
{ {
struct bnxt_tc_info *tc_info = &bp->tc_info; struct bnxt_tc_info *tc_info = bp->tc_info;
int num_flows, rc; int num_flows, rc;
num_flows = atomic_read(&tc_info->flow_table.nelems); num_flows = atomic_read(&tc_info->flow_table.nelems);
...@@ -1528,7 +1528,7 @@ static const struct rhashtable_params bnxt_tc_tunnel_ht_params = { ...@@ -1528,7 +1528,7 @@ static const struct rhashtable_params bnxt_tc_tunnel_ht_params = {
int bnxt_init_tc(struct bnxt *bp) int bnxt_init_tc(struct bnxt *bp)
{ {
struct bnxt_tc_info *tc_info = &bp->tc_info; struct bnxt_tc_info *tc_info;
int rc; int rc;
if (bp->hwrm_spec_code < 0x10803) { if (bp->hwrm_spec_code < 0x10803) {
...@@ -1536,6 +1536,10 @@ int bnxt_init_tc(struct bnxt *bp) ...@@ -1536,6 +1536,10 @@ int bnxt_init_tc(struct bnxt *bp)
"Firmware does not support TC flower offload.\n"); "Firmware does not support TC flower offload.\n");
return -ENOTSUPP; return -ENOTSUPP;
} }
tc_info = kzalloc(sizeof(*tc_info), GFP_KERNEL);
if (!tc_info)
return -ENOMEM;
mutex_init(&tc_info->lock); mutex_init(&tc_info->lock);
/* Counter widths are programmed by FW */ /* Counter widths are programmed by FW */
...@@ -1545,7 +1549,7 @@ int bnxt_init_tc(struct bnxt *bp) ...@@ -1545,7 +1549,7 @@ int bnxt_init_tc(struct bnxt *bp)
tc_info->flow_ht_params = bnxt_tc_flow_ht_params; tc_info->flow_ht_params = bnxt_tc_flow_ht_params;
rc = rhashtable_init(&tc_info->flow_table, &tc_info->flow_ht_params); rc = rhashtable_init(&tc_info->flow_table, &tc_info->flow_ht_params);
if (rc) if (rc)
return rc; goto free_tc_info;
tc_info->l2_ht_params = bnxt_tc_l2_ht_params; tc_info->l2_ht_params = bnxt_tc_l2_ht_params;
rc = rhashtable_init(&tc_info->l2_table, &tc_info->l2_ht_params); rc = rhashtable_init(&tc_info->l2_table, &tc_info->l2_ht_params);
...@@ -1573,6 +1577,7 @@ int bnxt_init_tc(struct bnxt *bp) ...@@ -1573,6 +1577,7 @@ int bnxt_init_tc(struct bnxt *bp)
tc_info->enabled = true; tc_info->enabled = true;
bp->dev->hw_features |= NETIF_F_HW_TC; bp->dev->hw_features |= NETIF_F_HW_TC;
bp->dev->features |= NETIF_F_HW_TC; bp->dev->features |= NETIF_F_HW_TC;
bp->tc_info = tc_info;
return 0; return 0;
destroy_decap_table: destroy_decap_table:
...@@ -1583,14 +1588,16 @@ int bnxt_init_tc(struct bnxt *bp) ...@@ -1583,14 +1588,16 @@ int bnxt_init_tc(struct bnxt *bp)
rhashtable_destroy(&tc_info->l2_table); rhashtable_destroy(&tc_info->l2_table);
destroy_flow_table: destroy_flow_table:
rhashtable_destroy(&tc_info->flow_table); rhashtable_destroy(&tc_info->flow_table);
free_tc_info:
kfree(tc_info);
return rc; return rc;
} }
void bnxt_shutdown_tc(struct bnxt *bp) void bnxt_shutdown_tc(struct bnxt *bp)
{ {
struct bnxt_tc_info *tc_info = &bp->tc_info; struct bnxt_tc_info *tc_info = bp->tc_info;
if (!tc_info->enabled) if (!bnxt_tc_flower_enabled(bp))
return; return;
rhashtable_destroy(&tc_info->flow_table); rhashtable_destroy(&tc_info->flow_table);
...@@ -1598,4 +1605,6 @@ void bnxt_shutdown_tc(struct bnxt *bp) ...@@ -1598,4 +1605,6 @@ void bnxt_shutdown_tc(struct bnxt *bp)
rhashtable_destroy(&tc_info->decap_l2_table); rhashtable_destroy(&tc_info->decap_l2_table);
rhashtable_destroy(&tc_info->decap_table); rhashtable_destroy(&tc_info->decap_table);
rhashtable_destroy(&tc_info->encap_table); rhashtable_destroy(&tc_info->encap_table);
kfree(tc_info);
bp->tc_info = NULL;
} }
...@@ -198,7 +198,7 @@ void bnxt_tc_flow_stats_work(struct bnxt *bp); ...@@ -198,7 +198,7 @@ void bnxt_tc_flow_stats_work(struct bnxt *bp);
static inline bool bnxt_tc_flower_enabled(struct bnxt *bp) static inline bool bnxt_tc_flower_enabled(struct bnxt *bp)
{ {
return bp->tc_info.enabled; return bp->tc_info && bp->tc_info->enabled;
} }
#else /* CONFIG_BNXT_FLOWER_OFFLOAD */ #else /* CONFIG_BNXT_FLOWER_OFFLOAD */
......
...@@ -124,6 +124,9 @@ static int bnxt_vf_rep_setup_tc_block_cb(enum tc_setup_type type, ...@@ -124,6 +124,9 @@ static int bnxt_vf_rep_setup_tc_block_cb(enum tc_setup_type type,
struct bnxt *bp = vf_rep->bp; struct bnxt *bp = vf_rep->bp;
int vf_fid = bp->pf.vf[vf_rep->vf_idx].fw_fid; int vf_fid = bp->pf.vf[vf_rep->vf_idx].fw_fid;
if (!bnxt_tc_flower_enabled(vf_rep->bp))
return -EOPNOTSUPP;
switch (type) { switch (type) {
case TC_SETUP_CLSFLOWER: case TC_SETUP_CLSFLOWER:
return bnxt_tc_setup_flower(bp, vf_fid, type_data); return bnxt_tc_setup_flower(bp, vf_fid, type_data);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment