arch/x86/realmode/rm/stack.S

Source file repositories/reference/linux-study-clean/arch/x86/realmode/rm/stack.S

File Facts

System
Linux kernel
Corpus path
arch/x86/realmode/rm/stack.S
Extension
.S
Size
331 bytes
Lines
19
Domain
Architecture Layer
Bucket
arch/x86
Inferred role
Architecture Layer: arch/x86
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/linkage.h>

	.data
SYM_DATA(HEAP,		.long rm_heap)
SYM_DATA(heap_end,	.long rm_stack)

	.bss
	.balign	16
SYM_DATA(rm_heap,	.space 2048)

SYM_DATA_START(rm_stack)
	.space	2048
SYM_DATA_END_LABEL(rm_stack, SYM_L_GLOBAL, rm_stack_end)

Annotation

Implementation Notes