[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20131026150952.GA12817@omega>
Date: Sat, 26 Oct 2013 17:09:53 +0200
From: Alexander Aring <alex.aring@...il.com>
To: alex.bluesman.smirnov@...il.com
Cc: linux-zigbee-devel@...ts.sourceforge.net, werner@...esberger.net,
dbaryshkov@...il.com, netdev@...r.kernel.org
Subject: Re: [PATCH net-next v2 3/5] 6lowpan: use netdev_alloc_skb instead
dev_alloc_skb
On Sat, Oct 26, 2013 at 03:54:00PM +0200, Alexander Aring wrote:
> This patch uses the netdev_alloc_skb instead dev_alloc_skb function and
> drops the seperate assignment to skb->dev.
>
> Signed-off-by: Alexander Aring <alex.aring@...il.com>
> Reviewed-by: Werner Almesberger <werner@...esberger.net>
> ---
> 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 9057f83..1884a84 100644
> --- a/net/ieee802154/6lowpan.c
> +++ b/net/ieee802154/6lowpan.c
> @@ -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);
mhh, I do the same mistake again. I will resend them.
Sorry for the noise.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists