Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/hexagon/kernel/syscalltab.c
26424 views
1
// SPDX-License-Identifier: GPL-2.0-only
2
/*
3
* System call table for Hexagon
4
*
5
* Copyright (c) 2010-2011, The Linux Foundation. All rights reserved.
6
*/
7
8
#include <linux/syscalls.h>
9
#include <linux/signal.h>
10
#include <linux/unistd.h>
11
12
#include <asm/syscall.h>
13
14
#define __SYSCALL(nr, call) [nr] = (call),
15
#define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, native)
16
17
#define sys_mmap2 sys_mmap_pgoff
18
19
SYSCALL_DEFINE6(hexagon_fadvise64_64, int, fd, int, advice,
20
SC_ARG64(offset), SC_ARG64(len))
21
{
22
return ksys_fadvise64_64(fd, SC_VAL64(loff_t, offset), SC_VAL64(loff_t, len), advice);
23
}
24
#define sys_fadvise64_64 sys_hexagon_fadvise64_64
25
26
#define sys_sync_file_range sys_sync_file_range2
27
28
void *sys_call_table[__NR_syscalls] = {
29
#include <asm/syscall_table_32.h>
30
};
31
32