[PATCH] fs: fix-up schedule_timeout() usage
Use schedule_timeout_{,un}interruptible() instead of set_current_state()/schedule_timeout() to reduce kernel size. Also use helper functions to convert between human time units and jiffies rather than constant HZ division to avoid rounding errors. Signed-off-by: Nishanth Aravamudan <nacc@us.ibm.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
373016e9e1
commit
041e0e3b19
@@ -2397,8 +2397,7 @@ smb_proc_readdir_long(struct file *filp, void *dirent, filldir_t filldir,
|
||||
if (req->rq_rcls == ERRSRV && req->rq_err == ERRerror) {
|
||||
/* a damn Win95 bug - sometimes it clags if you
|
||||
ask it too fast */
|
||||
current->state = TASK_INTERRUPTIBLE;
|
||||
schedule_timeout(HZ/5);
|
||||
schedule_timeout_interruptible(msecs_to_jiffies(200));
|
||||
continue;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user