Lines Matching defs:level

1118 	int level;
1124 * Last Level Cache (LLC). Since the LLC level can change from
1125 * architecture to architecture, set level greater than
1129 level = MAX_CACHE_LVL + 1;
1134 * The format to specify cache level is LX or lX where X is the
1135 * cache level.
1138 pr_err("Cache level must be of form L[1-%d], or l[1-%d]\n",
1144 level = atoi(&str[1]);
1145 if (level < 1) {
1146 pr_err("Cache level must be of form L[1-%d], or l[1-%d]\n",
1152 if (level > MAX_CACHE_LVL) {
1153 pr_err("perf only supports max cache level of %d.\n"
1159 *aggr_level = level;
1241 "cache level", "aggregate count at this cache level (Default: LLC)",
1261 OPT_UINTEGER(0, "td-level", &stat_config.topdown_level,
1262 "Set the metrics level for the top-down statistics (0: max level)"),
1332 * cache level and cache id. Cache level is read from
1333 * /sys/devices/system/cpu/cpuX/cache/indexY/level where as cache instance ID
1364 * Save the data for the highest level if no
1365 * level was specified by the user.
1371 if (caches[i].level > caches[max_level_index].level)
1375 cache->cache_lvl = caches[max_level_index].level;
1384 if (caches[i].level == cache_level) {
1404 * level, die and socket populated with the cache instache ID, cache level,
1703 * If user has not specified a level, find the fist level with
1707 if (cache_level <= MAX_CACHE_LVL && caches[i].level != cache_level)
1715 id->cache_lvl = caches[i].level;
1951 * Detailed stats (-d), covering the L1 and last level data caches:
2113 pr_err("Invalid top-down metrics level. The max level is %u.\n", max_level);
2401 "cache level",
2402 "aggregate count at this cache level (Default: LLC)",