1/* SPDX-License-Identifier: GPL-2.0-or-later */ 2/* 3 * This file contains the table of syscall-handling functions. 4 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org) 5 * 6 * Largely rewritten by Cort Dougan (cort@cs.nmt.edu) 7 * and Paul Mackerras. 8 * 9 * Adapted for iSeries by Mike Corrigan (mikejc@us.ibm.com) 10 * PPC64 updates by Dave Engebretsen (engebret@us.ibm.com) 11 */ 12 13#include <asm/ppc_asm.h> 14 15.section .rodata,"a" 16 17#ifdef CONFIG_PPC64 18 .p2align 3 19#define __SYSCALL(nr, entry) .8byte entry 20#else 21 .p2align 2 22#define __SYSCALL(nr, entry) .long entry 23#endif 24 25#define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, native) 26.globl sys_call_table 27sys_call_table: 28#ifdef CONFIG_PPC64 29#include <asm/syscall_table_64.h> 30#else 31#include <asm/syscall_table_32.h> 32#endif 33 34#ifdef CONFIG_COMPAT 35#undef __SYSCALL_WITH_COMPAT 36#define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, compat) 37.globl compat_sys_call_table 38compat_sys_call_table: 39#define compat_sys_sigsuspend sys_sigsuspend 40#include <asm/syscall_table_32.h> 41#endif 42