tools/testing/selftests/kvm/arm64/idreg-idst.c
Source file repositories/reference/linux-study-clean/tools/testing/selftests/kvm/arm64/idreg-idst.c
File Facts
- System
- Linux kernel
- Corpus path
tools/testing/selftests/kvm/arm64/idreg-idst.c- Extension
.c- Size
- 2273 bytes
- Lines
- 118
- Domain
- Support Tooling And Documentation
- Bucket
- tools
- Inferred role
- Support Tooling And Documentation: implementation source
- Status
- source implementation candidate
Why This File Exists
Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.
- Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
test_util.hkvm_util.hprocessor.h
Detected Declarations
function guest_codefunction guest_sys64_handlerfunction guest_undef_handlerfunction test_run_vcpufunction test_guest_feat_idstfunction main
Annotated Snippet
switch (get_ucall(vcpu, &uc)) {
case UCALL_ABORT:
REPORT_GUEST_ASSERT(uc);
break;
case UCALL_PRINTF:
printf("%s", uc.buffer);
break;
case UCALL_DONE:
break;
default:
TEST_FAIL("Unknown ucall %lu", uc.cmd);
}
} while (uc.cmd != UCALL_DONE);
}
static void test_guest_feat_idst(void)
{
struct kvm_vcpu *vcpu;
struct kvm_vm *vm;
/* This VM has no MTE, no SME, no CCIDX */
vm = vm_create_with_one_vcpu(&vcpu, guest_code);
vm_init_descriptor_tables(vm);
vcpu_init_descriptor_tables(vcpu);
vm_install_sync_handler(vm, VECTOR_SYNC_CURRENT,
ESR_ELx_EC_SYS64, guest_sys64_handler);
vm_install_sync_handler(vm, VECTOR_SYNC_CURRENT,
ESR_ELx_EC_UNKNOWN, guest_undef_handler);
test_run_vcpu(vcpu);
kvm_vm_free(vm);
}
int main(int argc, char *argv[])
{
struct kvm_vcpu *vcpu;
struct kvm_vm *vm;
u64 mmfr2;
test_disable_default_vgic();
vm = vm_create_with_one_vcpu(&vcpu, NULL);
mmfr2 = vcpu_get_reg(vcpu, KVM_ARM64_SYS_REG(SYS_ID_AA64MMFR2_EL1));
__TEST_REQUIRE(FIELD_GET(ID_AA64MMFR2_EL1_IDS, mmfr2) > 0,
"FEAT_IDST not supported");
kvm_vm_free(vm);
test_guest_feat_idst();
return 0;
}
Annotation
- Immediate include surface: `test_util.h`, `kvm_util.h`, `processor.h`.
- Detected declarations: `function guest_code`, `function guest_sys64_handler`, `function guest_undef_handler`, `function test_run_vcpu`, `function test_guest_feat_idst`, `function main`.
- Atlas domain: Support Tooling And Documentation / tools.
- Implementation status: source implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.