From: Jan-Benedict G. <jb...@us...> - 2005-04-05 11:49:58
|
Update of /cvsroot/linux-vax/kernel-2.5/Documentation/vax In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28221 Modified Files: keep_an_eye_on.txt Log Message: - Mention msleep() transition. Index: keep_an_eye_on.txt =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/Documentation/vax/keep_an_eye_on.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- keep_an_eye_on.txt 8 Mar 2005 08:26:55 -0000 1.1 +++ keep_an_eye_on.txt 5 Apr 2005 11:49:50 -0000 1.2 @@ -4,6 +4,9 @@ function deprecation, ...) please add a note here so that in can be revised later on. +- Mar 4, 2005: "Re: [PATCH] new driver for ITM Touch touchscreen" + Use input_set_abs_params() to set the coordinate range for the digitizer. + - Mar 4, 2005, "[PATCH][0/10] verify_area cleanup" Check if we're using verify_area() anywhere and change it over to access_ok(): @@ -20,3 +23,10 @@ to something like the struct driver thing. lkkbd.c and vsxxxaa.c may need checking. +- Apr 5, 2005: set_current_state()/schedule_timeout() -> msleep() + Not related to a specific mailing list post, but all code that possibly + waits using schedule_timeout() should probably changed like this: + - set_current_state(TASK_UNINTERRUPTIBLE); + - schedule_timeout(30*HZ/100); + + msleep(300); + |