arch/x86/purgatory/stack.S

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

File Facts

System
Linux kernel
Corpus path
arch/x86/purgatory/stack.S
Extension
.S
Size
350 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>

	/* A stack for the loaded kernel.
	 * Separate and in the data section so it can be prepopulated.
	 */
	.data
	.balign 4096

SYM_DATA_START(stack)
	.skip 4096
SYM_DATA_END_LABEL(stack, SYM_L_GLOBAL, stack_end)

Annotation

Implementation Notes