mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-26 10:15:13 +07:00
c51836246f
System call table generation script must be run to gener- ate unistd_64.h and syscall_table.h files. This patch will have changes which will invokes the script. This patch will generate unistd_64.h and syscall_table.h files by the syscall table generation script invoked by ia64/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/entry.S file. Signed-off-by: Firoz Khan <firoz.khan@linaro.org> Signed-off-by: Tony Luck <tony.luck@intel.com>
21 lines
447 B
C
21 lines
447 B
C
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
|
|
/*
|
|
* IA-64 Linux syscall numbers and inline-functions.
|
|
*
|
|
* Copyright (C) 1998-2005 Hewlett-Packard Co
|
|
* David Mosberger-Tang <davidm@hpl.hp.com>
|
|
*/
|
|
#ifndef _UAPI_ASM_IA64_UNISTD_H
|
|
#define _UAPI_ASM_IA64_UNISTD_H
|
|
|
|
|
|
#include <asm/break.h>
|
|
|
|
#define __BREAK_SYSCALL __IA64_BREAK_SYSCALL
|
|
|
|
#define __NR_Linux 1024
|
|
|
|
#include <asm/unistd_64.h>
|
|
|
|
#endif /* _UAPI_ASM_IA64_UNISTD_H */
|