[NETFILTER]: ipt_recent: last_pkts is an array of "unsigned long" not "u_int32_t"
[linux-2.6/cjktty.git] / fs / umsdos / notes
blob3c47d1f4fc473250ba96b05a3f7ac5167d0055fe
1 This file contain idea and things I don't want to forget
3 Possible bug in fs/read_write.c
4 Function sys_readdir()
6         There is a call the verify_area that does not take in account
7         the count parameter. I guess it should read
9         error = verify_area(VERIFY_WRITE, dirent, count*sizeof (*dirent));
11         instead of
13         error = verify_area(VERIFY_WRITE, dirent, sizeof (*dirent));
15         Of course, now , count is always 1