Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 289833
b: refs/heads/master
c: 98ddf98
h: refs/heads/master
i:
  289831: d970b7a
v: v3
  • Loading branch information
Francois Romieu committed Jan 31, 2012
1 parent c4945e4 commit f5e11f0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 17 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ae1f23fb433ac0aaff8aeaa5a7b14348e9aa8277
refs/heads/master: 98ddf986fca17840e46e070354b7e2cd2169da15
20 changes: 4 additions & 16 deletions trunk/drivers/net/ethernet/realtek/r8169.c
Original file line number Diff line number Diff line change
Expand Up @@ -3273,25 +3273,16 @@ static void rtl_phy_work(struct rtl8169_private *tp)

static void rtl_schedule_task(struct rtl8169_private *tp, enum rtl_flag flag)
{
spin_lock(&tp->lock);
if (!test_and_set_bit(flag, tp->wk.flags))
schedule_work(&tp->wk.work);
spin_unlock(&tp->lock);
}

static void rtl_schedule_task_bh(struct rtl8169_private *tp, enum rtl_flag flag)
{
local_bh_disable();
rtl_schedule_task(tp, flag);
local_bh_enable();
}

static void rtl8169_phy_timer(unsigned long __opaque)
{
struct net_device *dev = (struct net_device *)__opaque;
struct rtl8169_private *tp = netdev_priv(dev);

rtl_schedule_task_bh(tp, RTL_FLAG_TASK_PHY_PENDING);
rtl_schedule_task(tp, RTL_FLAG_TASK_PHY_PENDING);
}

#ifdef CONFIG_NET_POLL_CONTROLLER
Expand Down Expand Up @@ -5635,7 +5626,7 @@ static void rtl8169_pcierr_interrupt(struct net_device *dev)

rtl8169_hw_reset(tp);

rtl_schedule_task_bh(tp, RTL_FLAG_TASK_RESET_PENDING);
rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
}

static void rtl_tx(struct net_device *dev, struct rtl8169_private *tp)
Expand Down Expand Up @@ -5852,7 +5843,7 @@ static void rtl_slow_event_work(struct rtl8169_private *tp)
/* Work around for rx fifo overflow */
case RTL_GIGA_MAC_VER_11:
netif_stop_queue(dev);
rtl_schedule_task_bh(tp, RTL_FLAG_TASK_RESET_PENDING);
rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
default:
break;
}
Expand Down Expand Up @@ -5894,10 +5885,7 @@ static void rtl_task(struct work_struct *work)
for (i = 0; i < ARRAY_SIZE(rtl_work); i++) {
bool pending;

spin_lock_bh(&tp->lock);
pending = test_and_clear_bit(rtl_work[i].bitnr, tp->wk.flags);
spin_unlock_bh(&tp->lock);

if (pending)
rtl_work[i].action(tp);
}
Expand Down Expand Up @@ -6116,7 +6104,7 @@ static void __rtl8169_resume(struct net_device *dev)

tp->wk.enabled = true;

rtl_schedule_task_bh(tp, RTL_FLAG_TASK_RESET_PENDING);
rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
}

static int rtl8169_resume(struct device *device)
Expand Down

0 comments on commit f5e11f0

Please sign in to comment.