URL
https://opencores.org/ocsvn/or1k_old/or1k_old/trunk
Subversion Repositories or1k_old
[/] [or1k_old/] [trunk/] [uclinux/] [uClinux-2.0.x/] [fs/] [umsdos/] [notes] - Rev 1782
Compare with Previous | Blame | View Log
This file contain idea and things I don't want to forgetPossible bug in fs/read_write.cFunction sys_readdir()There is a call the verify_area that does not take in accountthe count parameter. I guess it should readerror = verify_area(VERIFY_WRITE, dirent, count*sizeof (*dirent));instead oferror = verify_area(VERIFY_WRITE, dirent, sizeof (*dirent));Of course, now , count is always 1
