netdev
[Top] [All Lists]

Re: [patch 04/26] net/ixgb_osdep: replace schedule_timeout() with msleep

To: "domen@xxxxxxxxxxxx" <domen@xxxxxxxxxxxx>
Subject: Re: [patch 04/26] net/ixgb_osdep: replace schedule_timeout() with msleep()
From: Ganesh Venkatesan <ganesh.venkatesan@xxxxxxxxx>
Date: Tue, 8 Mar 2005 05:24:41 -0800
Cc: jgarzik@xxxxxxxxx, netdev@xxxxxxxxxxx, nacc@xxxxxxxxxx, janitor@xxxxxxxxxxxxxx
Domainkey-signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:references; b=WOYMuFXs3MqVVt1Sod1XDASiaExdONPV5qI/DvWSCHIe119sIIjdckndX49+TISs0grI5skMKYAIFPW96cpgj5UaaqPYqR/I8hLxD6Cv1oKjfwEFy83VpGuHf+4ukd430bH92q3nMhkKmVKpoyPce/3OAL1AY+j6G5MqL2Ix1mY=
In-reply-to: <20050306103248.7C3A21F1F0@xxxxxxxxxxxxxxxxxxx>
References: <20050306103248.7C3A21F1F0@xxxxxxxxxxxxxxxxxxx>
Reply-to: Ganesh Venkatesan <ganesh.venkatesan@xxxxxxxxx>
Sender: netdev-bounce@xxxxxxxxxxx
No. This would not work. You cannot replace msec_delay with msleep.
You probably could replace the set_current_task/schedule_timeout with
msleep. msleep does not check for the correct context, and if one were
to call msec_delay from interrupt context, the kernel would panic.

ganesh.


On Sun, 06 Mar 2005 11:32:48 +0100, domen@xxxxxxxxxxxx
<domen@xxxxxxxxxxxx> wrote:
> 
> 
> Use msleep() instead of schedule_timeout()
> to guarantee the task delays as expected. I was told earlier that the
> in_interrupt() check is not necessary. It would be nice to get some
> verification of this (i.e. the driver functions the same without it).
> 
> Signed-off-by: Nishanth Aravamudan <nacc@xxxxxxxxxx>
> Signed-off-by: Maximilian Attems <janitor@xxxxxxxxxxxxxx>
> Signed-off-by: Domen Puncer <domen@xxxxxxxxxxxx>
> ---
> 
> kj-domen/drivers/net/ixgb/ixgb_osdep.h |    8 +-------
> 1 files changed, 1 insertion(+), 7 deletions(-)
> 
> diff -puN drivers/net/ixgb/ixgb_osdep.h~msleep-drivers_net_ixgb_ixgb_osdep 
> drivers/net/ixgb/ixgb_osdep.h
> --- kj/drivers/net/ixgb/ixgb_osdep.h~msleep-drivers_net_ixgb_ixgb_osdep 
> 2005-03-05 16:09:27.000000000 +0100
> +++ kj-domen/drivers/net/ixgb/ixgb_osdep.h      2005-03-05 16:09:27.000000000 
> +0100
> @@ -41,13 +41,7 @@
> #include <linux/sched.h>
> 
> #ifndef msec_delay
> -#define msec_delay(x)  do { if(in_interrupt()) { \
> -                               /* Don't mdelay in interrupt context! */ \
> -                               BUG(); \
> -                       } else { \
> -                               set_current_state(TASK_UNINTERRUPTIBLE); \
> -                               schedule_timeout((x * HZ)/1000 + 2); \
> -                       } } while(0)
> +#define msec_delay(x)  msleep(x)
> #endif
> 
> #define PCI_COMMAND_REGISTER   PCI_COMMAND
> _
> 
>

<Prev in Thread] Current Thread [Next in Thread>