diff options
author | Chris Zankel <chris@zankel.net> | 2007-08-05 10:22:58 -0700 |
---|---|---|
committer | Chris Zankel <chris@zankel.net> | 2007-08-27 13:53:32 -0700 |
commit | bc671aa9838f234ccfc794a77325628f1e41e083 (patch) | |
tree | 7a94178df1f3cbe87458c3cb5329548187fbb8ad /include/asm-xtensa/unistd.h | |
parent | 068732d9b465cafcc56a745c3931f2fc4e58f48f (diff) | |
download | kernel-crypto-bc671aa9838f234ccfc794a77325628f1e41e083.tar.gz kernel-crypto-bc671aa9838f234ccfc794a77325628f1e41e083.tar.xz kernel-crypto-bc671aa9838f234ccfc794a77325628f1e41e083.zip |
[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/unistd.h')
-rw-r--r-- | include/asm-xtensa/unistd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-xtensa/unistd.h b/include/asm-xtensa/unistd.h index bed04102407..92968aabe34 100644 --- a/include/asm-xtensa/unistd.h +++ b/include/asm-xtensa/unistd.h @@ -151,7 +151,7 @@ __SYSCALL( 61, sys_fcntl64, 3) #define __NR_available62 62 __SYSCALL( 62, sys_ni_syscall, 0) #define __NR_fadvise64_64 63 -__SYSCALL( 63, sys_fadvise64_64, 6) +__SYSCALL( 63, xtensa_fadvise64_64, 6) #define __NR_utime 64 /* glibc 2.3.3 ?? */ __SYSCALL( 64, sys_utime, 2) #define __NR_utimes 65 |