This patch uses the netdev_alloc_skb instead dev_alloc_skb function.
Also dropping the assign to skb->dev to netdev.

Signed-off-by: Alexander Aring <alex.ar...@gmail.com>
---
 net/ieee802154/6lowpan.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net/ieee802154/6lowpan.c b/net/ieee802154/6lowpan.c
index 1dd690a..c458ac2 100644
--- a/net/ieee802154/6lowpan.c
+++ b/net/ieee802154/6lowpan.c
@@ -1085,12 +1085,12 @@ lowpan_fragment_xmit(struct sk_buff *skb, u8 *head,
 
        lowpan_raw_dump_inline(__func__, "6lowpan fragment header", head, hlen);
 
-       frag = dev_alloc_skb(hlen + mlen + plen + IEEE802154_MFR_SIZE);
+       frag = netdev_alloc_skb(skb->dev, hlen + mlen +
+                       plen + IEEE802154_MFR_SIZE);
        if (!frag)
                return -ENOMEM;
 
        frag->priority = skb->priority;
-       frag->dev = skb->dev;
 
        /* copy header, MFR and payload */
        memcpy(skb_put(frag, mlen), skb->data, mlen);
-- 
1.8.4


------------------------------------------------------------------------------
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register >
http://pubads.g.doubleclick.net/gampad/clk?id=60134071&iu=/4140/ostg.clktrk
_______________________________________________
Linux-zigbee-devel mailing list
Linux-zigbee-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-zigbee-devel

Reply via email to