notes
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:0k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  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