diff options
author | Stephen Hemminger <shemminger@osdl.org> | 2006-06-06 10:11:13 -0700 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2006-06-08 15:44:54 -0400 |
commit | 7c442fa17eabd34301598acbca8ecb99daad6027 (patch) | |
tree | c77ff92e3c8e2eefddbc9bab112bdc01939dc020 /drivers/net/skge.h | |
parent | 9db96479b4e682b1bc3796873589db1f8d38a9d5 (diff) | |
download | linux-3.10-7c442fa17eabd34301598acbca8ecb99daad6027.tar.gz linux-3.10-7c442fa17eabd34301598acbca8ecb99daad6027.tar.bz2 linux-3.10-7c442fa17eabd34301598acbca8ecb99daad6027.zip |
[PATCH] skge: transmit complete via IRQ not NAPI
The transmit side code has a number of ring problems that caused some
of the Bugzilla reports. Rather than trying to fix the details, it is safer
to rewrite the code that handles transmit completion and freeing.
Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net/skge.h')
-rw-r--r-- | drivers/net/skge.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/skge.h b/drivers/net/skge.h index 46bd950612e..ed19ff47ce1 100644 --- a/drivers/net/skge.h +++ b/drivers/net/skge.h @@ -2388,6 +2388,7 @@ struct skge_ring { struct skge_hw { void __iomem *regs; struct pci_dev *pdev; + spinlock_t hw_lock; u32 intr_mask; struct net_device *dev[2]; |