aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac802154/tx.c
diff options
context:
space:
mode:
authorAlexander Aring <alex.aring@gmail.com>2014-10-26 18:15:34 +0100
committerMarcel Holtmann <marcel@holtmann.org>2014-10-26 19:18:35 +0100
commitf81f466ca588a5bd868008154050305481f241d4 (patch)
tree9509b8cbac028903597f9d48a43211fdda57a627 /net/mac802154/tx.c
parentat86rf230: asynchronous xmit handling (diff)
downloadlinux-dev-f81f466ca588a5bd868008154050305481f241d4.tar.xz
linux-dev-f81f466ca588a5bd868008154050305481f241d4.zip
mac802154: tx: make worker information static
This patch moves the worker information struct out of skb control block. Instead control block we declare it static inside of tx.c file. We can do that, because the worker can't be used twice at the same time. It's protected by stop and wake netdev queue. This patch fix an issue that the "struct ieee802154_xmit_cb" doesn't fit into the skb control block on some kernel configuartion reported by kbuild test robot. It was introduced by commit fe24371d6645b766c59ec664c59d0a9c310ad455 ("mac802154: tx: remove kmalloc in xmit hotpath"). Signed-off-by: Alexander Aring <alex.aring@gmail.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/mac802154/tx.c')
-rw-r--r--net/mac802154/tx.c17
1 files changed, 5 insertions, 12 deletions
diff --git a/net/mac802154/tx.c b/net/mac802154/tx.c
index 74882c72b6c3..fe2e17e6fee3 100644
--- a/net/mac802154/tx.c
+++ b/net/mac802154/tx.c
@@ -37,13 +37,7 @@ struct ieee802154_xmit_cb {
struct ieee802154_local *local;
};
-static inline struct ieee802154_xmit_cb *
-ieee802154_xmit_cb(const struct sk_buff *skb)
-{
- BUILD_BUG_ON(sizeof(skb->cb) < sizeof(struct ieee802154_xmit_cb));
-
- return (struct ieee802154_xmit_cb *)skb->cb;
-}
+static struct ieee802154_xmit_cb ieee802154_xmit_cb;
static void ieee802154_xmit_worker(struct work_struct *work)
{
@@ -84,7 +78,6 @@ err_tx:
static netdev_tx_t
ieee802154_tx(struct ieee802154_local *local, struct sk_buff *skb)
{
- struct ieee802154_xmit_cb *cb = ieee802154_xmit_cb(skb);
struct net_device *dev = skb->dev;
int ret;
@@ -113,11 +106,11 @@ ieee802154_tx(struct ieee802154_local *local, struct sk_buff *skb)
dev->stats.tx_packets++;
dev->stats.tx_bytes += skb->len;
} else {
- INIT_WORK(&cb->work, ieee802154_xmit_worker);
- cb->skb = skb;
- cb->local = local;
+ INIT_WORK(&ieee802154_xmit_cb.work, ieee802154_xmit_worker);
+ ieee802154_xmit_cb.skb = skb;
+ ieee802154_xmit_cb.local = local;
- queue_work(local->workqueue, &cb->work);
+ queue_work(local->workqueue, &ieee802154_xmit_cb.work);
}
return NETDEV_TX_OK;