Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S266775AbUIXCJ4 (ORCPT ); Thu, 23 Sep 2004 22:09:56 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S266768AbUIWUkD (ORCPT ); Thu, 23 Sep 2004 16:40:03 -0400 Received: from baikonur.stro.at ([213.239.196.228]:58304 "EHLO baikonur.stro.at") by vger.kernel.org with ESMTP id S266753AbUIWUZV (ORCPT ); Thu, 23 Sep 2004 16:25:21 -0400 Subject: [patch 10/26] char/ip2main: replace schedule_timeout() with msleep_interruptible() To: akpm@digeo.com Cc: linux-kernel@vger.kernel.org, janitor@sternwelten.at, nacc@us.ibm.com From: janitor@sternwelten.at Date: Thu, 23 Sep 2004 22:25:21 +0200 Message-ID: Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1245 Lines: 35 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 Signed-off-by: Maximilian Attems --- linux-2.6.9-rc2-bk7-max/drivers/char/ip2main.c | 3 +-- 1 files changed, 1 insertion(+), 2 deletions(-) diff -puN drivers/char/ip2main.c~msleep_interruptible-drivers_char_ip2main drivers/char/ip2main.c --- linux-2.6.9-rc2-bk7/drivers/char/ip2main.c~msleep_interruptible-drivers_char_ip2main 2004-09-21 21:08:08.000000000 +0200 +++ linux-2.6.9-rc2-bk7-max/drivers/char/ip2main.c 2004-09-21 21:08:08.000000000 +0200 @@ -1632,8 +1632,7 @@ ip2_close( PTTY tty, struct file *pFile if (pCh->wopen) { if (pCh->ClosingDelay) { - current->state = TASK_INTERRUPTIBLE; - schedule_timeout(pCh->ClosingDelay); + msleep_interruptible(jiffies_to_msecs(pCh->ClosingDelay)); } wake_up_interruptible(&pCh->open_wait); } _ - 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/