arch/arm64/kernel/vdso32-wrap.S

Source file repositories/reference/linux-study-clean/arch/arm64/kernel/vdso32-wrap.S

File Facts

System
Linux kernel
Corpus path
arch/arm64/kernel/vdso32-wrap.S
Extension
.S
Size
351 bytes
Lines
20
Domain
Architecture Layer
Bucket
arch/arm64
Inferred role
Architecture Layer: arch/arm64
Status
atlas-only

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

#include <linux/init.h>
#include <linux/linkage.h>
#include <linux/const.h>
#include <asm/page.h>

	.globl vdso32_start, vdso32_end
	.section .rodata
	.balign PAGE_SIZE
vdso32_start:
	.incbin "arch/arm64/kernel/vdso32/vdso.so"
	.balign PAGE_SIZE
vdso32_end:

	.previous

Annotation

Implementation Notes