systbls.h (3e3511b3c8a5ff68ef7cd3dee8ac9dd9cfe4b2aa) | systbls.h (a00a700bdea86442c0d63a6bc7cc9d03a47e1d09) |
---|---|
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef _SYSTBLS_H 3#define _SYSTBLS_H 4 5#include <linux/signal.h> 6#include <linux/kernel.h> 7#include <linux/compat.h> 8#include <linux/types.h> --- 63 unchanged lines hidden (view full) --- 72 unsigned long poshi, 73 unsigned long poslo); 74asmlinkage compat_ssize_t sys32_pwrite64(unsigned int fd, 75 char __user *ubuf, 76 compat_size_t count, 77 unsigned long poshi, 78 unsigned long poslo); 79asmlinkage long compat_sys_readahead(int fd, | 1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef _SYSTBLS_H 3#define _SYSTBLS_H 4 5#include <linux/signal.h> 6#include <linux/kernel.h> 7#include <linux/compat.h> 8#include <linux/types.h> --- 63 unchanged lines hidden (view full) --- 72 unsigned long poshi, 73 unsigned long poslo); 74asmlinkage compat_ssize_t sys32_pwrite64(unsigned int fd, 75 char __user *ubuf, 76 compat_size_t count, 77 unsigned long poshi, 78 unsigned long poslo); 79asmlinkage long compat_sys_readahead(int fd, |
80 unsigned long offhi, 81 unsigned long offlo, | 80 unsigned offhi, 81 unsigned offlo, |
82 compat_size_t count); 83long compat_sys_fadvise64(int fd, | 82 compat_size_t count); 83long compat_sys_fadvise64(int fd, |
84 unsigned long offhi, 85 unsigned long offlo, | 84 unsigned offhi, 85 unsigned offlo, |
86 compat_size_t len, int advice); 87long compat_sys_fadvise64_64(int fd, | 86 compat_size_t len, int advice); 87long compat_sys_fadvise64_64(int fd, |
88 unsigned long offhi, unsigned long offlo, 89 unsigned long lenhi, unsigned long lenlo, | 88 unsigned offhi, unsigned offlo, 89 unsigned lenhi, unsigned lenlo, |
90 int advice); 91long sys32_sync_file_range(unsigned int fd, 92 unsigned long off_high, unsigned long off_low, 93 unsigned long nb_high, unsigned long nb_low, 94 unsigned int flags); 95asmlinkage long compat_sys_fallocate(int fd, int mode, u32 offhi, u32 offlo, 96 u32 lenhi, u32 lenlo); 97asmlinkage long compat_sys_fstat64(unsigned int fd, 98 struct compat_stat64 __user * statbuf); 99asmlinkage long compat_sys_fstatat64(unsigned int dfd, 100 const char __user *filename, 101 struct compat_stat64 __user * statbuf, 102 int flag); 103#endif /* CONFIG_SPARC64 */ 104#endif /* _SYSTBLS_H */ | 90 int advice); 91long sys32_sync_file_range(unsigned int fd, 92 unsigned long off_high, unsigned long off_low, 93 unsigned long nb_high, unsigned long nb_low, 94 unsigned int flags); 95asmlinkage long compat_sys_fallocate(int fd, int mode, u32 offhi, u32 offlo, 96 u32 lenhi, u32 lenlo); 97asmlinkage long compat_sys_fstat64(unsigned int fd, 98 struct compat_stat64 __user * statbuf); 99asmlinkage long compat_sys_fstatat64(unsigned int dfd, 100 const char __user *filename, 101 struct compat_stat64 __user * statbuf, 102 int flag); 103#endif /* CONFIG_SPARC64 */ 104#endif /* _SYSTBLS_H */ |