* [PATCH bluetooth-next] mac802154: tx: make worker information static
@ 2014-10-26 17:15 Alexander Aring
2014-10-26 18:20 ` Marcel Holtmann
0 siblings, 1 reply; 2+ messages in thread
From: Alexander Aring @ 2014-10-26 17:15 UTC (permalink / raw)
To: linux-wpan; +Cc: kernel, Alexander Aring
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>
---
net/mac802154/tx.c | 17 +++++------------
1 file changed, 5 insertions(+), 12 deletions(-)
diff --git a/net/mac802154/tx.c b/net/mac802154/tx.c
index 74882c7..fe2e17e 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;
--
2.1.2
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH bluetooth-next] mac802154: tx: make worker information static
2014-10-26 17:15 [PATCH bluetooth-next] mac802154: tx: make worker information static Alexander Aring
@ 2014-10-26 18:20 ` Marcel Holtmann
0 siblings, 0 replies; 2+ messages in thread
From: Marcel Holtmann @ 2014-10-26 18:20 UTC (permalink / raw)
To: Alexander Aring; +Cc: linux-wpan, kernel
Hi Alex,
> 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>
> ---
> net/mac802154/tx.c | 17 +++++------------
> 1 file changed, 5 insertions(+), 12 deletions(-)
patch has been applied to bluetooth-next tree.
Regards
Marcel
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-10-26 18:20 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-26 17:15 [PATCH bluetooth-next] mac802154: tx: make worker information static Alexander Aring
2014-10-26 18:20 ` Marcel Holtmann
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox