arch/powerpc/kernel/ucall.S

Source file repositories/reference/linux-study-clean/arch/powerpc/kernel/ucall.S

File Facts

System
Linux kernel
Corpus path
arch/powerpc/kernel/ucall.S
Extension
.S
Size
306 bytes
Lines
15
Domain
Architecture Layer
Bucket
arch/powerpc
Inferred role
Architecture Layer: exported/initcall integration point
Status
integration implementation candidate

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/export.h>
#include <asm/ppc_asm.h>

_GLOBAL(ucall_norets)
EXPORT_SYMBOL_GPL(ucall_norets)
	sc	2	/* Invoke the ultravisor */
	blr		/* Return r3 = status */

Annotation

Implementation Notes