about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/i386/mmap64.S
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-08-25 18:23:57 +0000
committerUlrich Drepper <drepper@redhat.com>2000-08-25 18:23:57 +0000
commitb0af120fd01e10653256c6f949b930d72f0fd2a1 (patch)
tree2f5640b5bda3cdcd972328d7a4fa118ca9578467 /sysdeps/unix/sysv/linux/i386/mmap64.S
parent1bc777b883b5d3631f97d5c1ccfa7fca20b6a48f (diff)
downloadglibc-b0af120fd01e10653256c6f949b930d72f0fd2a1.tar.gz
glibc-b0af120fd01e10653256c6f949b930d72f0fd2a1.tar.xz
glibc-b0af120fd01e10653256c6f949b930d72f0fd2a1.zip
Update.
	* sysdeps/unix/sysv/linux/i386/mmap.S (__mmap): Return -EINVAL
	even if bits 10 a 11 are non-zero.
	* sysdeps/unix/sysv/linux/i386/mmap64.S (__mmap64): Likewise.
Diffstat (limited to 'sysdeps/unix/sysv/linux/i386/mmap64.S')
-rw-r--r--sysdeps/unix/sysv/linux/i386/mmap64.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/i386/mmap64.S b/sysdeps/unix/sysv/linux/i386/mmap64.S
index 349d3501c6..c2a2955eda 100644
--- a/sysdeps/unix/sysv/linux/i386/mmap64.S
+++ b/sysdeps/unix/sysv/linux/i386/mmap64.S
@@ -48,7 +48,7 @@ ENTRY (BP_SYM (__mmap64))
 
 	movl OFFLO(%esp), %edx
 	movl OFFHI(%esp), %ecx
-	testl $0x3ff, %edx
+	testl $0xfff, %edx
 	jne L(einval)
 	shrdl $12, %ecx, %edx		/* mmap2 takes the offset in pages.  */
 	shrl $12, %ecx