Commit ee076e81 authored by Al Viro's avatar Al Viro

sparc: trivial conversions to {COMPAT_,}SYSCALL_DEFINE()

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent b925c46c
...@@ -98,8 +98,8 @@ static int cp_compat_stat64(struct kstat *stat, ...@@ -98,8 +98,8 @@ static int cp_compat_stat64(struct kstat *stat,
return err; return err;
} }
asmlinkage long compat_sys_stat64(const char __user * filename, COMPAT_SYSCALL_DEFINE2(stat64, const char __user *, filename,
struct compat_stat64 __user *statbuf) struct compat_stat64 __user *, statbuf)
{ {
struct kstat stat; struct kstat stat;
int error = vfs_stat(filename, &stat); int error = vfs_stat(filename, &stat);
...@@ -109,8 +109,8 @@ asmlinkage long compat_sys_stat64(const char __user * filename, ...@@ -109,8 +109,8 @@ asmlinkage long compat_sys_stat64(const char __user * filename,
return error; return error;
} }
asmlinkage long compat_sys_lstat64(const char __user * filename, COMPAT_SYSCALL_DEFINE2(lstat64, const char __user *, filename,
struct compat_stat64 __user *statbuf) struct compat_stat64 __user *, statbuf)
{ {
struct kstat stat; struct kstat stat;
int error = vfs_lstat(filename, &stat); int error = vfs_lstat(filename, &stat);
...@@ -120,8 +120,8 @@ asmlinkage long compat_sys_lstat64(const char __user * filename, ...@@ -120,8 +120,8 @@ asmlinkage long compat_sys_lstat64(const char __user * filename,
return error; return error;
} }
asmlinkage long compat_sys_fstat64(unsigned int fd, COMPAT_SYSCALL_DEFINE2(fstat64, unsigned int, fd,
struct compat_stat64 __user * statbuf) struct compat_stat64 __user *, statbuf)
{ {
struct kstat stat; struct kstat stat;
int error = vfs_fstat(fd, &stat); int error = vfs_fstat(fd, &stat);
...@@ -131,9 +131,9 @@ asmlinkage long compat_sys_fstat64(unsigned int fd, ...@@ -131,9 +131,9 @@ asmlinkage long compat_sys_fstat64(unsigned int fd,
return error; return error;
} }
asmlinkage long compat_sys_fstatat64(unsigned int dfd, COMPAT_SYSCALL_DEFINE4(fstatat64, unsigned int, dfd,
const char __user *filename, const char __user *, filename,
struct compat_stat64 __user * statbuf, int flag) struct compat_stat64 __user *, statbuf, int, flag)
{ {
struct kstat stat; struct kstat stat;
int error; int error;
...@@ -241,8 +241,8 @@ long sys32_sync_file_range(unsigned int fd, unsigned long off_high, unsigned lon ...@@ -241,8 +241,8 @@ long sys32_sync_file_range(unsigned int fd, unsigned long off_high, unsigned lon
flags); flags);
} }
asmlinkage long compat_sys_fallocate(int fd, int mode, u32 offhi, u32 offlo, COMPAT_SYSCALL_DEFINE6(fallocate, int, fd, int, mode, u32, offhi, u32, offlo,
u32 lenhi, u32 lenlo) u32, lenhi, u32, lenlo)
{ {
return sys_fallocate(fd, mode, ((loff_t)offhi << 32) | offlo, return sys_fallocate(fd, mode, ((loff_t)offhi << 32) | offlo,
((loff_t)lenhi << 32) | lenlo); ((loff_t)lenhi << 32) | lenlo);
......
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
/* XXX Make this per-binary type, this way we can detect the type of /* XXX Make this per-binary type, this way we can detect the type of
* XXX a binary. Every Sparc executable calls this very early on. * XXX a binary. Every Sparc executable calls this very early on.
*/ */
asmlinkage unsigned long sys_getpagesize(void) SYSCALL_DEFINE0(getpagesize)
{ {
return PAGE_SIZE; /* Possibly older binaries want 8192 on sun4's? */ return PAGE_SIZE; /* Possibly older binaries want 8192 on sun4's? */
} }
...@@ -98,9 +98,9 @@ int sparc_mmap_check(unsigned long addr, unsigned long len) ...@@ -98,9 +98,9 @@ int sparc_mmap_check(unsigned long addr, unsigned long len)
/* Linux version of mmap */ /* Linux version of mmap */
asmlinkage long sys_mmap2(unsigned long addr, unsigned long len, SYSCALL_DEFINE6(mmap2, unsigned long, addr, unsigned long, len,
unsigned long prot, unsigned long flags, unsigned long fd, unsigned long, prot, unsigned long, flags, unsigned long, fd,
unsigned long pgoff) unsigned long, pgoff)
{ {
/* Make sure the shift for mmap2 is constant (12), no matter what PAGE_SIZE /* Make sure the shift for mmap2 is constant (12), no matter what PAGE_SIZE
we have. */ we have. */
...@@ -108,9 +108,9 @@ asmlinkage long sys_mmap2(unsigned long addr, unsigned long len, ...@@ -108,9 +108,9 @@ asmlinkage long sys_mmap2(unsigned long addr, unsigned long len,
pgoff >> (PAGE_SHIFT - 12)); pgoff >> (PAGE_SHIFT - 12));
} }
asmlinkage long sys_mmap(unsigned long addr, unsigned long len, SYSCALL_DEFINE6(mmap, unsigned long, addr, unsigned long, len,
unsigned long prot, unsigned long flags, unsigned long fd, unsigned long, prot, unsigned long, flags, unsigned long, fd,
unsigned long off) unsigned long, off)
{ {
/* no alignment check? */ /* no alignment check? */
return sys_mmap_pgoff(addr, len, prot, flags, fd, off >> PAGE_SHIFT); return sys_mmap_pgoff(addr, len, prot, flags, fd, off >> PAGE_SHIFT);
...@@ -202,7 +202,7 @@ SYSCALL_DEFINE5(rt_sigaction, int, sig, ...@@ -202,7 +202,7 @@ SYSCALL_DEFINE5(rt_sigaction, int, sig,
return ret; return ret;
} }
asmlinkage long sys_getdomainname(char __user *name, int len) SYSCALL_DEFINE2(getdomainname, char __user *, name, int, len)
{ {
int nlen, err; int nlen, err;
......
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
/* #define DEBUG_UNIMP_SYSCALL */ /* #define DEBUG_UNIMP_SYSCALL */
asmlinkage unsigned long sys_getpagesize(void) SYSCALL_DEFINE0(getpagesize)
{ {
return PAGE_SIZE; return PAGE_SIZE;
} }
...@@ -642,7 +642,7 @@ SYSCALL_DEFINE5(rt_sigaction, int, sig, const struct sigaction __user *, act, ...@@ -642,7 +642,7 @@ SYSCALL_DEFINE5(rt_sigaction, int, sig, const struct sigaction __user *, act,
return ret; return ret;
} }
asmlinkage long sys_kern_features(void) SYSCALL_DEFINE0(kern_features)
{ {
return KERN_FEATURE_MIXED_MODE_STACK; return KERN_FEATURE_MIXED_MODE_STACK;
} }
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
#include <asm/utrap.h> #include <asm/utrap.h>
asmlinkage unsigned long sys_getpagesize(void); asmlinkage long sys_getpagesize(void);
asmlinkage long sys_sparc_pipe(void); asmlinkage long sys_sparc_pipe(void);
asmlinkage unsigned long c_sys_nis_syscall(struct pt_regs *regs); asmlinkage unsigned long c_sys_nis_syscall(struct pt_regs *regs);
asmlinkage long sys_getdomainname(char __user *name, int len); asmlinkage long sys_getdomainname(char __user *name, int len);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment