diff options
author | Jamal Hadi Salim <hadi@cyberus.ca> | 2007-09-16 17:40:49 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:51:20 -0400 |
commit | 22dd74950172dc8979576e2bef3b439f20ef0b05 (patch) | |
tree | d918ef8e1841cd4e5938febd2c584c02dcc6ca25 /net/core | |
parent | 4885a50476b95fa0f4caad179a80783508c2fe86 (diff) |
[NET]: migrate HARD_TX_LOCK to header file
HARD_TX_LOCK micro is a nice aggregation that could be used
in other spots. move it to netdevice.h
Also makes sure the previously superflous cpu arguement is used.
Thanks to DaveM for the suggestions.
Signed-off-by: Jamal Hadi Salim <hadi@cyberus.ca>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core')
-rw-r--r-- | net/core/dev.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/net/core/dev.c b/net/core/dev.c index 666c112efb55..e9a6d93a194f 100644 --- a/net/core/dev.c +++ b/net/core/dev.c | |||
@@ -1574,18 +1574,6 @@ out_kfree_skb: | |||
1574 | return 0; | 1574 | return 0; |
1575 | } | 1575 | } |
1576 | 1576 | ||
1577 | #define HARD_TX_LOCK(dev, cpu) { \ | ||
1578 | if ((dev->features & NETIF_F_LLTX) == 0) { \ | ||
1579 | netif_tx_lock(dev); \ | ||
1580 | } \ | ||
1581 | } | ||
1582 | |||
1583 | #define HARD_TX_UNLOCK(dev) { \ | ||
1584 | if ((dev->features & NETIF_F_LLTX) == 0) { \ | ||
1585 | netif_tx_unlock(dev); \ | ||
1586 | } \ | ||
1587 | } | ||
1588 | |||
1589 | /** | 1577 | /** |
1590 | * dev_queue_xmit - transmit a buffer | 1578 | * dev_queue_xmit - transmit a buffer |
1591 | * @skb: buffer to transmit | 1579 | * @skb: buffer to transmit |