Symbol: this_cpu_property
tools/testing/selftests/kvm/include/x86/processor.h
774
max_leaf = this_cpu_property(X86_PROPERTY_MAX_BASIC_LEAF);
tools/testing/selftests/kvm/include/x86/processor.h
777
max_leaf = this_cpu_property(X86_PROPERTY_MAX_KVM_LEAF);
tools/testing/selftests/kvm/include/x86/processor.h
780
max_leaf = this_cpu_property(X86_PROPERTY_MAX_EXT_LEAF);
tools/testing/selftests/kvm/include/x86/processor.h
783
max_leaf = this_cpu_property(X86_PROPERTY_MAX_CENTAUR_LEAF);
tools/testing/selftests/kvm/include/x86/processor.h
793
nr_bits = this_cpu_property(X86_PROPERTY_PMU_EBX_BIT_VECTOR_LENGTH);
tools/testing/selftests/kvm/include/x86/processor.h
798
nr_bits = this_cpu_property(X86_PROPERTY_PMU_NR_FIXED_COUNTERS);
tools/testing/selftests/kvm/include/x86/processor.h
807
return this_cpu_property(X86_PROPERTY_SUPPORTED_XCR0_LO) |
tools/testing/selftests/kvm/include/x86/processor.h
808
((u64)this_cpu_property(X86_PROPERTY_SUPPORTED_XCR0_HI) << 32);
tools/testing/selftests/kvm/lib/x86/processor.c
1316
vm->arch.c_bit = BIT_ULL(this_cpu_property(X86_PROPERTY_SEV_C_BIT));
tools/testing/selftests/kvm/lib/x86/processor.c
1411
maxphyaddr = this_cpu_property(X86_PROPERTY_MAX_PHY_ADDR);
tools/testing/selftests/kvm/lib/x86/processor.c
1415
max_pfn >>= this_cpu_property(X86_PROPERTY_PHYS_ADDR_REDUCTION);
tools/testing/selftests/kvm/x86/amx_test.c
100
xtile.xsave_offset = this_cpu_property(X86_PROPERTY_XSTATE_TILE_OFFSET);
tools/testing/selftests/kvm/x86/amx_test.c
102
xtile.xsave_size = this_cpu_property(X86_PROPERTY_XSTATE_TILE_SIZE);
tools/testing/selftests/kvm/x86/amx_test.c
107
GUEST_ASSERT(this_cpu_property(X86_PROPERTY_AMX_MAX_PALETTE_TABLES) >=
tools/testing/selftests/kvm/x86/amx_test.c
111
xtile.max_names = this_cpu_property(X86_PROPERTY_AMX_NR_TILE_REGS);
tools/testing/selftests/kvm/x86/amx_test.c
113
xtile.bytes_per_tile = this_cpu_property(X86_PROPERTY_AMX_BYTES_PER_TILE);
tools/testing/selftests/kvm/x86/amx_test.c
115
xtile.bytes_per_row = this_cpu_property(X86_PROPERTY_AMX_BYTES_PER_ROW);
tools/testing/selftests/kvm/x86/amx_test.c
117
xtile.max_rows = this_cpu_property(X86_PROPERTY_AMX_MAX_ROWS);
tools/testing/selftests/kvm/x86/amx_test.c
98
GUEST_ASSERT(this_cpu_property(X86_PROPERTY_XSTATE_MAX_SIZE_XCR0) <= XSAVE_SIZE);
tools/testing/selftests/kvm/x86/cpuid_test.c
53
GUEST_ASSERT_EQ(this_cpu_property(X86_PROPERTY_MAX_KVM_LEAF), 0x40000001);
tools/testing/selftests/kvm/x86/pmu_counters_test.c
144
return min_t(u8, kvm_pmu_version, this_cpu_property(X86_PROPERTY_PMU_VERSION));
tools/testing/selftests/kvm/x86/pmu_counters_test.c
269
u32 nr_gp_counters = this_cpu_property(X86_PROPERTY_PMU_NR_GP_COUNTERS);
tools/testing/selftests/kvm/x86/pmu_counters_test.c
469
nr_gp_counters = this_cpu_property(X86_PROPERTY_PMU_NR_GP_COUNTERS);
tools/testing/selftests/kvm/x86/pmu_counters_test.c
523
nr_fixed_counters = this_cpu_property(X86_PROPERTY_PMU_NR_FIXED_COUNTERS);
tools/testing/selftests/kvm/x86/pmu_counters_test.c
530
supported_bitmask = this_cpu_property(X86_PROPERTY_PMU_FIXED_COUNTERS_BITMASK);
tools/testing/selftests/kvm/x86/pmu_counters_test.c
629
TEST_ASSERT(this_cpu_property(X86_PROPERTY_PMU_EBX_BIT_VECTOR_LENGTH) <= NR_INTEL_ARCH_EVENTS,
tools/testing/selftests/kvm/x86/pmu_counters_test.c
631
this_cpu_property(X86_PROPERTY_PMU_EBX_BIT_VECTOR_LENGTH),
tools/testing/selftests/kvm/x86/pmu_counters_test.c
632
this_cpu_property(X86_PROPERTY_PMU_EVENTS_MASK));
tools/testing/selftests/kvm/x86/pmu_event_filter_test.c
734
u8 nr_fixed_counters = this_cpu_property(X86_PROPERTY_PMU_NR_FIXED_COUNTERS);