arch/powerpc/kernel/sys_ppc32.c

Source file repositories/reference/linux-study-clean/arch/powerpc/kernel/sys_ppc32.c

File Facts

System
Linux kernel
Corpus path
arch/powerpc/kernel/sys_ppc32.c
Extension
.c
Size
3954 bytes
Lines
136
Domain
Architecture Layer
Bucket
arch/powerpc
Inferred role
Architecture Layer: syscall or user/kernel boundary
Status
core 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

SYSCALL_DEFINE6(ppc_fallocate,
		int, fd, int, mode,
		u32, offset1, u32, offset2, u32, len1, u32, len2)
{
	return ksys_fallocate(fd, mode,
			      merge_64(offset1, offset2),
			      merge_64(len1, len2));
}
#endif

Annotation

Implementation Notes