summaryrefslogtreecommitdiffstats
path: root/drivers/char/ftape
diff options
context:
space:
mode:
authorNishanth Aravamudan2005-09-10 09:27:30 +0200
committerLinus Torvalds2005-09-10 19:06:38 +0200
commitda4cd8dfe18ee901b880f94ca0fa79d5cc1cd0eb (patch)
tree7f135b3c3d9450e3b489cd39af6085e338013613 /drivers/char/ftape
parent[PATCH] drivers/cdrom: fix-up schedule_timeout() usage (diff)
downloadkernel-qcow2-linux-da4cd8dfe18ee901b880f94ca0fa79d5cc1cd0eb.tar.gz
kernel-qcow2-linux-da4cd8dfe18ee901b880f94ca0fa79d5cc1cd0eb.tar.xz
kernel-qcow2-linux-da4cd8dfe18ee901b880f94ca0fa79d5cc1cd0eb.zip
[PATCH] drivers/char: fix-up schedule_timeout() usage
Use schedule_timeout_interruptible() instead of set_current_state()/schedule_timeout() to reduce kernel size. 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>
Diffstat (limited to 'drivers/char/ftape')
-rw-r--r--drivers/char/ftape/lowlevel/fdc-io.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/char/ftape/lowlevel/fdc-io.c b/drivers/char/ftape/lowlevel/fdc-io.c
index 1704a2a57048..b2e0928e8428 100644
--- a/drivers/char/ftape/lowlevel/fdc-io.c
+++ b/drivers/char/ftape/lowlevel/fdc-io.c
@@ -387,10 +387,8 @@ int fdc_interrupt_wait(unsigned int time)
set_current_state(TASK_INTERRUPTIBLE);
add_wait_queue(&ftape_wait_intr, &wait);
- while (!ft_interrupt_seen && timeout) {
- set_current_state(TASK_INTERRUPTIBLE);
- timeout = schedule_timeout(timeout);
- }
+ while (!ft_interrupt_seen && timeout)
+ timeout = schedule_timeout_interruptible(timeout);
spin_lock_irq(&current->sighand->siglock);
current->blocked = old_sigmask;