arch/hexagon/kernel/syscalltab.c

Source file repositories/reference/linux-study-clean/arch/hexagon/kernel/syscalltab.c

File Facts

System
Linux kernel
Corpus path
arch/hexagon/kernel/syscalltab.c
Extension
.c
Size
785 bytes
Lines
31
Domain
Architecture Layer
Bucket
arch/hexagon
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(hexagon_fadvise64_64, int, fd, int, advice,
		SC_ARG64(offset), SC_ARG64(len))
{
	return ksys_fadvise64_64(fd, SC_VAL64(loff_t, offset), SC_VAL64(loff_t, len), advice);
}
#define sys_fadvise64_64 sys_hexagon_fadvise64_64

#define sys_sync_file_range sys_sync_file_range2

void *sys_call_table[__NR_syscalls] = {
#include <asm/syscall_table_32.h>
};

Annotation

Implementation Notes