diff options
author | Ralf Baechle <ralf@linux-mips.org> | 1994-11-28 11:59:19 +0000 |
---|---|---|
committer | <ralf@linux-mips.org> | 1994-11-28 11:59:19 +0000 |
commit | 1513ff9b7899ab588401c89db0e99903dbf5f886 (patch) | |
tree | f69cc81a940a502ea23d664c3ffb2d215a479667 /fs/umsdos/notes |
Import of Linus's Linux 1.1.68
Diffstat (limited to 'fs/umsdos/notes')
-rw-r--r-- | fs/umsdos/notes | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/fs/umsdos/notes b/fs/umsdos/notes new file mode 100644 index 000000000..3c47d1f4f --- /dev/null +++ b/fs/umsdos/notes @@ -0,0 +1,17 @@ +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 + + |