diff options
| author | Paolo Bonzini <pbonzini@redhat.com> | 2022-09-23 10:06:08 -0400 | 
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2022-09-23 10:06:08 -0400 | 
| commit | 69604fe76e58c9d195e48b41d019b07fc27ce9d7 (patch) | |
| tree | c9d1e7cfe406a8f168c3aceaf989eea0275d3045 /drivers/base/arch_topology.c | |
| parent | 50b2d49bafa16e6311ab2da82f5aafc5f9ada99b (diff) | |
| parent | 189e7d876e48d7c791fe1c9c01516f70f5621a9f (diff) | |
Merge tag 'kvm-s390-master-6.0-2' of https://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux into HEAD
More pci fixes
Fix for a code analyser warning
Diffstat (limited to 'drivers/base/arch_topology.c')
| -rw-r--r-- | drivers/base/arch_topology.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/base/arch_topology.c b/drivers/base/arch_topology.c index 0424b59b695e..46cbe4471e78 100644 --- a/drivers/base/arch_topology.c +++ b/drivers/base/arch_topology.c @@ -724,7 +724,7 @@ const struct cpumask *cpu_clustergroup_mask(int cpu)  	 */  	if (cpumask_subset(cpu_coregroup_mask(cpu),  			   &cpu_topology[cpu].cluster_sibling)) -		return get_cpu_mask(cpu); +		return topology_sibling_cpumask(cpu);  	return &cpu_topology[cpu].cluster_sibling;  } @@ -735,7 +735,7 @@ void update_siblings_masks(unsigned int cpuid)  	int cpu, ret;  	ret = detect_cache_attributes(cpuid); -	if (ret) +	if (ret && ret != -ENOENT)  		pr_info("Early cacheinfo failed, ret = %d\n", ret);  	/* update core and thread sibling masks */  | 
