arch/s390/kvm/kvm-s390.c

Source file repositories/reference/linux-study-clean/arch/s390/kvm/kvm-s390.c

File Facts

System
Linux kernel
Corpus path
arch/s390/kvm/kvm-s390.c
Extension
.c
Size
166402 bytes
Lines
5956
Domain
Architecture Layer
Bucket
arch/s390
Inferred role
Architecture Layer: exported/initcall integration point
Status
integration implementation candidate

Why This File Exists

CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.

Dependency Surface

Detected Declarations

Annotated Snippet

module_init(kvm_s390_init);
module_exit(kvm_s390_exit);

/*
 * Enable autoloading of the kvm module.
 * Note that we add the module alias here instead of virt/kvm/kvm_main.c
 * since x86 takes a different approach.
 */
#include <linux/miscdevice.h>
MODULE_ALIAS_MISCDEV(KVM_MINOR);
MODULE_ALIAS("devname:kvm");

Annotation

Implementation Notes