notes 406 B

1234567891011121314151617
  1. This file contain idea and things I don't want to forget
  2. Possible bug in fs/read_write.c
  3. Function sys_readdir()
  4. There is a call the verify_area that does not take in account
  5. the count parameter. I guess it should read
  6. error = verify_area(VERIFY_WRITE, dirent, count*sizeof (*dirent));
  7. instead of
  8. error = verify_area(VERIFY_WRITE, dirent, sizeof (*dirent));
  9. Of course, now , count is always 1