arch/sh/kernel/sys_sh32.c

Source file repositories/reference/linux-study-clean/arch/sh/kernel/sys_sh32.c

File Facts

System
Linux kernel
Corpus path
arch/sh/kernel/sys_sh32.c
Extension
.c
Size
1898 bytes
Lines
73
Domain
Architecture Layer
Bucket
arch/sh
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(sh_sync_file_range6, int, fd, SC_ARG64(offset),
                SC_ARG64(nbytes), unsigned int, flags)
{
        return ksys_sync_file_range(fd, SC_VAL64(loff_t, offset),
                                    SC_VAL64(loff_t, nbytes), flags);
}

Annotation

Implementation Notes