From: Heiko Carstens Date: Tue, 6 Oct 2009 08:34:06 +0000 (+0200) Subject: [S390] compat: fix truncate system call wrapper X-Git-Tag: v2.6.32-rc4~2^2~9 X-Git-Url: http://ftp.safe.ca/?a=commitdiff_plain;h=593c4f739859594dc4824b6d29f9abb1f0b3c669;p=safe%2Fjmp%2Flinux-2.6 [S390] compat: fix truncate system call wrapper The system call takes a signed length parameter. So perform sign extension instead of zero extension. Signed-off-by: Heiko Carstens Signed-off-by: Martin Schwidefsky --- diff --git a/arch/s390/kernel/compat_wrapper.S b/arch/s390/kernel/compat_wrapper.S index 682fb69..cbd9901 100644 --- a/arch/s390/kernel/compat_wrapper.S +++ b/arch/s390/kernel/compat_wrapper.S @@ -409,7 +409,7 @@ sys32_munmap_wrapper: .globl sys32_truncate_wrapper sys32_truncate_wrapper: llgtr %r2,%r2 # const char * - llgfr %r3,%r3 # unsigned long + lgfr %r3,%r3 # long jg sys_truncate # branch to system call .globl sys32_ftruncate_wrapper