diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-12-16 13:33:18 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-12-16 13:33:18 -0500 |
commit | 59be2e04e50ac9947e4356c10099f49977f5f74d (patch) | |
tree | 56aa00a4499a1543da8728cb84b10bec5b211280 /drivers/net/pcmcia | |
parent | e69381b4175ba162229646f6753ff1d87c24d468 (diff) | |
parent | 503914cf4a4b5dbe3f844e0a92f412ae99fde70e (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6: (26 commits)
net: sh_eth alignment fix for sh7724 using NET_IP_ALIGN V2
ixgbe: allow tx of pre-formatted vlan tagged packets
ixgbe: Fix 82598 premature copper PHY link indicatation
ixgbe: Fix tx_restart_queue/non_eop_desc statistics counters
bcm63xx_enet: fix compilation failure after get_stats_count removal
packet: dont call sleeping functions while holding rcu_read_lock()
tcp: Revert per-route SACK/DSACK/TIMESTAMP changes.
ipvs: zero usvc and udest
netfilter: fix crashes in bridge netfilter caused by fragment jumps
ipv6: reassembly: use seperate reassembly queues for conntrack and local delivery
sky2: leave PCI config space writeable
sky2: print Optima chip name
x25: Update maintainer.
ipvs: fix synchronization on connection close
netfilter: xtables: document minimal required version
drivers/net/bonding/: : use pr_fmt
can: CAN_MCP251X should depend on HAS_DMA
drivers/net/usb: Correct code taking the size of a pointer
drivers/net/cpmac.c: Correct code taking the size of a pointer
drivers/net/sfc: Correct code taking the size of a pointer
...
Diffstat (limited to 'drivers/net/pcmcia')
-rw-r--r-- | drivers/net/pcmcia/3c574_cs.c | 4 | ||||
-rw-r--r-- | drivers/net/pcmcia/3c589_cs.c | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/drivers/net/pcmcia/3c574_cs.c b/drivers/net/pcmcia/3c574_cs.c index 17a27225cc98..98938ea9e0bd 100644 --- a/drivers/net/pcmcia/3c574_cs.c +++ b/drivers/net/pcmcia/3c574_cs.c | |||
@@ -912,7 +912,11 @@ static void media_check(unsigned long arg) | |||
912 | if ((inw(ioaddr + EL3_STATUS) & IntLatch) && (inb(ioaddr + Timer) == 0xff)) { | 912 | if ((inw(ioaddr + EL3_STATUS) & IntLatch) && (inb(ioaddr + Timer) == 0xff)) { |
913 | if (!lp->fast_poll) | 913 | if (!lp->fast_poll) |
914 | printk(KERN_INFO "%s: interrupt(s) dropped!\n", dev->name); | 914 | printk(KERN_INFO "%s: interrupt(s) dropped!\n", dev->name); |
915 | |||
916 | local_irq_save(flags); | ||
915 | el3_interrupt(dev->irq, dev); | 917 | el3_interrupt(dev->irq, dev); |
918 | local_irq_restore(flags); | ||
919 | |||
916 | lp->fast_poll = HZ; | 920 | lp->fast_poll = HZ; |
917 | } | 921 | } |
918 | if (lp->fast_poll) { | 922 | if (lp->fast_poll) { |
diff --git a/drivers/net/pcmcia/3c589_cs.c b/drivers/net/pcmcia/3c589_cs.c index 6f8d7e2e5922..322e11df0097 100644 --- a/drivers/net/pcmcia/3c589_cs.c +++ b/drivers/net/pcmcia/3c589_cs.c | |||
@@ -711,7 +711,11 @@ static void media_check(unsigned long arg) | |||
711 | (inb(ioaddr + EL3_TIMER) == 0xff)) { | 711 | (inb(ioaddr + EL3_TIMER) == 0xff)) { |
712 | if (!lp->fast_poll) | 712 | if (!lp->fast_poll) |
713 | printk(KERN_WARNING "%s: interrupt(s) dropped!\n", dev->name); | 713 | printk(KERN_WARNING "%s: interrupt(s) dropped!\n", dev->name); |
714 | |||
715 | local_irq_save(flags); | ||
714 | el3_interrupt(dev->irq, dev); | 716 | el3_interrupt(dev->irq, dev); |
717 | local_irq_restore(flags); | ||
718 | |||
715 | lp->fast_poll = HZ; | 719 | lp->fast_poll = HZ; |
716 | } | 720 | } |
717 | if (lp->fast_poll) { | 721 | if (lp->fast_poll) { |