On Sat, 2013-10-26 at 01:42 -0400, David Miller wrote: > From: Alexander Aring <alex.ar...@gmail.com> > Date: Thu, 24 Oct 2013 22:51:42 +0200 > > > @@ -1127,12 +1127,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); > > Please indent this properly. > > It should be something like: > > frag = netdev_alloc_skb(skb->dev, hlen + mlen + > plen + IEEE802154_MFR_SIZE);
Maybe better as: frag = netdev_alloc_skb(skb->dev, hlen + mlen + plen + IEEE802154_MFR_SIZE); ------------------------------------------------------------------------------ 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=60135991&iu=/4140/ostg.clktrk _______________________________________________ Linux-zigbee-devel mailing list Linux-zigbee-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/linux-zigbee-devel