[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20090825201514.0dd143ad@nehalam>
Date: Tue, 25 Aug 2009 20:15:14 -0700
From: Stephen Hemminger <shemminger@...tta.com>
To: Chris Ross <chris@...pilednetworks.com>
Cc: netdev@...r.kernel.org
Subject: Re: skb header allocation
On Tue, 25 Aug 2009 22:04:10 -0500
Chris Ross <chris@...pilednetworks.com> wrote:
> I have a network driver that acts as a Ethernet device and builds up a
> series of outer headers on skb(s) it receives from upper layers. I am
> currently using the technique that is in ipip.c to ensure I have
> enough room to add my header ...
>
> if (skb_headroom(skb) < some_value || skb_shared(skb) ||
> ((skb_cloned(skb) && !skb_clone_writable(skb, 0))))
> {
> if ((skb2 = skb_realloc_headroom(skb, some_value)) == NULL)
> return -1;
>
> dev_kfree_skb(skb);
> skb = skb2;
> }
>
> Is this the best practice for a high bandwidth scenario?
Define a value of dev->hard_header_len that adds space for what you need.
Use skb_cow_head(skb, headroom) before touching skb header.
--
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