Commit c276e098 authored by David S. Miller's avatar David S. Miller

Revert "net: Fix for initial link state in 2.6.28"

This reverts commit 22604c86.

We can't fix this issue in this way, because we now can try
to take the dev_base_lock rwlock as a writer in software interrupt
context and that is not allowed without major surgery elsewhere.

This initial link state problem needs to be solved in some other
way.
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 7945cc64
...@@ -178,6 +178,7 @@ static void __linkwatch_run_queue(int urgent_only) ...@@ -178,6 +178,7 @@ static void __linkwatch_run_queue(int urgent_only)
*/ */
clear_bit(__LINK_STATE_LINKWATCH_PENDING, &dev->state); clear_bit(__LINK_STATE_LINKWATCH_PENDING, &dev->state);
rfc2863_policy(dev);
if (dev->flags & IFF_UP) { if (dev->flags & IFF_UP) {
if (netif_carrier_ok(dev)) if (netif_carrier_ok(dev))
dev_activate(dev); dev_activate(dev);
...@@ -214,12 +215,6 @@ void linkwatch_fire_event(struct net_device *dev) ...@@ -214,12 +215,6 @@ void linkwatch_fire_event(struct net_device *dev)
{ {
bool urgent = linkwatch_urgent_event(dev); bool urgent = linkwatch_urgent_event(dev);
rfc2863_policy(dev);
/* Some drivers call netif_carrier_off early */
if (dev->reg_state == NETREG_UNINITIALIZED)
return;
if (!test_and_set_bit(__LINK_STATE_LINKWATCH_PENDING, &dev->state)) { if (!test_and_set_bit(__LINK_STATE_LINKWATCH_PENDING, &dev->state)) {
dev_hold(dev); dev_hold(dev);
......
...@@ -270,6 +270,8 @@ static void dev_watchdog_down(struct net_device *dev) ...@@ -270,6 +270,8 @@ static void dev_watchdog_down(struct net_device *dev)
void netif_carrier_on(struct net_device *dev) void netif_carrier_on(struct net_device *dev)
{ {
if (test_and_clear_bit(__LINK_STATE_NOCARRIER, &dev->state)) { if (test_and_clear_bit(__LINK_STATE_NOCARRIER, &dev->state)) {
if (dev->reg_state == NETREG_UNINITIALIZED)
return;
linkwatch_fire_event(dev); linkwatch_fire_event(dev);
if (netif_running(dev)) if (netif_running(dev))
__netdev_watchdog_up(dev); __netdev_watchdog_up(dev);
...@@ -286,6 +288,8 @@ EXPORT_SYMBOL(netif_carrier_on); ...@@ -286,6 +288,8 @@ EXPORT_SYMBOL(netif_carrier_on);
void netif_carrier_off(struct net_device *dev) void netif_carrier_off(struct net_device *dev)
{ {
if (!test_and_set_bit(__LINK_STATE_NOCARRIER, &dev->state)) { if (!test_and_set_bit(__LINK_STATE_NOCARRIER, &dev->state)) {
if (dev->reg_state == NETREG_UNINITIALIZED)
return;
linkwatch_fire_event(dev); linkwatch_fire_event(dev);
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment