arch/sparc/kernel/systbls_64.S

Source file repositories/reference/linux-study-clean/arch/sparc/kernel/systbls_64.S

File Facts

System
Linux kernel
Corpus path
arch/sparc/kernel/systbls_64.S
Extension
.S
Size
956 bytes
Lines
30
Domain
Architecture Layer
Bucket
arch/sparc
Inferred role
Architecture Layer: arch/sparc
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

#define __SYSCALL(nr, entry) .word entry
	.text
	.align	4
#ifdef CONFIG_COMPAT
	.globl sys_call_table32
sys_call_table32:
#define __SYSCALL_WITH_COMPAT(nr, native, compat)	__SYSCALL(nr, compat)
#include <asm/syscall_table_32.h>	/* Compat syscalls */
#undef __SYSCALL_WITH_COMPAT
#endif /* CONFIG_COMPAT */

	.align	4
	.globl sys_call_table64, sys_call_table
sys_call_table64:
sys_call_table:
#define __SYSCALL_WITH_COMPAT(nr, native, compat)	__SYSCALL(nr, native)
#include <asm/syscall_table_64.h>	/* 64-bit native syscalls */

Annotation

Implementation Notes