Lines Matching defs:cache
3 * Extract CPU cache information and expose them via sysfs.
70 struct cacheinfo *cache;
75 cache = this_cpu_ci->info_list + idx;
76 seq_printf(m, "cache%-11d: ", idx);
77 seq_printf(m, "level=%d ", cache->level);
78 seq_printf(m, "type=%s ", cache_type_string[cache->type]);
80 cache->disable_sysfs ? "Shared" : "Private");
81 seq_printf(m, "size=%dK ", cache->size >> 10);
82 seq_printf(m, "line_size=%u ", cache->coherency_line_size);
83 seq_printf(m, "associativity=%d", cache->ways_of_associativity);