* [PATCH] net: more timeouts that reach -1
@ 2009-02-25 11:15 Roel Kluin
2009-02-27 11:43 ` Guo-Fu Tseng
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Roel Kluin @ 2009-02-25 11:15 UTC (permalink / raw)
To: David S. Miller; +Cc: netdev, Andrew Morton
These were not previously reported by me.
------------------------------>8-------------8<---------------------------------
with while (timeout-- > 0); timeout reaches -1 after the loop, so the tests
below are off by one.
Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
---
drivers/net/arm/ks8695net.c | 2 +-
drivers/net/jme.c | 3 ++-
drivers/net/ucc_geth_mii.c | 2 +-
3 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/drivers/net/arm/ks8695net.c b/drivers/net/arm/ks8695net.c
index 1cf2f94..f3a1274 100644
--- a/drivers/net/arm/ks8695net.c
+++ b/drivers/net/arm/ks8695net.c
@@ -560,7 +560,7 @@ ks8695_reset(struct ks8695_priv *ksp)
msleep(1);
}
- if (reset_timeout == 0) {
+ if (reset_timeout < 0) {
dev_crit(ksp->dev,
"Timeout waiting for DMA engines to reset\n");
/* And blithely carry on */
diff --git a/drivers/net/jme.c b/drivers/net/jme.c
index 08b3405..0173ed0 100644
--- a/drivers/net/jme.c
+++ b/drivers/net/jme.c
@@ -957,7 +957,8 @@ jme_process_receive(struct jme_adapter *jme, int limit)
goto out_inc;
i = atomic_read(&rxring->next_to_clean);
- while (limit-- > 0) {
+ while (limit > 0) {
+ limit--;
rxdesc = rxring->desc;
rxdesc += i;
diff --git a/drivers/net/ucc_geth_mii.c b/drivers/net/ucc_geth_mii.c
index 5463591..7b1b46c 100644
--- a/drivers/net/ucc_geth_mii.c
+++ b/drivers/net/ucc_geth_mii.c
@@ -123,7 +123,7 @@ static int uec_mdio_reset(struct mii_bus *bus)
mutex_unlock(&bus->mdio_lock);
- if (timeout <= 0) {
+ if (timeout < 0) {
printk(KERN_ERR "%s: The MII Bus is stuck!\n", bus->name);
return -EBUSY;
}
^ permalink raw reply related [flat|nested] 8+ messages in thread* Re: [PATCH] net: more timeouts that reach -1 2009-02-25 11:15 [PATCH] net: more timeouts that reach -1 Roel Kluin @ 2009-02-27 11:43 ` Guo-Fu Tseng 2009-02-27 15:37 ` roel kluin 2009-02-27 15:16 ` [PATCH v2] " Roel Kluin 2009-03-04 8:05 ` [PATCH] " David Miller 2 siblings, 1 reply; 8+ messages in thread From: Guo-Fu Tseng @ 2009-02-27 11:43 UTC (permalink / raw) To: Roel Kluin, David S. Miller; +Cc: netdev, Andrew Morton On Wed, 25 Feb 2009 12:15:57 +0100, Roel Kluin wrote > These were not previously reported by me. > ------------------------------>8-------------8<--------------------------------- > with while (timeout-- > 0); timeout reaches -1 after the loop, so the tests > below are off by one. > > Signed-off-by: Roel Kluin <roel.kluin@gmail.com> > --- > drivers/net/arm/ks8695net.c | 2 +- > drivers/net/jme.c | 3 ++- > drivers/net/ucc_geth_mii.c | 2 +- > 3 files changed, 4 insertions(+), 3 deletions(-) > > diff --git a/drivers/net/arm/ks8695net.c b/drivers/net/arm/ks8695net.c > index 1cf2f94..f3a1274 100644 > --- a/drivers/net/arm/ks8695net.c > +++ b/drivers/net/arm/ks8695net.c > @@ -560,7 +560,7 @@ ks8695_reset(struct ks8695_priv *ksp) > msleep(1); > } > > - if (reset_timeout == 0) { > + if (reset_timeout < 0) { > dev_crit(ksp->dev, > "Timeout waiting for DMA engines to reset\n"); > /* And blithely carry on */ > diff --git a/drivers/net/jme.c b/drivers/net/jme.c > index 08b3405..0173ed0 100644 > --- a/drivers/net/jme.c > +++ b/drivers/net/jme.c > @@ -957,7 +957,8 @@ jme_process_receive(struct jme_adapter *jme, int limit) > goto out_inc; > > i = atomic_read(&rxring->next_to_clean); > - while (limit-- > 0) { > + while (limit > 0) { > + limit--; > rxdesc = rxring->desc; > rxdesc += i; > There should be no difference after this modification. The return value of this function is: "limit > 0 ? limit : 0;" > diff --git a/drivers/net/ucc_geth_mii.c b/drivers/net/ucc_geth_mii.c > index 5463591..7b1b46c 100644 > --- a/drivers/net/ucc_geth_mii.c > +++ b/drivers/net/ucc_geth_mii.c > @@ -123,7 +123,7 @@ static int uec_mdio_reset(struct mii_bus *bus) > > mutex_unlock(&bus->mdio_lock); > > - if (timeout <= 0) { > + if (timeout < 0) { > printk(KERN_ERR "%s: The MII Bus is stuck!\n", bus->name); > return -EBUSY; > } > -- > To unsubscribe from this list: send the line "unsubscribe netdev" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html Guo-Fu Tseng ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] net: more timeouts that reach -1 2009-02-27 11:43 ` Guo-Fu Tseng @ 2009-02-27 15:37 ` roel kluin 2009-02-27 15:51 ` Guo-Fu Tseng 0 siblings, 1 reply; 8+ messages in thread From: roel kluin @ 2009-02-27 15:37 UTC (permalink / raw) To: cooldavid; +Cc: David S. Miller, netdev, Andrew Morton On Fri, Feb 27, 2009 at 12:43 PM, Guo-Fu Tseng <cooldavid@cooldavid.org> wrote: > On Wed, 25 Feb 2009 12:15:57 +0100, Roel Kluin wrote >> These were not previously reported by me. >> ------------------------------>8-------------8<--------------------------------- >> with while (timeout-- > 0); timeout reaches -1 after the loop, so the tests >> below are off by one. >> >> Signed-off-by: Roel Kluin <roel.kluin@gmail.com> >> --- >> diff --git a/drivers/net/jme.c b/drivers/net/jme.c >> index 08b3405..0173ed0 100644 >> --- a/drivers/net/jme.c >> +++ b/drivers/net/jme.c >> @@ -957,7 +957,8 @@ jme_process_receive(struct jme_adapter *jme, int limit) >> goto out_inc; >> >> i = atomic_read(&rxring->next_to_clean); >> - while (limit-- > 0) { >> + while (limit > 0) { >> + limit--; >> rxdesc = rxring->desc; >> rxdesc += i; >> > There should be no difference after this modification. > The return value of this function is: "limit > 0 ? limit : 0;" There is: In the last iteration limit is 1 during the test before it is decremented to 0. rxdesc = rxring->desc; rxdesc += i; If then we break out of the loop by the 'goto out;', we continue with: out: atomic_set(&rxring->next_to_clean, i); out_inc: atomic_inc(&jme->rx_cleaning); but since limit is already decremented, 0 is returned. > > Guo-Fu Tseng > Roel ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] net: more timeouts that reach -1 2009-02-27 15:37 ` roel kluin @ 2009-02-27 15:51 ` Guo-Fu Tseng 2009-02-27 16:43 ` [PATCH v3] " Roel Kluin 0 siblings, 1 reply; 8+ messages in thread From: Guo-Fu Tseng @ 2009-02-27 15:51 UTC (permalink / raw) To: roel kluin; +Cc: David S. Miller, netdev, Andrew Morton On Fri, 27 Feb 2009 16:37:30 +0100, roel kluin wrote > On Fri, Feb 27, 2009 at 12:43 PM, Guo-Fu Tseng <cooldavid@cooldavid.org> wrote: > > There should be no difference after this modification. > > The return value of this function is: "limit > 0 ? limit : 0;" > > There is: > In the last iteration limit is 1 during the test before it is decremented to 0. > > rxdesc = rxring->desc; > rxdesc += i; > > If then we break out of the loop by the 'goto out;', we continue with: > > out: > atomic_set(&rxring->next_to_clean, i); > > out_inc: > atomic_inc(&jme->rx_cleaning); > > but since limit is already decremented, 0 is returned. > > > > > Guo-Fu Tseng > > > > Roel I see. But the correct patch should be following one, right? =================================================================== --- jme.c (revision 580) +++ jme.c (working copy) @@ -958,13 +958,14 @@ goto out_inc; i = atomic_read(&rxring->next_to_clean); - while (limit-- > 0) { + while (limit > 0) { rxdesc = rxring->desc; rxdesc += i; if ((rxdesc->descwb.flags & RXWBFLAG_OWN) || !(rxdesc->descwb.desccnt & RXWBDCNT_WBCPL)) goto out; + --limit; desccnt = rxdesc->descwb.desccnt & RXWBDCNT_DCNT; Guo-Fu Tseng ^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v3] net: more timeouts that reach -1 2009-02-27 15:51 ` Guo-Fu Tseng @ 2009-02-27 16:43 ` Roel Kluin 2009-03-04 8:10 ` David Miller 0 siblings, 1 reply; 8+ messages in thread From: Roel Kluin @ 2009-02-27 16:43 UTC (permalink / raw) To: cooldavid; +Cc: David S. Miller, netdev, Andrew Morton Guo-Fu Tseng wrote: > On Fri, 27 Feb 2009 16:37:30 +0100, roel kluin wrote >> On Fri, Feb 27, 2009 at 12:43 PM, Guo-Fu Tseng <cooldavid@cooldavid.org> wrote: >>> There should be no difference after this modification. >>> The return value of this function is: "limit > 0 ? limit : 0;" >> There is: >> In the last iteration limit is 1 during the test before it is decremented to 0. >> >> rxdesc = rxring->desc; >> rxdesc += i; >> >> If then we break out of the loop by the 'goto out;', we continue with: >> >> out: >> atomic_set(&rxring->next_to_clean, i); >> >> out_inc: >> atomic_inc(&jme->rx_cleaning); >> >> but since limit is already decremented, 0 is returned. >> >>> Guo-Fu Tseng >>> >> Roel > I see. > But the correct patch should be following one, right? > > =================================================================== > --- jme.c (revision 580) > +++ jme.c (working copy) > @@ -958,13 +958,14 @@ > goto out_inc; > > i = atomic_read(&rxring->next_to_clean); > - while (limit-- > 0) { > + while (limit > 0) { > rxdesc = rxring->desc; > rxdesc += i; > > if ((rxdesc->descwb.flags & RXWBFLAG_OWN) || > !(rxdesc->descwb.desccnt & RXWBDCNT_WBCPL)) > goto out; > + --limit; > > desccnt = rxdesc->descwb.desccnt & RXWBDCNT_DCNT; > > > > > Guo-Fu Tseng Correct, thanks. Here are all three patches again with another issue I spotted in drivers/net/ucc_geth_mii.c: After my patch it still wouldn't err, because timeout was unsigned. ------------------------------>8-------------8<--------------------------------- with while (timeout-- > 0); timeout reaches -1 after the loop, so the tests below are off by one. also don't do an '< 0' test on an unsigned. Signed-off-by: Roel Kluin <roel.kluin@gmail.com> --- diff --git a/drivers/net/arm/ks8695net.c b/drivers/net/arm/ks8695net.c index 1cf2f94..f3a1274 100644 --- a/drivers/net/arm/ks8695net.c +++ b/drivers/net/arm/ks8695net.c @@ -560,7 +560,7 @@ ks8695_reset(struct ks8695_priv *ksp) msleep(1); } - if (reset_timeout == 0) { + if (reset_timeout < 0) { dev_crit(ksp->dev, "Timeout waiting for DMA engines to reset\n"); /* And blithely carry on */ diff --git a/drivers/net/jme.c b/drivers/net/jme.c index 08b3405..a6e1a35 100644 --- a/drivers/net/jme.c +++ b/drivers/net/jme.c @@ -957,13 +957,14 @@ jme_process_receive(struct jme_adapter *jme, int limit) goto out_inc; i = atomic_read(&rxring->next_to_clean); - while (limit-- > 0) { + while (limit > 0) { rxdesc = rxring->desc; rxdesc += i; if ((rxdesc->descwb.flags & cpu_to_le16(RXWBFLAG_OWN)) || !(rxdesc->descwb.desccnt & RXWBDCNT_WBCPL)) goto out; + --limit; desccnt = rxdesc->descwb.desccnt & RXWBDCNT_DCNT; diff --git a/drivers/net/ucc_geth_mii.c b/drivers/net/ucc_geth_mii.c index 5463591..0ada4ed 100644 --- a/drivers/net/ucc_geth_mii.c +++ b/drivers/net/ucc_geth_mii.c @@ -107,7 +107,7 @@ int uec_mdio_read(struct mii_bus *bus, int mii_id, int regnum) static int uec_mdio_reset(struct mii_bus *bus) { struct ucc_mii_mng __iomem *regs = (void __iomem *)bus->priv; - unsigned int timeout = PHY_INIT_TIMEOUT; + int timeout = PHY_INIT_TIMEOUT; mutex_lock(&bus->mdio_lock); @@ -123,7 +123,7 @@ static int uec_mdio_reset(struct mii_bus *bus) mutex_unlock(&bus->mdio_lock); - if (timeout <= 0) { + if (timeout < 0) { printk(KERN_ERR "%s: The MII Bus is stuck!\n", bus->name); return -EBUSY; } ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH v3] net: more timeouts that reach -1 2009-02-27 16:43 ` [PATCH v3] " Roel Kluin @ 2009-03-04 8:10 ` David Miller 0 siblings, 0 replies; 8+ messages in thread From: David Miller @ 2009-03-04 8:10 UTC (permalink / raw) To: roel.kluin; +Cc: cooldavid, netdev, akpm From: Roel Kluin <roel.kluin@gmail.com> Date: Fri, 27 Feb 2009 17:43:06 +0100 > Here are all three patches again with another issue I spotted in > drivers/net/ucc_geth_mii.c: > > After my patch it still wouldn't err, because timeout was unsigned. I'll make sure to integrate this version of your patch instead of the original which I just said I applied :-) ^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v2] net: more timeouts that reach -1 2009-02-25 11:15 [PATCH] net: more timeouts that reach -1 Roel Kluin 2009-02-27 11:43 ` Guo-Fu Tseng @ 2009-02-27 15:16 ` Roel Kluin 2009-03-04 8:05 ` [PATCH] " David Miller 2 siblings, 0 replies; 8+ messages in thread From: Roel Kluin @ 2009-02-27 15:16 UTC (permalink / raw) To: David S. Miller; +Cc: netdev, Andrew Morton Roel Kluin wrote: > These were not previously reported by me. > ------------------------------>8-------------8<--------------------------------- > with while (timeout-- > 0); timeout reaches -1 after the loop, so the tests > below are off by one. I just noticed that in drivers/net/ucc_geth_mii.c after my patch this still won't give an err, because timeout is unsigned ------------------------------>8-------------8<--------------------------------- with while (timeout-- > 0); timeout reaches -1 after the loop, so the tests below are off by one. also don't do an '< 0' test on an unsigned. Signed-off-by: Roel Kluin <roel.kluin@gmail.com> --- diff --git a/drivers/net/arm/ks8695net.c b/drivers/net/arm/ks8695net.c index 1cf2f94..f3a1274 100644 --- a/drivers/net/arm/ks8695net.c +++ b/drivers/net/arm/ks8695net.c @@ -560,7 +560,7 @@ ks8695_reset(struct ks8695_priv *ksp) msleep(1); } - if (reset_timeout == 0) { + if (reset_timeout < 0) { dev_crit(ksp->dev, "Timeout waiting for DMA engines to reset\n"); /* And blithely carry on */ diff --git a/drivers/net/jme.c b/drivers/net/jme.c index 08b3405..0173ed0 100644 --- a/drivers/net/jme.c +++ b/drivers/net/jme.c @@ -957,7 +957,8 @@ jme_process_receive(struct jme_adapter *jme, int limit) goto out_inc; i = atomic_read(&rxring->next_to_clean); - while (limit-- > 0) { + while (limit > 0) { + limit--; rxdesc = rxring->desc; rxdesc += i; diff --git a/drivers/net/ucc_geth_mii.c b/drivers/net/ucc_geth_mii.c index 5463591..0ada4ed 100644 --- a/drivers/net/ucc_geth_mii.c +++ b/drivers/net/ucc_geth_mii.c @@ -107,7 +107,7 @@ int uec_mdio_read(struct mii_bus *bus, int mii_id, int regnum) static int uec_mdio_reset(struct mii_bus *bus) { struct ucc_mii_mng __iomem *regs = (void __iomem *)bus->priv; - unsigned int timeout = PHY_INIT_TIMEOUT; + int timeout = PHY_INIT_TIMEOUT; mutex_lock(&bus->mdio_lock); @@ -123,7 +123,7 @@ static int uec_mdio_reset(struct mii_bus *bus) mutex_unlock(&bus->mdio_lock); - if (timeout <= 0) { + if (timeout < 0) { printk(KERN_ERR "%s: The MII Bus is stuck!\n", bus->name); return -EBUSY; } ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH] net: more timeouts that reach -1 2009-02-25 11:15 [PATCH] net: more timeouts that reach -1 Roel Kluin 2009-02-27 11:43 ` Guo-Fu Tseng 2009-02-27 15:16 ` [PATCH v2] " Roel Kluin @ 2009-03-04 8:05 ` David Miller 2 siblings, 0 replies; 8+ messages in thread From: David Miller @ 2009-03-04 8:05 UTC (permalink / raw) To: roel.kluin; +Cc: netdev, akpm From: Roel Kluin <roel.kluin@gmail.com> Date: Wed, 25 Feb 2009 12:15:57 +0100 > These were not previously reported by me. > ------------------------------>8-------------8<--------------------------------- > with while (timeout-- > 0); timeout reaches -1 after the loop, so the tests > below are off by one. > > Signed-off-by: Roel Kluin <roel.kluin@gmail.com> Applied, thanks. ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2009-03-04 8:10 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2009-02-25 11:15 [PATCH] net: more timeouts that reach -1 Roel Kluin 2009-02-27 11:43 ` Guo-Fu Tseng 2009-02-27 15:37 ` roel kluin 2009-02-27 15:51 ` Guo-Fu Tseng 2009-02-27 16:43 ` [PATCH v3] " Roel Kluin 2009-03-04 8:10 ` David Miller 2009-02-27 15:16 ` [PATCH v2] " Roel Kluin 2009-03-04 8:05 ` [PATCH] " David Miller
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).