aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac802154
diff options
context:
space:
mode:
authorVarka Bhadram <varkab@cdac.in>2014-08-11 13:25:07 +0200
committerMarcel Holtmann <marcel@holtmann.org>2014-08-14 08:49:24 +0200
commit24bbd44a96c7a209fafbf1b28f0ac1a00cf4e551 (patch)
tree3ca0b2583e146ff3265ee4b7fe422eb80630f6ac /net/mac802154
parentBluetooth: Make smp_chan_destroy() private to smp.c (diff)
downloadlinux-dev-24bbd44a96c7a209fafbf1b28f0ac1a00cf4e551.tar.xz
linux-dev-24bbd44a96c7a209fafbf1b28f0ac1a00cf4e551.zip
mac802154: cleanup in rx path
This patch replace the sizeof(struct rx_work) with sizeof(*work) and directly passing the skb in mac802154_subif_rx() Signed-off-by: Varka Bhadram <varkab@cdac.in> Signed-off-by: Alexander Aring <alex.aring@gmail.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/mac802154')
-rw-r--r--net/mac802154/rx.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/net/mac802154/rx.c b/net/mac802154/rx.c
index 7f820a108a9c..a14cf9ede171 100644
--- a/net/mac802154/rx.c
+++ b/net/mac802154/rx.c
@@ -86,9 +86,8 @@ fail:
static void mac802154_rx_worker(struct work_struct *work)
{
struct rx_work *rw = container_of(work, struct rx_work, work);
- struct sk_buff *skb = rw->skb;
- mac802154_subif_rx(rw->dev, skb, rw->lqi);
+ mac802154_subif_rx(rw->dev, rw->skb, rw->lqi);
kfree(rw);
}
@@ -101,7 +100,7 @@ ieee802154_rx_irqsafe(struct ieee802154_dev *dev, struct sk_buff *skb, u8 lqi)
if (!skb)
return;
- work = kzalloc(sizeof(struct rx_work), GFP_ATOMIC);
+ work = kzalloc(sizeof(*work), GFP_ATOMIC);
if (!work)
return;