--=_courier-23902-1042124093-0001-2
Content-Type: text/plain; charset=iso-8859-1
Content-Transfer-Encoding: 8bit
Content-Disposition: inline
Hi Marcelo :)
This patch fixes a corner case on the mmap() syscall.
The patch is from David S. Miller, not me. My patch was
incomplete and did nothing on 'big TASK_SIZE' architectures.
The patch is against both 2.4.20 and 2.4.21-pre1, is just the same.
Razl
--=_courier-23902-1042124093-0001-2
Content-Type: text/plain; charset=iso-8859-1
Content-Transfer-Encoding: 7bit
Content-Description: mmap.c.diff for 2.4.20 and 2.4.21-pre
Content-Disposition: attachment; filename="mmap.c.2.4.20.diff"
X-Mime-Autoconverted: from 8bit to 7bit by courier 0.39
--- linux/mm/mmap.c.orig 2002-12-11 13:59:37.000000000 +0100
+++ linux/mm/mmap.c 2002-12-11 14:01:16.000000000 +0100
@@ -403,10 +403,12 @@
if (file && (!file->f_op || !file->f_op->mmap))
return -ENODEV;
- if ((len = PAGE_ALIGN(len)) == 0)
+ if (!len)
return addr;
- if (len > TASK_SIZE)
+ len = PAGE_ALIGN(len);
+
+ if (len > TASK_SIZE || len == 0)
return -EINVAL;
/* offset overflow? */
--=_courier-23902-1042124093-0001-2--