summary refs log tree commit diff
path: root/include/asm-xtensa/syscall.h
diff options
context:
space:
mode:
authorChris Zankel <chris@zankel.net>2007-08-05 10:22:58 -0700
committerChris Zankel <chris@zankel.net>2007-08-27 13:53:32 -0700
commitbc671aa9838f234ccfc794a77325628f1e41e083 (patch)
tree7a94178df1f3cbe87458c3cb5329548187fbb8ad /include/asm-xtensa/syscall.h
parent068732d9b465cafcc56a745c3931f2fc4e58f48f (diff)
downloadlinux-bc671aa9838f234ccfc794a77325628f1e41e083.tar.gz
[XTENSA] Fix fadvise64_64
Xtensa passes long long arguments in a even/odd register pair,
so we also need to shuffle the arguments when passed through the
system call to avoid an empty argument register.

Signed-off-by: Chris Zankel <chris@zankel.net>
Diffstat (limited to 'include/asm-xtensa/syscall.h')
-rw-r--r--include/asm-xtensa/syscall.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/asm-xtensa/syscall.h b/include/asm-xtensa/syscall.h
index ea9b5132215e..05cebf8f62b1 100644
--- a/include/asm-xtensa/syscall.h
+++ b/include/asm-xtensa/syscall.h
@@ -28,6 +28,8 @@ asmlinkage long sys_rt_sigaction(int,
 				 struct sigaction __user *,
 				 size_t);
 asmlinkage long xtensa_shmat(int, char __user *, int);
+asmlinkage long xtensa_fadvise64_64(int, int,
+				    unsigned long long, unsigned long long);
 
 /* Should probably move to linux/syscalls.h */
 struct pollfd;