Home
last modified time | relevance | path

Searched refs:cache_result (Results 1 – 8 of 8) sorted by relevance

/arch/xtensa/kernel/
A Dperf_event.c115 unsigned int cache_type, cache_op, cache_result; in xtensa_pmu_cache_event() local
120 cache_result = (config >> 16) & 0xff; in xtensa_pmu_cache_event()
124 cache_result >= C(RESULT_MAX)) in xtensa_pmu_cache_event()
127 ret = xtensa_cache_ctl[cache_type][cache_op][cache_result]; in xtensa_pmu_cache_event()
/arch/arc/kernel/
A Dperf_event.c303 unsigned int cache_type, cache_op, cache_result; in arc_pmu_cache_event() local
308 cache_result = (config >> 16) & 0xff; in arc_pmu_cache_event()
313 if (cache_result >= PERF_COUNT_HW_CACHE_RESULT_MAX) in arc_pmu_cache_event()
316 ret = arc_pmu_cache_map[cache_type][cache_op][cache_result]; in arc_pmu_cache_event()
322 cache_type, cache_op, cache_result, ret, in arc_pmu_cache_event()
/arch/loongarch/kernel/
A Dperf_event.c603 unsigned int cache_type, cache_op, cache_result; in loongarch_pmu_map_cache_event() local
614 cache_result = (config >> 16) & 0xff; in loongarch_pmu_map_cache_event()
615 if (cache_result >= PERF_COUNT_HW_CACHE_RESULT_MAX) in loongarch_pmu_map_cache_event()
621 [cache_result]); in loongarch_pmu_map_cache_event()
/arch/riscv/kvm/
A Dvcpu_pmu.c95 unsigned int cache_type, cache_op, cache_result; in kvm_pmu_get_perf_event_cache_config() local
102 cache_result = sbi_event_code & SBI_PMU_EVENT_CACHE_RESULT_ID_CODE_MASK; in kvm_pmu_get_perf_event_cache_config()
106 cache_result >= PERF_COUNT_HW_CACHE_RESULT_MAX) in kvm_pmu_get_perf_event_cache_config()
109 config = cache_type | (cache_op << 8) | (cache_result << 16); in kvm_pmu_get_perf_event_cache_config()
/arch/csky/kernel/
A Dperf_event.c952 unsigned int cache_type, cache_op, cache_result; in csky_pmu_cache_event() local
956 cache_result = (config >> 16) & 0xff; in csky_pmu_cache_event()
962 if (cache_result >= PERF_COUNT_HW_CACHE_RESULT_MAX) in csky_pmu_cache_event()
965 return csky_pmu_cache_map[cache_type][cache_op][cache_result]; in csky_pmu_cache_event()
/arch/x86/events/
A Dcore.c377 unsigned int cache_type, cache_op, cache_result; in set_ext_hw_attr() local
392 cache_result = (config >> 16) & 0xff; in set_ext_hw_attr()
393 if (cache_result >= PERF_COUNT_HW_CACHE_RESULT_MAX) in set_ext_hw_attr()
395 cache_result = array_index_nospec(cache_result, PERF_COUNT_HW_CACHE_RESULT_MAX); in set_ext_hw_attr()
397 val = hybrid_var(event->pmu, hw_cache_event_ids)[cache_type][cache_op][cache_result]; in set_ext_hw_attr()
405 attr->config1 = hybrid_var(event->pmu, hw_cache_extra_regs)[cache_type][cache_op][cache_result]; in set_ext_hw_attr()
/arch/mips/kernel/
A Dperf_event_mipsxx.c733 unsigned int cache_type, cache_op, cache_result; in mipspmu_map_cache_event() local
744 cache_result = (config >> 16) & 0xff; in mipspmu_map_cache_event()
745 if (cache_result >= PERF_COUNT_HW_CACHE_RESULT_MAX) in mipspmu_map_cache_event()
751 [cache_result]); in mipspmu_map_cache_event()
/arch/sparc/kernel/
A Dperf_event.c1198 unsigned int cache_type, cache_op, cache_result; in sparc_map_cache_event() local
1212 cache_result = (config >> 16) & 0xff; in sparc_map_cache_event()
1213 if (cache_result >= PERF_COUNT_HW_CACHE_RESULT_MAX) in sparc_map_cache_event()
1216 pmap = &((*sparc_pmu->cache_map)[cache_type][cache_op][cache_result]); in sparc_map_cache_event()

Completed in 729 milliseconds