mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Use the kernel's canonical $(ARCH) paths instead of the raw target triple for KVM selftests directories. KVM selftests are quite nearly the only place in the entire kernel that using the target triple for directories, tools/testing/selftests/drivers/s390x being the lone holdout. Using the kernel's preferred nomenclature eliminates the minor, but annoying, friction of having to translate to KVM's selftests directories, e.g. for pattern matching, opening files, running selftests, etc. Opportunsitically delete file comments that reference the full path of the file, as they are obviously prone to becoming stale, and serve no known purpose. Reviewed-by: Muhammad Usama Anjum <usama.anjum@collabora.com> Acked-by: Claudio Imbrenda <imbrenda@linux.ibm.com> Acked-by: Andrew Jones <ajones@ventanamicro.com> Link: https://lore.kernel.org/r/20241128005547.4077116-16-seanjc@google.com Signed-off-by: Sean Christopherson <seanjc@google.com>
45 lines
1.1 KiB
C
45 lines
1.1 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Copyright (C) 2023, Google LLC.
|
|
*/
|
|
#include <sys/ioctl.h>
|
|
|
|
#include "test_util.h"
|
|
#include "kvm_util.h"
|
|
#include "vmx.h"
|
|
|
|
void test_hwcr_bit(struct kvm_vcpu *vcpu, unsigned int bit)
|
|
{
|
|
const uint64_t ignored = BIT_ULL(3) | BIT_ULL(6) | BIT_ULL(8);
|
|
const uint64_t valid = BIT_ULL(18) | BIT_ULL(24);
|
|
const uint64_t legal = ignored | valid;
|
|
uint64_t val = BIT_ULL(bit);
|
|
uint64_t actual;
|
|
int r;
|
|
|
|
r = _vcpu_set_msr(vcpu, MSR_K7_HWCR, val);
|
|
TEST_ASSERT(val & ~legal ? !r : r == 1,
|
|
"Expected KVM_SET_MSRS(MSR_K7_HWCR) = 0x%lx to %s",
|
|
val, val & ~legal ? "fail" : "succeed");
|
|
|
|
actual = vcpu_get_msr(vcpu, MSR_K7_HWCR);
|
|
TEST_ASSERT(actual == (val & valid),
|
|
"Bit %u: unexpected HWCR 0x%lx; expected 0x%lx",
|
|
bit, actual, (val & valid));
|
|
|
|
vcpu_set_msr(vcpu, MSR_K7_HWCR, 0);
|
|
}
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
struct kvm_vm *vm;
|
|
struct kvm_vcpu *vcpu;
|
|
unsigned int bit;
|
|
|
|
vm = vm_create_with_one_vcpu(&vcpu, NULL);
|
|
|
|
for (bit = 0; bit < BITS_PER_LONG; bit++)
|
|
test_hwcr_bit(vcpu, bit);
|
|
|
|
kvm_vm_free(vm);
|
|
}
|