[BACK]Return to notes CVS log [TXT][DIR] Up to [Development] / linux-2.4-xfs / fs / umsdos

File: [Development] / linux-2.4-xfs / fs / umsdos / notes (download)

Revision 1.1, Wed Dec 31 00:54:49 2003 UTC (13 years, 9 months ago) by cattelan
Branch: MAIN
CVS Tags: HEAD

Initial Import 2.4.24pre2

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