mv643xx_eth: switch to netif tx queue lock, get rid of private spinlock
authorLennert Buytenhek <buytenh@wantstofly.org>
Thu, 28 Aug 2008 06:26:28 +0000 (08:26 +0200)
committerLennert Buytenhek <buytenh@marvell.com>
Sun, 14 Sep 2008 12:09:05 +0000 (14:09 +0200)
commit8fd89211bf8e8e60415c66e5546c1478f5e8bc2b
tree4600b72d8fec487f2e90d45a369bce52dc306eef
parent1fa38c586e92cce4ce06bfc08ad3134b8445170b
mv643xx_eth: switch to netif tx queue lock, get rid of private spinlock

Since our ->hard_start_xmit() method is already called under spinlock
protection (the netif tx queue lock), we can simply make that lock
cover the private transmit state (descriptor ring indexes et al.) as
well, which avoids having to use a private lock to protect that state.

Since this was the last user of the driver-private spinlock, it can
be killed off.

Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
drivers/net/mv643xx_eth.c