Bug 29122
Summary: | r6040: interface status messaged logged once per second | ||
---|---|---|---|
Product: | Drivers | Reporter: | Scott (signtalk000) |
Component: | Network | Assignee: | drivers_network (drivers_network) |
Status: | RESOLVED OBSOLETE | ||
Severity: | normal | CC: | alan, nitr0 |
Priority: | P1 | ||
Hardware: | All | ||
OS: | Linux | ||
Kernel Version: | 2.6.35.10 | Subsystem: | |
Regression: | No | Bisected commit-id: |
Description
Scott
2011-02-14 19:39:47 UTC
I saw same trouble in 2.6.35.13 and EVA-X4150 SoC with integrated RDC network controller. I make workaround in my distro, but it looks some ugly, possible it'll be better to set init_media to 0 - but I afraid that this can cause new bugs. In any case, it works. Here is patch: --- drivers/net/r6040.c.orig 2011-04-28 18:21:24.000000000 +0300 +++ drivers/net/r6040.c 2011-07-12 01:18:50.019755735 +0300 @@ -810,7 +810,7 @@ mod_timer(&lp->timer, round_jiffies(jiffies + HZ)); /* Check media */ - mii_check_media(&lp->mii_if, 1, 1); + mii_check_media(&lp->mii_if, (netif_carrier_ok(lp->mii_if.dev) != (unsigned int) mii_link_ok(&lp->mii_if)) ? 1 : 0, 1); } /* Read/set MAC address routines */ |