diff options
Diffstat (limited to 'drivers/char')
-rw-r--r-- | drivers/char/amiserial.c | 4 | ||||
-rw-r--r-- | drivers/char/cyclades.c | 4 | ||||
-rw-r--r-- | drivers/char/epca.c | 2 | ||||
-rw-r--r-- | drivers/char/genrtc.c | 2 | ||||
-rw-r--r-- | drivers/char/n_r3964.c | 4 | ||||
-rw-r--r-- | drivers/char/riscom8.c | 2 | ||||
-rw-r--r-- | drivers/char/rocket.c | 4 | ||||
-rw-r--r-- | drivers/char/rtc.c | 2 | ||||
-rw-r--r-- | drivers/char/selection.c | 2 | ||||
-rw-r--r-- | drivers/char/serial167.c | 2 | ||||
-rw-r--r-- | drivers/char/vt_ioctl.c | 2 |
11 files changed, 15 insertions, 15 deletions
diff --git a/drivers/char/amiserial.c b/drivers/char/amiserial.c index 0e2b72f2b887..4eaceabd8cea 100644 --- a/drivers/char/amiserial.c +++ b/drivers/char/amiserial.c | |||
@@ -1574,7 +1574,7 @@ static void rs_wait_until_sent(struct tty_struct *tty, int timeout) | |||
1574 | if (timeout && time_after(jiffies, orig_jiffies + timeout)) | 1574 | if (timeout && time_after(jiffies, orig_jiffies + timeout)) |
1575 | break; | 1575 | break; |
1576 | } | 1576 | } |
1577 | current->state = TASK_RUNNING; | 1577 | __set_current_state(TASK_RUNNING); |
1578 | #ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT | 1578 | #ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT |
1579 | printk("lsr = %d (jiff=%lu)...done\n", lsr, jiffies); | 1579 | printk("lsr = %d (jiff=%lu)...done\n", lsr, jiffies); |
1580 | #endif | 1580 | #endif |
@@ -1700,7 +1700,7 @@ static int block_til_ready(struct tty_struct *tty, struct file * filp, | |||
1700 | #endif | 1700 | #endif |
1701 | schedule(); | 1701 | schedule(); |
1702 | } | 1702 | } |
1703 | current->state = TASK_RUNNING; | 1703 | __set_current_state(TASK_RUNNING); |
1704 | remove_wait_queue(&info->open_wait, &wait); | 1704 | remove_wait_queue(&info->open_wait, &wait); |
1705 | if (extra_count) | 1705 | if (extra_count) |
1706 | state->count++; | 1706 | state->count++; |
diff --git a/drivers/char/cyclades.c b/drivers/char/cyclades.c index 29b5375feeba..ff63ee1d6065 100644 --- a/drivers/char/cyclades.c +++ b/drivers/char/cyclades.c | |||
@@ -2445,7 +2445,7 @@ block_til_ready(struct tty_struct *tty, struct file *filp, | |||
2445 | base_addr = cinfo->base_addr; | 2445 | base_addr = cinfo->base_addr; |
2446 | firm_id = base_addr + ID_ADDRESS; | 2446 | firm_id = base_addr + ID_ADDRESS; |
2447 | if (!ISZLOADED(*cinfo)) { | 2447 | if (!ISZLOADED(*cinfo)) { |
2448 | current->state = TASK_RUNNING; | 2448 | __set_current_state(TASK_RUNNING); |
2449 | remove_wait_queue(&info->open_wait, &wait); | 2449 | remove_wait_queue(&info->open_wait, &wait); |
2450 | return -EINVAL; | 2450 | return -EINVAL; |
2451 | } | 2451 | } |
@@ -2498,7 +2498,7 @@ block_til_ready(struct tty_struct *tty, struct file *filp, | |||
2498 | schedule(); | 2498 | schedule(); |
2499 | } | 2499 | } |
2500 | } | 2500 | } |
2501 | current->state = TASK_RUNNING; | 2501 | __set_current_state(TASK_RUNNING); |
2502 | remove_wait_queue(&info->open_wait, &wait); | 2502 | remove_wait_queue(&info->open_wait, &wait); |
2503 | if (!tty_hung_up_p(filp)) { | 2503 | if (!tty_hung_up_p(filp)) { |
2504 | info->count++; | 2504 | info->count++; |
diff --git a/drivers/char/epca.c b/drivers/char/epca.c index de5be30484ad..c6c56fb8ba50 100644 --- a/drivers/char/epca.c +++ b/drivers/char/epca.c | |||
@@ -949,7 +949,7 @@ static int block_til_ready(struct tty_struct *tty, | |||
949 | 949 | ||
950 | } /* End forever while */ | 950 | } /* End forever while */ |
951 | 951 | ||
952 | current->state = TASK_RUNNING; | 952 | __set_current_state(TASK_RUNNING); |
953 | remove_wait_queue(&ch->open_wait, &wait); | 953 | remove_wait_queue(&ch->open_wait, &wait); |
954 | if (!tty_hung_up_p(filp)) | 954 | if (!tty_hung_up_p(filp)) |
955 | ch->count++; | 955 | ch->count++; |
diff --git a/drivers/char/genrtc.c b/drivers/char/genrtc.c index 23b25ada65ea..49f914e79216 100644 --- a/drivers/char/genrtc.c +++ b/drivers/char/genrtc.c | |||
@@ -207,7 +207,7 @@ static ssize_t gen_rtc_read(struct file *file, char __user *buf, | |||
207 | sizeof(unsigned long); | 207 | sizeof(unsigned long); |
208 | } | 208 | } |
209 | out: | 209 | out: |
210 | current->state = TASK_RUNNING; | 210 | __set_current_state(TASK_RUNNING); |
211 | remove_wait_queue(&gen_rtc_wait, &wait); | 211 | remove_wait_queue(&gen_rtc_wait, &wait); |
212 | 212 | ||
213 | return retval; | 213 | return retval; |
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 | ||
diff --git a/drivers/char/riscom8.c b/drivers/char/riscom8.c index 70145254fb9d..3494e3fc44bf 100644 --- a/drivers/char/riscom8.c +++ b/drivers/char/riscom8.c | |||
@@ -980,7 +980,7 @@ static int block_til_ready(struct tty_struct *tty, struct file * filp, | |||
980 | } | 980 | } |
981 | schedule(); | 981 | schedule(); |
982 | } | 982 | } |
983 | current->state = TASK_RUNNING; | 983 | __set_current_state(TASK_RUNNING); |
984 | remove_wait_queue(&port->open_wait, &wait); | 984 | remove_wait_queue(&port->open_wait, &wait); |
985 | if (!tty_hung_up_p(filp)) | 985 | if (!tty_hung_up_p(filp)) |
986 | port->count++; | 986 | port->count++; |
diff --git a/drivers/char/rocket.c b/drivers/char/rocket.c index aa4cc12bbcb1..e249d8cfcd06 100644 --- a/drivers/char/rocket.c +++ b/drivers/char/rocket.c | |||
@@ -943,7 +943,7 @@ static int block_til_ready(struct tty_struct *tty, struct file *filp, | |||
943 | #endif | 943 | #endif |
944 | schedule(); /* Don't hold spinlock here, will hang PC */ | 944 | schedule(); /* Don't hold spinlock here, will hang PC */ |
945 | } | 945 | } |
946 | current->state = TASK_RUNNING; | 946 | __set_current_state(TASK_RUNNING); |
947 | remove_wait_queue(&info->open_wait, &wait); | 947 | remove_wait_queue(&info->open_wait, &wait); |
948 | 948 | ||
949 | spin_lock_irqsave(&info->slock, flags); | 949 | spin_lock_irqsave(&info->slock, flags); |
@@ -1598,7 +1598,7 @@ static void rp_wait_until_sent(struct tty_struct *tty, int timeout) | |||
1598 | if (signal_pending(current)) | 1598 | if (signal_pending(current)) |
1599 | break; | 1599 | break; |
1600 | } | 1600 | } |
1601 | current->state = TASK_RUNNING; | 1601 | __set_current_state(TASK_RUNNING); |
1602 | #ifdef ROCKET_DEBUG_WAIT_UNTIL_SENT | 1602 | #ifdef ROCKET_DEBUG_WAIT_UNTIL_SENT |
1603 | printk(KERN_INFO "txcnt = %d (jiff=%lu)...done\n", txcnt, jiffies); | 1603 | printk(KERN_INFO "txcnt = %d (jiff=%lu)...done\n", txcnt, jiffies); |
1604 | #endif | 1604 | #endif |
diff --git a/drivers/char/rtc.c b/drivers/char/rtc.c index c7dac9b13351..20380a2c4dee 100644 --- a/drivers/char/rtc.c +++ b/drivers/char/rtc.c | |||
@@ -388,7 +388,7 @@ static ssize_t rtc_read(struct file *file, char __user *buf, | |||
388 | if (!retval) | 388 | if (!retval) |
389 | retval = count; | 389 | retval = count; |
390 | out: | 390 | out: |
391 | current->state = TASK_RUNNING; | 391 | __set_current_state(TASK_RUNNING); |
392 | remove_wait_queue(&rtc_wait, &wait); | 392 | remove_wait_queue(&rtc_wait, &wait); |
393 | 393 | ||
394 | return retval; | 394 | return retval; |
diff --git a/drivers/char/selection.c b/drivers/char/selection.c index 74cff839c857..a69f094d1ed3 100644 --- a/drivers/char/selection.c +++ b/drivers/char/selection.c | |||
@@ -299,7 +299,7 @@ int paste_selection(struct tty_struct *tty) | |||
299 | pasted += count; | 299 | pasted += count; |
300 | } | 300 | } |
301 | remove_wait_queue(&vc->paste_wait, &wait); | 301 | remove_wait_queue(&vc->paste_wait, &wait); |
302 | current->state = TASK_RUNNING; | 302 | __set_current_state(TASK_RUNNING); |
303 | 303 | ||
304 | tty_ldisc_deref(ld); | 304 | tty_ldisc_deref(ld); |
305 | return 0; | 305 | return 0; |
diff --git a/drivers/char/serial167.c b/drivers/char/serial167.c index 5fd314adc1f2..c585b4738f86 100644 --- a/drivers/char/serial167.c +++ b/drivers/char/serial167.c | |||
@@ -1892,7 +1892,7 @@ block_til_ready(struct tty_struct *tty, struct file *filp, | |||
1892 | #endif | 1892 | #endif |
1893 | schedule(); | 1893 | schedule(); |
1894 | } | 1894 | } |
1895 | current->state = TASK_RUNNING; | 1895 | __set_current_state(TASK_RUNNING); |
1896 | remove_wait_queue(&info->open_wait, &wait); | 1896 | remove_wait_queue(&info->open_wait, &wait); |
1897 | if (!tty_hung_up_p(filp)) { | 1897 | if (!tty_hung_up_p(filp)) { |
1898 | info->count++; | 1898 | info->count++; |
diff --git a/drivers/char/vt_ioctl.c b/drivers/char/vt_ioctl.c index c9f2dd620e87..c6f6f4209739 100644 --- a/drivers/char/vt_ioctl.c +++ b/drivers/char/vt_ioctl.c | |||
@@ -1061,7 +1061,7 @@ int vt_waitactive(int vt) | |||
1061 | schedule(); | 1061 | schedule(); |
1062 | } | 1062 | } |
1063 | remove_wait_queue(&vt_activate_queue, &wait); | 1063 | remove_wait_queue(&vt_activate_queue, &wait); |
1064 | current->state = TASK_RUNNING; | 1064 | __set_current_state(TASK_RUNNING); |
1065 | return retval; | 1065 | return retval; |
1066 | } | 1066 | } |
1067 | 1067 | ||