diff --git a/include/linux/cacheinfo.h b/include/linux/cacheinfo.h index 2cb15fe4fe12..3dde175f4108 100644 --- a/include/linux/cacheinfo.h +++ b/include/linux/cacheinfo.h @@ -3,6 +3,7 @@ #define _LINUX_CACHEINFO_H #include +#include #include #include @@ -112,24 +113,38 @@ int acpi_get_cache_info(unsigned int cpu, const struct attribute_group *cache_get_priv_group(struct cacheinfo *this_leaf); +/* + * Get the cacheinfo structure for the cache associated with @cpu at + * level @level. + * cpuhp lock must be held. + */ +static inline struct cacheinfo *get_cpu_cacheinfo_level(int cpu, int level) +{ + struct cpu_cacheinfo *ci = get_cpu_cacheinfo(cpu); + int i; + + lockdep_assert_cpus_held(); + + for (i = 0; i < ci->num_leaves; i++) { + if (ci->info_list[i].level == level) { + if (ci->info_list[i].attributes & CACHE_ID) + return &ci->info_list[i]; + return NULL; + } + } + + return NULL; +} + /* * Get the id of the cache associated with @cpu at level @level. * cpuhp lock must be held. */ static inline int get_cpu_cacheinfo_id(int cpu, int level) { - struct cpu_cacheinfo *ci = get_cpu_cacheinfo(cpu); - int i; + struct cacheinfo *ci = get_cpu_cacheinfo_level(cpu, level); - for (i = 0; i < ci->num_leaves; i++) { - if (ci->info_list[i].level == level) { - if (ci->info_list[i].attributes & CACHE_ID) - return ci->info_list[i].id; - return -1; - } - } - - return -1; + return ci ? ci->id : -1; } #ifdef CONFIG_ARM64