From: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
To: dev@dpdk.org
Cc: Kishore Padmanabha <kishore.padmanabha@broadcom.com>,
Shuanglin Wang <shuanglin.wang@broadcom.com>,
Shahaji Bhosle <shahaji.bhosle@broadcom.com>,
Michael Baucom <michael.baucom@broadcom.com>,
Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
Subject: [PATCH 26/47] net/bnxt: tf_ulp: enable recipe id generation
Date: Fri, 30 Aug 2024 19:30:28 +0530 [thread overview]
Message-ID: <20240830140049.1715230-27-sriharsha.basavapatna@broadcom.com> (raw)
In-Reply-To: <20240830140049.1715230-1-sriharsha.basavapatna@broadcom.com>
From: Kishore Padmanabha <kishore.padmanabha@broadcom.com>
Added support to generate recipe id generation.
This patch includes a few related changes:
fix segfault in the wildcard recipe process
The recipe id is being passed as 8 bit instead of 64bit
causing the crash.
Ported code using default_non_ha resource
Missing code to use default_non_ha resource if HA is
disabled.
fix move debug message from info to debug level
The action pointer does not exist for non representor ports
so it is a debug message.
Signed-off-by: Kishore Padmanabha <kishore.padmanabha@broadcom.com>
Signed-off-by: Shuanglin Wang <shuanglin.wang@broadcom.com>
Reviewed-by: Shahaji Bhosle <shahaji.bhosle@broadcom.com>
Reviewed-by: Michael Baucom <michael.baucom@broadcom.com>
Signed-off-by: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
---
drivers/net/bnxt/tf_ulp/bnxt_ulp_tf.c | 4 +
drivers/net/bnxt/tf_ulp/ulp_flow_db.c | 2 +-
drivers/net/bnxt/tf_ulp/ulp_mapper.c | 257 +++++++++++++++++++-------
drivers/net/bnxt/tf_ulp/ulp_mapper.h | 2 +
4 files changed, 196 insertions(+), 69 deletions(-)
diff --git a/drivers/net/bnxt/tf_ulp/bnxt_ulp_tf.c b/drivers/net/bnxt/tf_ulp/bnxt_ulp_tf.c
index 2d46d21a5d..0cc2b4e81d 100644
--- a/drivers/net/bnxt/tf_ulp/bnxt_ulp_tf.c
+++ b/drivers/net/bnxt/tf_ulp/bnxt_ulp_tf.c
@@ -257,6 +257,10 @@ ulp_tf_resources_get(struct bnxt_ulp_context *ulp_ctx,
return -EINVAL;
}
+ /* use DEFAULT_NON_HA instead of DEFAULT resources if HA is disabled */
+ if (ULP_APP_HA_IS_DYNAMIC(ulp_ctx))
+ stype = ulp_ctx->cfg_data->def_session_type;
+
unnamed = bnxt_ulp_resource_resv_list_get(&unum);
if (unnamed == NULL) {
BNXT_DRV_DBG(ERR, "Unable to get resource resv list.\n");
diff --git a/drivers/net/bnxt/tf_ulp/ulp_flow_db.c b/drivers/net/bnxt/tf_ulp/ulp_flow_db.c
index 82a653594f..099ae7adc8 100644
--- a/drivers/net/bnxt/tf_ulp/ulp_flow_db.c
+++ b/drivers/net/bnxt/tf_ulp/ulp_flow_db.c
@@ -1198,7 +1198,7 @@ ulp_default_flow_db_cfa_action_get(struct bnxt_ulp_context *ulp_ctx,
BNXT_ULP_RESOURCE_FUNC_INDEX_TABLE,
sub_typ, ¶ms);
if (rc) {
- BNXT_DRV_DBG(INFO, "CFA Action ptr not found for flow id %u\n",
+ BNXT_DRV_DBG(DEBUG, "CFA Action ptr not found for flow id %u\n",
flow_id);
return -ENOENT;
}
diff --git a/drivers/net/bnxt/tf_ulp/ulp_mapper.c b/drivers/net/bnxt/tf_ulp/ulp_mapper.c
index e399c136f3..b44b25429f 100644
--- a/drivers/net/bnxt/tf_ulp/ulp_mapper.c
+++ b/drivers/net/bnxt/tf_ulp/ulp_mapper.c
@@ -1302,7 +1302,9 @@ ulp_mapper_key_recipe_tbl_deinit(struct bnxt_ulp_mapper_data *mdata)
rte_free(recipes[idx]);
}
rte_free(mdata->key_recipe_info.recipes[dir][ftype]);
- mdata->key_recipe_info.recipes[dir][ftype] = NULL;
+ mdata->key_recipe_info.recipes[dir][ftype] = NULL;
+ rte_free(mdata->key_recipe_info.recipe_ba[dir][ftype]);
+ mdata->key_recipe_info.recipe_ba[dir][ftype] = NULL;
}
}
mdata->key_recipe_info.num_recipes = 0;
@@ -1315,8 +1317,9 @@ ulp_mapper_key_recipe_tbl_init(struct bnxt_ulp_context *ulp_ctx,
struct bnxt_ulp_key_recipe_entry **recipes;
enum bnxt_ulp_direction dir;
uint32_t dev_id = 0, size_val;
- uint32_t num_recipes, ftype;
+ uint32_t num_recipes, ftype, pool_size;
int32_t rc = 0;
+ struct bitalloc *recipe_ba;
rc = bnxt_ulp_cntxt_dev_id_get(ulp_ctx, &dev_id);
if (rc) {
@@ -1327,20 +1330,43 @@ ulp_mapper_key_recipe_tbl_init(struct bnxt_ulp_context *ulp_ctx,
if (!num_recipes)
return rc;
+ /* Need to write these values so that a failure will result in freeing
+ * the memory in the deinit
+ */
+ mdata->key_recipe_info.num_recipes = num_recipes;
+ mdata->key_recipe_info.max_fields = BNXT_ULP_KEY_RECIPE_MAX_FLDS;
+
size_val = sizeof(struct bnxt_ulp_key_recipe_entry *);
+ pool_size = BITALLOC_SIZEOF(num_recipes);
+
+ /* The caller will deinit if failures occur, so just return fail instead
+ * of attempting to free allocated memory
+ **/
for (dir = 0; dir < BNXT_ULP_DIRECTION_LAST; dir++) {
for (ftype = 0; ftype < ULP_RECIPE_TYPE_MAX; ftype++) {
recipes = rte_zmalloc("key_recipe_list",
size_val * num_recipes, 0);
if (!recipes) {
- BNXT_DRV_DBG(ERR, "Uanable to alloc memory\n");
+ BNXT_DRV_DBG(ERR, "Unable to alloc memory\n");
return -ENOMEM;
}
mdata->key_recipe_info.recipes[dir][ftype] = recipes;
+
+ recipe_ba = rte_malloc("key_recipe_ba", pool_size, 0);
+ if (!recipe_ba) {
+ BNXT_DRV_DBG(ERR, "Unable to alloc memory\n");
+ return -ENOMEM;
+ }
+ mdata->key_recipe_info.recipe_ba[dir][ftype] =
+ recipe_ba;
+ rc = ba_init(recipe_ba, num_recipes, true);
+ if (rc) {
+ BNXT_DRV_DBG(ERR,
+ "Unable to alloc recipe ba\n");
+ return -ENOMEM;
+ }
}
}
- mdata->key_recipe_info.num_recipes = num_recipes;
- mdata->key_recipe_info.max_fields = BNXT_ULP_KEY_RECIPE_MAX_FLDS;
return rc;
}
@@ -1348,7 +1374,7 @@ static struct bnxt_ulp_mapper_data *
ulp_mapper_key_recipe_args_validate(struct bnxt_ulp_context *ulp_ctx,
enum bnxt_ulp_direction dir,
enum bnxt_ulp_resource_sub_type stype,
- uint8_t recipe_id)
+ uint32_t recipe_id)
{
struct bnxt_ulp_mapper_data *mdata;
@@ -1373,7 +1399,7 @@ ulp_mapper_key_recipe_args_validate(struct bnxt_ulp_context *ulp_ctx,
}
if (recipe_id >= mdata->key_recipe_info.num_recipes ||
!mdata->key_recipe_info.num_recipes) {
- BNXT_DRV_DBG(ERR, "Key recipe id out of range(%d >= %d)\n",
+ BNXT_DRV_DBG(ERR, "Key recipe id out of range(%u >= %u)\n",
recipe_id, mdata->key_recipe_info.num_recipes);
return NULL;
}
@@ -1384,7 +1410,8 @@ static struct bnxt_ulp_key_recipe_entry *
ulp_mapper_key_recipe_alloc(struct bnxt_ulp_context *ulp_ctx,
enum bnxt_ulp_direction dir,
enum bnxt_ulp_resource_sub_type stype,
- uint8_t recipe_id, uint8_t *max_fields)
+ uint32_t recipe_id, bool alloc_only,
+ uint8_t *max_fields)
{
struct bnxt_ulp_key_recipe_entry **recipes;
struct bnxt_ulp_mapper_data *mdata = NULL;
@@ -1396,7 +1423,7 @@ ulp_mapper_key_recipe_alloc(struct bnxt_ulp_context *ulp_ctx,
return NULL;
recipes = mdata->key_recipe_info.recipes[dir][stype];
- if (recipes[recipe_id] == NULL) {
+ if (alloc_only && recipes[recipe_id] == NULL) {
recipes[recipe_id] = rte_zmalloc("key_recipe_entry", size_s, 0);
if (recipes[recipe_id] == NULL) {
BNXT_DRV_DBG(ERR, "Unable to alloc key recipe\n");
@@ -1409,11 +1436,12 @@ ulp_mapper_key_recipe_alloc(struct bnxt_ulp_context *ulp_ctx,
ulp_mapper_key_recipe_type_to_str(stype), recipe_id);
#endif
#endif
- *max_fields = mdata->key_recipe_info.max_fields;
- return recipes[recipe_id];
+ } else if (alloc_only) {
+ BNXT_DRV_DBG(ERR, "Recipe ID (%d) already allocated\n",
+ recipe_id);
}
- BNXT_DRV_DBG(ERR, "Recipe ID (%d) already allocated\n", recipe_id);
- return NULL;
+ *max_fields = mdata->key_recipe_info.max_fields;
+ return recipes[recipe_id];
}
/* The free just marks the entry as not in use and resets the number of entries
@@ -1427,15 +1455,28 @@ ulp_mapper_key_recipe_free(struct bnxt_ulp_context *ulp_ctx,
{
struct bnxt_ulp_key_recipe_entry **recipes;
struct bnxt_ulp_mapper_data *mdata = NULL;
+ struct bitalloc *recipe_ba = NULL;
+ int32_t rc;
mdata = ulp_mapper_key_recipe_args_validate(ulp_ctx, dir,
stype, index);
if (mdata == NULL)
return -EINVAL;
+ recipe_ba = mdata->key_recipe_info.recipe_ba[dir][stype];
+ rc = ba_free(recipe_ba, index);
+ if (rc < 0)
+ BNXT_DRV_DBG(DEBUG, "Unable to free recipe id[%s][%u] = (%d)\n",
+ (dir == BNXT_ULP_DIRECTION_INGRESS) ? "rx" : "tx",
+ stype, index);
+
recipes = mdata->key_recipe_info.recipes[dir][stype];
- if (recipes[index] == NULL)
- return -EINVAL;
+ if (recipes[index] == NULL) {
+ BNXT_DRV_DBG(DEBUG, "recipe id[%s][%u] = (%d) already freed\n",
+ (dir == BNXT_ULP_DIRECTION_INGRESS) ? "rx" : "tx",
+ stype, index);
+ return 0;
+ }
rte_free(recipes[index]);
recipes[index] = NULL;
#ifdef RTE_LIBRTE_BNXT_TRUFLOW_DEBUG
@@ -1473,7 +1514,8 @@ ulp_mapper_key_recipe_fields_get(struct bnxt_ulp_mapper_parms *parms,
struct bnxt_ulp_key_recipe_entry **recipes;
enum bnxt_ulp_resource_sub_type stype;
struct bnxt_ulp_mapper_data *mdata = NULL;
- uint64_t recipe_id = 0;
+ uint64_t regval = 0;
+ uint32_t recipe_id = 0;
/* Don't like this, but need to convert from a tbl resource func to the
* subtype for key_recipes.
@@ -1493,12 +1535,12 @@ ulp_mapper_key_recipe_fields_get(struct bnxt_ulp_mapper_parms *parms,
/* Get the recipe index from the registry file */
if (!ulp_regfile_read(parms->regfile, tbl->key_recipe_operand,
- &recipe_id)) {
+ ®val)) {
BNXT_DRV_DBG(ERR, "Failed to get tbl idx from regfile[%d].\n",
tbl->tbl_operand);
return NULL;
}
- recipe_id = tfp_be_to_cpu_64(recipe_id);
+ recipe_id = (uint32_t)tfp_be_to_cpu_64(regval);
mdata = ulp_mapper_key_recipe_args_validate(parms->ulp_ctx,
tbl->direction,
stype, recipe_id);
@@ -1665,29 +1707,39 @@ static int32_t
ulp_mapper_key_recipe_tbl_process(struct bnxt_ulp_mapper_parms *parms,
struct bnxt_ulp_mapper_tbl_info *tbl)
{
- uint8_t max_rflds = 0, recipe_id = 0, rnum_flds = 0;
+ bool alloc = false, write = false, regfile = false;
struct bnxt_ulp_mapper_key_info *kflds, *rflds;
struct bnxt_ulp_mapper_field_info *kfld, *rfld;
+ struct bnxt_ulp_mapper_data *mdata = NULL;
struct bnxt_ulp_key_recipe_entry *recipe;
struct ulp_flow_db_res_params fid_parms;
+ int32_t rc = 0, free_rc, tmp_recipe_id;
+ enum bnxt_ulp_resource_sub_type stype;
+ uint8_t max_rflds = 0, rnum_flds = 0;
+ enum bnxt_ulp_direction dir;
+ struct bitalloc *recipe_ba = NULL;
+ uint32_t recipe_id = 0;
uint32_t i, num_kflds;
bool written = false;
uint64_t regval = 0;
- int32_t rc = 0, free_rc;
- /* The key recipe tbl only supports writing based on regfile,
- * get the index to write via the regfile
- */
+
+ dir = tbl->direction;
+ stype = tbl->resource_sub_type;
+
switch (tbl->tbl_opcode) {
+ case BNXT_ULP_KEY_RECIPE_TBL_OPC_ALLOC_WR_REGFILE:
+ alloc = true;
+ write = true;
+ regfile = true;
+ break;
+ case BNXT_ULP_KEY_RECIPE_TBL_OPC_ALLOC_REGFILE:
+ alloc = true;
+ regfile = true;
+ break;
case BNXT_ULP_KEY_RECIPE_TBL_OPC_WR_REGFILE:
- if (!ulp_regfile_read(parms->regfile, tbl->tbl_operand,
- ®val)) {
- BNXT_DRV_DBG(ERR,
- "Failed to get tbl idx from regfile[%d].\n",
- tbl->tbl_operand);
- return -EINVAL;
- }
-
- recipe_id = rte_be_to_cpu_64(regval);
+ alloc = false;
+ regfile = true;
+ write = true;
break;
default:
BNXT_DRV_DBG(ERR, "Invalid recipe table opcode %d\n",
@@ -1695,58 +1747,126 @@ ulp_mapper_key_recipe_tbl_process(struct bnxt_ulp_mapper_parms *parms,
return -EINVAL;
};
- /* Get the key fields to process */
- kflds = ulp_mapper_key_fields_get(parms, tbl, &num_kflds);
- if (!kflds || !num_kflds) {
- BNXT_DRV_DBG(ERR, "Failed to get the key fields\n");
- return -EINVAL;
+ /* Get the recipe_id from the regfile */
+ if (!alloc && regfile) {
+ if (!ulp_regfile_read(parms->regfile,
+ tbl->tbl_operand,
+ ®val)) {
+ BNXT_DRV_DBG(ERR,
+ "Fail to get tbl idx from regfile[%d].\n",
+ tbl->tbl_operand);
+ return -EINVAL;
+ }
+ recipe_id = rte_be_to_cpu_64(regval);
}
- /* Get the recipe entry to write */
- recipe = ulp_mapper_key_recipe_alloc(parms->ulp_ctx,
- tbl->direction,
- tbl->resource_sub_type,
- recipe_id, &max_rflds);
+ if (alloc) {
+ /* Allocate a recipe id based on the direction and type
+ * only supported types are EM and WC for now.
+ */
+ mdata = ulp_mapper_key_recipe_args_validate(parms->ulp_ctx, dir,
+ stype, 0);
+ if (mdata == NULL)
+ return -EINVAL;
+
+ recipe_ba = mdata->key_recipe_info.recipe_ba[dir][stype];
+ tmp_recipe_id = ba_alloc(recipe_ba);
+ if (tmp_recipe_id < 0) {
+ BNXT_DRV_DBG(ERR, "Failed to allocate a recipe id\n");
+ return -EINVAL;
+ } else if ((uint32_t)tmp_recipe_id >=
+ mdata->key_recipe_info.num_recipes) {
+ /* Shouldn't get here, but could be an issue with the
+ * allocator, so free the recipe_id
+ */
+ BNXT_DRV_DBG(ERR,
+ "Allocated recipe id(%d) >= max(%d)\n",
+ tmp_recipe_id,
+ mdata->key_recipe_info.num_recipes);
+ (void)ba_free(recipe_ba, tmp_recipe_id);
+ return -EINVAL;
+ }
+ /* any error after this must goto error in order to free
+ * the recipe_id
+ */
+ recipe_id = tmp_recipe_id;
+ }
+
+ if (alloc && regfile) {
+ regval = rte_cpu_to_be_64(recipe_id);
+ rc = ulp_regfile_write(parms->regfile, tbl->tbl_operand,
+ regval);
+ if (rc) {
+ BNXT_DRV_DBG(ERR, "Failed to write regfile[%d] rc=%d\n",
+ tbl->tbl_operand, rc);
+ if (recipe_ba)
+ (void)ba_free(recipe_ba, recipe_id);
+ return -EINVAL;
+ }
+ }
+
+ /* allocate or Get the recipe entry based on alloc */
+ recipe = ulp_mapper_key_recipe_alloc(parms->ulp_ctx, dir, stype,
+ recipe_id, alloc, &max_rflds);
if (!recipe || !max_rflds) {
- BNXT_DRV_DBG(ERR, "Failed to allocate key recipe\n");
+ BNXT_DRV_DBG(ERR, "Failed to get the recipe slot\n");
+ if (recipe_ba)
+ (void)ba_free(recipe_ba, recipe_id);
return -EINVAL;
}
- rflds = &recipe->flds[0];
- /* iterate over the key fields and write the recipe */
- for (i = 0; i < num_kflds; i++) {
- if (rnum_flds >= max_rflds) {
- BNXT_DRV_DBG(ERR, "Max recipe fields exceeded (%d)\n",
- rnum_flds);
+ /* We have a recipe_id by now, write the data */
+ if (write) {
+ /* Get the key fields to process */
+ kflds = ulp_mapper_key_fields_get(parms, tbl, &num_kflds);
+ if (!kflds || !num_kflds) {
+ BNXT_DRV_DBG(ERR, "Failed to get the key fields\n");
+ rc = -EINVAL;
goto error;
}
- written = false;
- kfld = &kflds[i].field_info_spec;
- rfld = &rflds[rnum_flds].field_info_spec;
- rc = ulp_mapper_key_recipe_field_opc_process(parms, tbl->direction,
- kfld, 1, "KEY",
- &written, rfld);
- if (rc)
- goto error;
+ rflds = &recipe->flds[0];
+ /* iterate over the key fields and write the recipe */
+ for (i = 0; i < num_kflds; i++) {
+ if (rnum_flds >= max_rflds) {
+ BNXT_DRV_DBG(ERR,
+ "Max recipe fields exceeded (%d)\n",
+ rnum_flds);
+ goto error;
+ }
+ written = false;
+ kfld = &kflds[i].field_info_spec;
+ rfld = &rflds[rnum_flds].field_info_spec;
- if (tbl->resource_sub_type ==
- BNXT_ULP_RESOURCE_SUB_TYPE_KEY_RECIPE_TABLE_WM) {
- kfld = &kflds[i].field_info_mask;
- rfld = &rflds[rnum_flds].field_info_mask;
rc = ulp_mapper_key_recipe_field_opc_process(parms,
- tbl->direction,
- kfld, 0, "MASK",
- &written, rfld);
+ dir,
+ kfld, 1,
+ "KEY",
+ &written,
+ rfld);
if (rc)
goto error;
+
+ if (stype ==
+ BNXT_ULP_RESOURCE_SUB_TYPE_KEY_RECIPE_TABLE_WM) {
+ kfld = &kflds[i].field_info_mask;
+ rfld = &rflds[rnum_flds].field_info_mask;
+ rc = ulp_mapper_key_recipe_field_opc_process(parms,
+ dir,
+ kfld,
+ 0,
+ "MASK",
+ &written,
+ rfld);
+ if (rc)
+ goto error;
+ }
+ if (written)
+ rnum_flds++;
}
- if (written)
- rnum_flds++;
+ recipe->cnt = rnum_flds;
}
- recipe->cnt = rnum_flds;
-
memset(&fid_parms, 0, sizeof(fid_parms));
fid_parms.direction = tbl->direction;
fid_parms.resource_func = tbl->resource_func;
@@ -1764,6 +1884,7 @@ ulp_mapper_key_recipe_tbl_process(struct bnxt_ulp_mapper_parms *parms,
return rc;
error:
+ /* Free the actual recipe */
free_rc = ulp_mapper_key_recipe_free(parms->ulp_ctx, tbl->direction,
tbl->resource_sub_type, recipe_id);
if (free_rc)
diff --git a/drivers/net/bnxt/tf_ulp/ulp_mapper.h b/drivers/net/bnxt/tf_ulp/ulp_mapper.h
index 53305670bf..a934b01888 100644
--- a/drivers/net/bnxt/tf_ulp/ulp_mapper.h
+++ b/drivers/net/bnxt/tf_ulp/ulp_mapper.h
@@ -19,6 +19,7 @@
#include "ulp_utils.h"
#include "ulp_gen_tbl.h"
#include "tfc_em.h"
+#include "bitalloc.h"
#define ULP_IDENTS_INVALID ((uint16_t)0xffff)
@@ -40,6 +41,7 @@ struct bnxt_ulp_key_recipe_info {
uint32_t num_recipes;
uint8_t max_fields;
struct bnxt_ulp_key_recipe_entry **recipes[BNXT_ULP_DIRECTION_LAST][ULP_RECIPE_TYPE_MAX];
+ struct bitalloc *recipe_ba[BNXT_ULP_DIRECTION_LAST][ULP_RECIPE_TYPE_MAX];
};
struct ulp_mapper_core_ops;
--
2.39.3
next prev parent reply other threads:[~2024-08-30 13:54 UTC|newest]
Thread overview: 49+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-30 14:00 [PATCH 00/47] TruFlow update for Thor2 Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 01/47] net/bnxt: tf_core: fix wc tcam multi slice delete issue Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 02/47] net/bnxt: tf_core: tcam manager data corruption Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 03/47] net/bnxt: tf_core: External EM support cleanup Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 04/47] net/bnxt: tf_core: Thor TF EM key size check Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 05/47] net/bnxt: tf_core: flow scale improvement Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 06/47] net/bnxt: tf_core: TF support flow scale query Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 07/47] net/bnxt: tf_core: fix slice count in case of HA entry move Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 08/47] net/bnxt: tf_core: convert priority based TCAM manager to dynamic allocation Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 09/47] net/bnxt: tf_core: remove dead AFM code from session-based priority TCAM mgr Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 10/47] net/bnxt: tf_core: remove dead " Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 11/47] net/bnxt: tfc: support tf-core for Thor2 Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 12/47] net/bnxt: tf_ulp: add vxlan-gpe base support Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 13/47] net/bnxt: tf_ulp: add custom l2 etype tunnel support Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 14/47] net/bnxt: tf_ulp: add support for vf to vf flow offload Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 15/47] net/bnxt: tf_ulp: Wh+ mirroring support Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 16/47] net/bnxt: tf_ulp: miscellaneous fixes Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 17/47] net/bnxt: tf_ulp: support for Thor2 ulp layer Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 18/47] net/bnxt: tf_ulp: add support for overlapping flows Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 19/47] net/bnxt: tf_ulp: convert recipe table to dynamic memory Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 20/47] net/bnxt: tf_ulp: add feature bit support Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 21/47] net/bnxt: tf_ulp: add action read and clear support Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 22/47] net/bnxt: tf_ulp: update template files Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 23/47] net/bnxt: tf_ulp: VFR updates for Thor 2 Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 24/47] net/bnxt: tf_ulp: add support for tunnel flow stats Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 25/47] net/bnxt: tf_ulp: update template files Sriharsha Basavapatna
2024-08-30 14:00 ` Sriharsha Basavapatna [this message]
2024-08-30 14:00 ` [PATCH 27/47] net/bnxt: tf_ulp: fixed parent child db counters Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 28/47] net/bnxt: tf_ulp: modify return values to adhere to C coding standard Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 29/47] net/bnxt: tf_ulp: update template files Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 30/47] net/bnxt: tf_ulp: add mask defaults when mask is not specified Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 31/47] net/bnxt: tf_ulp: add jump action support Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 32/47] net/bnxt: tf_ulp: add support for flow priority Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 33/47] net/bnxt: tf_ulp: support for dynamic tunnel ports Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 34/47] net/bnxt: tf_ulp: add rte_mtr support for Thor2 Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 35/47] net/bnxt: tf_ulp: TF support flow scale query Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 36/47] net/bnxt: tf_ulp: add support for rss flow query to ULP Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 37/47] net/bnxt: tf_ulp: add track type feature to tables Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 38/47] net/bnxt: tf_ulp: inline utility functions and use likely/unlikely Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 39/47] net/bnxt: tf_ulp: switch ulp to use rte crc32 hash Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 40/47] net/bnxt: tf_ulp: update template files Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 41/47] net/bnxt: tf_ulp: support a few generic template items Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 42/47] net/bnxt: tf_ulp: TFC support flow scale query for Thor2 Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 43/47] net/bnxt: tf_ulp: update template files Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 44/47] net/bnxt: tf_ulp: enable support for truflow feature configuration Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 45/47] net/bnxt: tf_ulp: support a few feature extensions Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 46/47] net/bnxt: update template files Sriharsha Basavapatna
2024-08-30 14:00 ` [PATCH 47/47] net/bnxt: tf_ulp: add stats cache for thor2 Sriharsha Basavapatna
2024-09-25 12:02 ` [PATCH 00/47] TruFlow update for Thor2 Ajit Khaparde
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240830140049.1715230-27-sriharsha.basavapatna@broadcom.com \
--to=sriharsha.basavapatna@broadcom.com \
--cc=dev@dpdk.org \
--cc=kishore.padmanabha@broadcom.com \
--cc=michael.baucom@broadcom.com \
--cc=shahaji.bhosle@broadcom.com \
--cc=shuanglin.wang@broadcom.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).