* [PATCH][TRIVIAL] madvise() syscall: don't test arguments holding semaphore
@ 2004-01-08 13:25 Andrey Panin
0 siblings, 0 replies; only message in thread
From: Andrey Panin @ 2004-01-08 13:25 UTC (permalink / raw)
To: linux-kernel; +Cc: Trivial Patch Monkey
[-- Attachment #1.1: Type: text/plain, Size: 321 bytes --]
Hi,
madvise() system call checks its arguments holding current->mm->mmap_sem
semaphore. I know that madvise() shouldn't be perfomance critical,
but fix it so obvious :) Patch against 2.6.1-rc
Best regards.
--
Andrey Panin | Linux and UNIX system administrator
pazke@donpac.ru | PGP key: wwwkeys.pgp.net
[-- Attachment #1.2: patch-madvise-2.6.1 --]
[-- Type: text/plain, Size: 804 bytes --]
diff -urN -X /usr/share/dontdiff linux-2.6.0-test3.vanilla/mm/madvise.c linux-2.6.0-test3/mm/madvise.c
--- linux-2.6.0-test3.vanilla/mm/madvise.c 2003-08-09 08:34:02.000000000 +0400
+++ linux-2.6.0-test3/mm/madvise.c 2004-01-01 16:51:58.000000000 +0300
@@ -166,20 +166,20 @@
unsigned long end;
struct vm_area_struct * vma;
int unmapped_error = 0;
- int error = -EINVAL;
-
- down_write(¤t->mm->mmap_sem);
+ int error;
if (start & ~PAGE_MASK)
- goto out;
+ return -EINVAL;
+
len = (len + ~PAGE_MASK) & PAGE_MASK;
end = start + len;
if (end < start)
- goto out;
+ return -EINVAL;
- error = 0;
if (end == start)
- goto out;
+ return 0;
+
+ down_write(¤t->mm->mmap_sem);
/*
* If the interval [start,end) covers some unmapped address
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2004-01-08 13:25 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-01-08 13:25 [PATCH][TRIVIAL] madvise() syscall: don't test arguments holding semaphore Andrey Panin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox