From 04e5322f725332682b6a26085d467cbf621e6a04 Mon Sep 17 00:00:00 2001 From: Sahil Shakil Malpekar Date: Tue, 25 Aug 2026 11:01:56 +0530 Subject: [PATCH] fix(sbsa): avoid duplicate PMU_PE_01 execution Remove the duplicate PMU_PE_01 entry from the S_L7PMU alias rule list so the test is executed only once. Signed-off-by: Sahil Shakil Malpekar Change-Id: I41b7780f9559d46004d57fcf5621db9575767647 --- val/src/rule_metadata.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/val/src/rule_metadata.c b/val/src/rule_metadata.c index 87344a8c..0541f2f9 100644 --- a/val/src/rule_metadata.c +++ b/val/src/rule_metadata.c @@ -4739,10 +4739,10 @@ const RULE_ID_e s_l7pmu_rule_list[] = { PMU_SYS_2, PMU_SYS_5, PMU_SYS_6, PMU_MEM_1, PMU_BM_1, PMU_BM_2, PMU_EV_11, PMU_SPE, /* Not covered or Not implemented*/ - PMU_PE_01, PMU_EV_01, PMU_EV_02, PMU_EV_03, - PMU_EV_04, PMU_EV_05, PMU_EV_06, PMU_EV_07, - PMU_EV_08, PMU_EV_09, PMU_EV_10, PMU_BM_3, - PMU_BM_4, PMU_SYS_7, PMU_SEC_1, + PMU_EV_01, PMU_EV_02, PMU_EV_03, PMU_EV_04, + PMU_EV_05, PMU_EV_06, PMU_EV_07, PMU_EV_08, + PMU_EV_09, PMU_EV_10, PMU_BM_3, PMU_BM_4, + PMU_SYS_7, PMU_SEC_1, /********/ RULE_ID_SENTINEL};