Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

coresight: fix indentation error in cscfg_remove_owned_csdev_configs()

Fix wrong indentation in cscfg_remove_owned_csdev_configs()

Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202506102238.XQfScl5x-lkp@intel.com/
Fixes: 53b9e2659719 ("coresight: holding cscfg_csdev_lock while removing cscfg from csdev")
Signed-off-by: Yeoreum Yun <yeoreum.yun@arm.com>
Reviewed-by: Leo Yan <leo.yan@arm.com>
Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com>
Link: https://lore.kernel.org/r/20250611103025.939020-1-yeoreum.yun@arm.com

authored by

Yeoreum Yun and committed by
Suzuki K Poulose
21dd3f8b 7fdd04e1

+1 -1
+1 -1
drivers/hwtracing/coresight/coresight-syscfg.c
··· 395 395 if (list_empty(&csdev->config_csdev_list)) 396 396 return; 397 397 398 - guard(raw_spinlock_irqsave)(&csdev->cscfg_csdev_lock); 398 + guard(raw_spinlock_irqsave)(&csdev->cscfg_csdev_lock); 399 399 400 400 list_for_each_entry_safe(config_csdev, tmp, &csdev->config_csdev_list, node) { 401 401 if (config_csdev->config_desc->load_owner == load_owner)