[PATCH] remove verify_area(): remove fs/umsdos/notes as it only contain a verify_area...
authorJesper Juhl <jesper.juhl@gmail.com>
Tue, 6 Sep 2005 22:17:51 +0000 (15:17 -0700)
committerLinus Torvalds <torvalds@g5.osdl.org>
Wed, 7 Sep 2005 23:57:35 +0000 (16:57 -0700)
The file `fs/umsdos/notes' contains only a small note about a possible bug
involving verify_area().  Since umsdos is no longer in the kernel and
verify_area() is also gone, it seems to make sense that this file goes the way
of the Dodo.

After applying this patch the `fs/umsdos/' directory will be empty and can be
removed entirely.

Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
fs/umsdos/notes [deleted file]

diff --git a/fs/umsdos/notes b/fs/umsdos/notes
deleted file mode 100644 (file)
index 3c47d1f..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-This file contain idea and things I don't want to forget
-
-Possible bug in fs/read_write.c
-Function sys_readdir()
-
-       There is a call the verify_area that does not take in account
-       the count parameter. I guess it should read
-
-       error = verify_area(VERIFY_WRITE, dirent, count*sizeof (*dirent));
-
-       instead of
-
-       error = verify_area(VERIFY_WRITE, dirent, sizeof (*dirent));
-
-       Of course, now , count is always 1
-
-