arch/riscv/kernel/vdso/vdso.S

Source file repositories/reference/linux-study-clean/arch/riscv/kernel/vdso/vdso.S

File Facts

System
Linux kernel
Corpus path
arch/riscv/kernel/vdso/vdso.S
Extension
.S
Size
413 bytes
Lines
24
Domain
Architecture Layer
Bucket
arch/riscv
Inferred role
Architecture Layer: arch/riscv
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 <asm/page.h>

#ifndef __VDSO_PATH
#define __VDSO_PATH "arch/riscv/kernel/vdso/vdso.so"
#endif

	__PAGE_ALIGNED_DATA

	.globl vdso_start, vdso_end
	.balign PAGE_SIZE
vdso_start:
	.incbin __VDSO_PATH
	.balign PAGE_SIZE
vdso_end:

	.previous

Annotation

Implementation Notes