diff options
author | Milind Arun Choudhary <milindchoudhary@gmail.com> | 2007-05-08 03:30:52 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-08 14:15:13 -0400 |
commit | cc0a8fbb7ce00f65dc337dd91389b7151f44ed30 (patch) | |
tree | 2d33013f99e7b889932618ff02a77dae7734023d /drivers/char/n_r3964.c | |
parent | 5ab2f7e0fdd04148e08348701d6bd6a292ce2d26 (diff) |
drivers/char: use __set_current_state()
use __set_current_state(TASK_*) instead of current->state = TASK_*,
Signed-off-by: Milind Arun Choudhary <milindchoudhary@gmail.com>
Cc: Jiri Slaby <jirislaby@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/char/n_r3964.c')
-rw-r--r-- | drivers/char/n_r3964.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/char/n_r3964.c b/drivers/char/n_r3964.c index 65f2d3a96b85..14557a4822c0 100644 --- a/drivers/char/n_r3964.c +++ b/drivers/char/n_r3964.c | |||
@@ -1088,13 +1088,13 @@ static ssize_t r3964_read(struct tty_struct *tty, struct file *file, | |||
1088 | /* block until there is a message: */ | 1088 | /* block until there is a message: */ |
1089 | add_wait_queue(&pInfo->read_wait, &wait); | 1089 | add_wait_queue(&pInfo->read_wait, &wait); |
1090 | repeat: | 1090 | repeat: |
1091 | current->state = TASK_INTERRUPTIBLE; | 1091 | __set_current_state(TASK_INTERRUPTIBLE); |
1092 | pMsg = remove_msg(pInfo, pClient); | 1092 | pMsg = remove_msg(pInfo, pClient); |
1093 | if (!pMsg && !signal_pending(current)) { | 1093 | if (!pMsg && !signal_pending(current)) { |
1094 | schedule(); | 1094 | schedule(); |
1095 | goto repeat; | 1095 | goto repeat; |
1096 | } | 1096 | } |
1097 | current->state = TASK_RUNNING; | 1097 | __set_current_state(TASK_RUNNING); |
1098 | remove_wait_queue(&pInfo->read_wait, &wait); | 1098 | remove_wait_queue(&pInfo->read_wait, &wait); |
1099 | } | 1099 | } |
1100 | 1100 | ||