Browse Source

ARM: vexpress: DCSCB: tighten CPU validity assertion

Currently the cpu argument validity check uses a hardcoded limit of 4.
The DCSCB configuration data provides the actual number of CPUs and
we already use it elsewhere.  Let's improve the cpu argument validity
check by using that information instead.

Signed-off-by: Nicolas Pitre <nico@linaro.org>
Signed-off-by: Olof Johansson <olof@lixom.net>
Nicolas Pitre 10 năm trước cách đây
mục cha
commit
03fd5db717
1 tập tin đã thay đổi với 3 bổ sung3 xóa
  1. 3 3
      arch/arm/mach-vexpress/dcscb.c

+ 3 - 3
arch/arm/mach-vexpress/dcscb.c

@@ -54,7 +54,7 @@ static int dcscb_power_up(unsigned int cpu, unsigned int cluster)
 	unsigned int all_mask;
 	unsigned int all_mask;
 
 
 	pr_debug("%s: cpu %u cluster %u\n", __func__, cpu, cluster);
 	pr_debug("%s: cpu %u cluster %u\n", __func__, cpu, cluster);
-	if (cpu >= 4 || cluster >= 2)
+	if (cluster >= 2 || !(cpumask & dcscb_allcpus_mask[cluster]))
 		return -EINVAL;
 		return -EINVAL;
 
 
 	all_mask = dcscb_allcpus_mask[cluster];
 	all_mask = dcscb_allcpus_mask[cluster];
@@ -105,7 +105,7 @@ static void dcscb_power_down(void)
 	cpumask = (1 << cpu);
 	cpumask = (1 << cpu);
 
 
 	pr_debug("%s: cpu %u cluster %u\n", __func__, cpu, cluster);
 	pr_debug("%s: cpu %u cluster %u\n", __func__, cpu, cluster);
-	BUG_ON(cpu >= 4 || cluster >= 2);
+	BUG_ON(cluster >= 2 || !(cpumask & dcscb_allcpus_mask[cluster]));
 
 
 	all_mask = dcscb_allcpus_mask[cluster];
 	all_mask = dcscb_allcpus_mask[cluster];
 
 
@@ -189,7 +189,7 @@ static void __init dcscb_usage_count_init(void)
 	cluster = MPIDR_AFFINITY_LEVEL(mpidr, 1);
 	cluster = MPIDR_AFFINITY_LEVEL(mpidr, 1);
 
 
 	pr_debug("%s: cpu %u cluster %u\n", __func__, cpu, cluster);
 	pr_debug("%s: cpu %u cluster %u\n", __func__, cpu, cluster);
-	BUG_ON(cpu >= 4 || cluster >= 2);
+	BUG_ON(cluster >= 2 || !((1 << cpu) & dcscb_allcpus_mask[cluster]));
 	dcscb_use_count[cpu][cluster] = 1;
 	dcscb_use_count[cpu][cluster] = 1;
 }
 }