[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <4bacf17f0703291141n4b485e80m98be0aaecf1ec81d@mail.gmail.com>
Date: Thu, 29 Mar 2007 20:41:19 +0200
From: "Marcin Ĺšlusarz" <marcin.slusarz@...il.com>
To: Shani <shani.moideen@...ro.com>
Cc: philb@....org, alan@...hat.com, netdev@...r.kernel.org,
kernel-janitors@...l.org, jeff@...zik.org
Subject: Re: [KJ] Patch:replace with time_after in drivers/net/eexpress.c
2007/3/28, Shani <shani.moideen@...ro.com>:
> @@ -1650,7 +1651,7 @@ eexp_set_multicast(struct net_device *dev)
> #endif
> oj = jiffies;
> while ((SCB_CUstat(scb_status(dev)) == 2) &&
> - ((jiffies-oj) < 2000));
> + (time_after(jiffies, oj + 2000)));
> if (SCB_CUstat(scb_status(dev)) == 2)
> printk("%s: warning, CU didn't stop\n", dev->name);
> lp->started &= ~(STARTED_CU);
>
it should be time_before, not time_after...
-
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists