Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 35087
b: refs/heads/master
c: 22ad852
h: refs/heads/master
i:
  35085: 36568f0
  35083: f070806
  35079: d2338f6
  35071: fd9a325
v: v3
  • Loading branch information
Arjan van de Ven authored and Jeff Garzik committed Jul 19, 2006
1 parent a5eb561 commit 15b0232
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 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: 225ec70a8cf5086a70d755e394c56186a30053d3
refs/heads/master: 22ad852b8297e5063fc50f54a77e13f6d9b16a6f
10 changes: 5 additions & 5 deletions trunk/drivers/net/8390.c
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ static int ei_start_xmit(struct sk_buff *skb, struct net_device *dev)
* Slow phase with lock held.
*/

disable_irq_nosync(dev->irq);
disable_irq_nosync_lockdep(dev->irq);

spin_lock(&ei_local->page_lock);

Expand Down Expand Up @@ -338,7 +338,7 @@ static int ei_start_xmit(struct sk_buff *skb, struct net_device *dev)
netif_stop_queue(dev);
outb_p(ENISR_ALL, e8390_base + EN0_IMR);
spin_unlock(&ei_local->page_lock);
enable_irq(dev->irq);
enable_irq_lockdep(dev->irq);
ei_local->stat.tx_errors++;
return 1;
}
Expand Down Expand Up @@ -379,7 +379,7 @@ static int ei_start_xmit(struct sk_buff *skb, struct net_device *dev)
outb_p(ENISR_ALL, e8390_base + EN0_IMR);

spin_unlock(&ei_local->page_lock);
enable_irq(dev->irq);
enable_irq_lockdep(dev->irq);

dev_kfree_skb (skb);
ei_local->stat.tx_bytes += send_length;
Expand Down Expand Up @@ -505,9 +505,9 @@ irqreturn_t ei_interrupt(int irq, void *dev_id, struct pt_regs * regs)
#ifdef CONFIG_NET_POLL_CONTROLLER
void ei_poll(struct net_device *dev)
{
disable_irq(dev->irq);
disable_irq_lockdep(dev->irq);
ei_interrupt(dev->irq, dev, NULL);
enable_irq(dev->irq);
enable_irq_lockdep(dev->irq);
}
#endif

Expand Down

0 comments on commit 15b0232

Please sign in to comment.