diff options
author | Nishanth Aravamudan <nacc@us.ibm.com> | 2005-09-10 00:27:25 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-10 10:06:37 -0700 |
commit | 20c6abd1fd3a6296282f63fae82e589aa81862ff (patch) | |
tree | 861f5cd44a1d0a1652272c6c623c7836c1c42046 /arch/alpha | |
parent | 13e4b57f6a4e23ceb99794a650d777e74831f4a6 (diff) | |
download | linux-3.10-20c6abd1fd3a6296282f63fae82e589aa81862ff.tar.gz linux-3.10-20c6abd1fd3a6296282f63fae82e589aa81862ff.tar.bz2 linux-3.10-20c6abd1fd3a6296282f63fae82e589aa81862ff.zip |
[PATCH] alpha: 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>
Cc: Richard Henderson <rth@twiddle.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/alpha')
-rw-r--r-- | arch/alpha/kernel/osf_sys.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/alpha/kernel/osf_sys.c b/arch/alpha/kernel/osf_sys.c index 2b034182a0c..0636116210d 100644 --- a/arch/alpha/kernel/osf_sys.c +++ b/arch/alpha/kernel/osf_sys.c @@ -1154,8 +1154,7 @@ osf_usleep_thread(struct timeval32 __user *sleep, struct timeval32 __user *remai ticks = timeval_to_jiffies(&tmp); - current->state = TASK_INTERRUPTIBLE; - ticks = schedule_timeout(ticks); + ticks = schedule_timeout_interruptible(ticks); if (remain) { jiffies_to_timeval(ticks, &tmp); |