mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-28 22:54:05 +08:00
a8faab540f
System call table generation script must be run to gener- ate unistd_32.h and syscall_table.h files. This patch will have changes which will invokes the script. This patch will generate unistd_32.h and syscall_table.h files by the syscall table generation script invoked by alpha/Makefile and the generated files against the removed files must be identical. The generated uapi header file will be included in uapi/- asm/unistd.h and generated system call table header file will be included by kernel/systbls.S file. Signed-off-by: Firoz Khan <firoz.khan@linaro.org> Signed-off-by: Matt Turner <mattst88@gmail.com>
17 lines
285 B
ArmAsm
17 lines
285 B
ArmAsm
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* arch/alpha/kernel/systbls.S
|
|
*
|
|
* The system call table.
|
|
*/
|
|
|
|
#include <asm/unistd.h>
|
|
|
|
#define __SYSCALL(nr, entry, nargs) .quad entry
|
|
.data
|
|
.align 3
|
|
.globl sys_call_table
|
|
sys_call_table:
|
|
#include <asm/syscall_table.h>
|
|
#undef __SYSCALL
|