[PATCH] perf/dwc_pcie: Fix use of uninitialized variable

Ilkka Koskinen posted 1 patch 1 week, 1 day ago
drivers/perf/dwc_pcie_pmu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] perf/dwc_pcie: Fix use of uninitialized variable
Posted by Ilkka Koskinen 1 week, 1 day ago
Fix use of uninitialized variable in group validation code.

Fixes: 71396cfac97d ("perf/dwc_pcie: Support counting multiple lane events in parallel")
Reported-by: kernel test robot <lkp@intel.com>
Reported-by: Dan Carpenter <error27@gmail.com>
Closes: https://lore.kernel.org/r/202509231223.gZsX6Eio-lkp@intel.com/
Signed-off-by: Ilkka Koskinen <ilkka@os.amperecomputing.com>
---
 drivers/perf/dwc_pcie_pmu.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/perf/dwc_pcie_pmu.c b/drivers/perf/dwc_pcie_pmu.c
index d77f767cde89..22f73ac894e9 100644
--- a/drivers/perf/dwc_pcie_pmu.c
+++ b/drivers/perf/dwc_pcie_pmu.c
@@ -402,7 +402,7 @@ static int dwc_pcie_pmu_validate_group(struct perf_event *event)
 {
 	struct perf_event *sibling, *leader = event->group_leader;
 	DECLARE_BITMAP(val_lane_events, 2 * DWC_PCIE_LANE_MAX_EVENTS_PER_GROUP);
-	bool time_event;
+	bool time_event = false;
 	int type;
 
 	type = DWC_PCIE_EVENT_TYPE(leader);
-- 
2.51.0
Re: [PATCH] perf/dwc_pcie: Fix use of uninitialized variable
Posted by Will Deacon 1 week ago
On Tue, 23 Sep 2025 14:31:36 -0700, Ilkka Koskinen wrote:
> Fix use of uninitialized variable in group validation code.
> 
> 

Applied to will (for-next/perf), thanks!

[1/1] perf/dwc_pcie: Fix use of uninitialized variable
      https://git.kernel.org/will/c/2084660ad288

Cheers,
-- 
Will

https://fixes.arm64.dev
https://next.arm64.dev
https://will.arm64.dev