[patch 01/26] char/amiserial: replace schedule_timeout() with msleep_interruptible()

janitor_at_sternwelten.at
Date: 09/23/04

  • Next message: David S. Miller: "Re: 2.6.9-rc2-mm2 fn_hash_insert oops"
    To: akpm@digeo.com
    Date:	Thu, 23 Sep 2004 22:24:55 +0200
    
    

    Any comments would be appreciated.

    Description: Use msleep_interruptible() instead of schedule_timeout()
    to guarantee the task delays as expected.

    Signed-off-by: Nishanth Aravamudan <nacc@us.ibm.com>

    Signed-off-by: Maximilian Attems <janitor@sternwelten.at>

    ---
     linux-2.6.9-rc2-bk7-max/drivers/char/amiserial.c |    7 +++----
     1 files changed, 3 insertions(+), 4 deletions(-)
    diff -L /drivers/char/amiserial.c -puN /dev/null /dev/null
    diff -puN drivers/char/amiserial.c~msleep_interruptible-drivers_char_amiserial drivers/char/amiserial.c
    --- linux-2.6.9-rc2-bk7/drivers/char/amiserial.c~msleep_interruptible-drivers_char_amiserial	2004-09-21 21:07:57.000000000 +0200
    +++ linux-2.6.9-rc2-bk7-max/drivers/char/amiserial.c	2004-09-21 21:07:57.000000000 +0200
    @@ -32,6 +32,7 @@
      */
     
     #include <linux/config.h>
    +#include <linux/delay.h>
     
     #undef SERIAL_PARANOIA_CHECK
     #define SERIAL_DO_RESTART
    @@ -1567,8 +1568,7 @@ static void rs_close(struct tty_struct *
     	info->tty = 0;
     	if (info->blocked_open) {
     		if (info->close_delay) {
    -			current->state = TASK_INTERRUPTIBLE;
    -			schedule_timeout(info->close_delay);
    +			msleep_interruptible(jiffies_to_msecs(info->close_delay));
     		}
     		wake_up_interruptible(&info->open_wait);
     	}
    @@ -1626,8 +1626,7 @@ static void rs_wait_until_sent(struct tt
     #ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
     		printk("serdatr = %d (jiff=%lu)...", lsr, jiffies);
     #endif
    -		current->state = TASK_INTERRUPTIBLE;
    -		schedule_timeout(char_time);
    +		msleep_interruptible(jiffies_to_msecs(char_time));
     		if (signal_pending(current))
     			break;
     		if (timeout && time_after(jiffies, orig_jiffies + timeout))
    _
    -
    To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
    the body of a message to majordomo@vger.kernel.org
    More majordomo info at  http://vger.kernel.org/majordomo-info.html
    Please read the FAQ at  http://www.tux.org/lkml/
    

  • Next message: David S. Miller: "Re: 2.6.9-rc2-mm2 fn_hash_insert oops"

    Relevant Pages