<div dir="ltr"><div dir="ltr"><br></div><br><div class="gmail_quote gmail_quote_container"><div dir="ltr" class="gmail_attr">On Thu, Mar 12, 2026 at 6:36 AM Kevin Traynor <<a href="mailto:ktraynor@redhat.com">ktraynor@redhat.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">batch_info->enabled is read in tfc_mpc_batch_start() before it is<br>
initialized.<br>
<br>
Initialize batch_info to avoid this.<br>
<br>
Fixes: 67ad40007cd6 ("net/bnxt/tf_ulp: fix VFR cleanup and stats lockup")<br>
Cc: <a href="mailto:stable@dpdk.org" target="_blank">stable@dpdk.org</a><br>
<br>
Signed-off-by: Kevin Traynor <<a href="mailto:ktraynor@redhat.com" target="_blank">ktraynor@redhat.com</a>><br>
---<br></blockquote><div>Acked-by: Kishore Padmanabha <<a href="mailto:kishore.padmanabha@broadcom.com">kishore.padmanabha@broadcom.com</a>></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
drivers/net/bnxt/tf_ulp/ulp_sc_mgr.c | 2 +-<br>
1 file changed, 1 insertion(+), 1 deletion(-)<br>
<br>
diff --git a/drivers/net/bnxt/tf_ulp/ulp_sc_mgr.c b/drivers/net/bnxt/tf_ulp/ulp_sc_mgr.c<br>
index b55366e003..23e1b59ca4 100644<br>
--- a/drivers/net/bnxt/tf_ulp/ulp_sc_mgr.c<br>
+++ b/drivers/net/bnxt/tf_ulp/ulp_sc_mgr.c<br>
@@ -193,5 +193,5 @@ static uint32_t ulp_stats_cache_main_loop(void *arg)<br>
struct ulp_sc_tfc_stats_cache_entry *sce;<br>
struct ulp_sc_tfc_stats_cache_entry *sce_end;<br>
- struct tfc_mpc_batch_info_t batch_info;<br>
+ struct tfc_mpc_batch_info_t batch_info = {0};<br>
struct bnxt_ulp_sc_info *ulp_sc_info;<br>
struct bnxt_ulp_context *ctxt = NULL;<br>
-- <br>
2.53.0<br>
<br>
</blockquote></div></div>