* [PATCH 0/4] net: define accessors to get/set skb->dst and skb->rtable
@ 2009-06-02 15:12 Eric Dumazet
2009-06-03 10:35 ` David Miller
0 siblings, 1 reply; 2+ messages in thread
From: Eric Dumazet @ 2009-06-02 15:12 UTC (permalink / raw)
To: David S. Miller; +Cc: Linux Netdev List
David
Here are patches I originally cooked to review all places that could need skb->dst
I believe they could be applied in net-next-2.6 because we could then
implement what we discussed in last december, about avoiding
refcounting on dst_entries in input path (thread about IP_PKTINFO stuff,
and a patch we had to revert)
You suggested to use the low order bit of skb->dst to tell if we got a
refcount or not.
These four patches implement grounding for this idea (no functional changes yet)
Next step is adding the low order bit handling (or another bit if it happens
to be too expensive to check this bit each time we want skb->dst, we
still have to benchmark this)
First patchs adds _skb_dst opaque field in existing union
Second patch removes skb->rtable field and implements skb_rtable() method :
struct rtable *skb_rtable(const struct sk_buff *skb)
Third patch removes skb->dst field and implements several methods :
struct dst_entry *skb_dst(const struct sk_buff *skb)
void skb_dst_set(struct sk_buff *skb, struct dst_entry *dst)
void skb_dst_drop(struct sk_buff *skb)
(skb_dst_drop() is not yet necessary but prepares next patches)
Fourth patch is a cleanup, avoiding the mono-field anonymous union.
Thank you
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH 0/4] net: define accessors to get/set skb->dst and skb->rtable
2009-06-02 15:12 [PATCH 0/4] net: define accessors to get/set skb->dst and skb->rtable Eric Dumazet
@ 2009-06-03 10:35 ` David Miller
0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2009-06-03 10:35 UTC (permalink / raw)
To: eric.dumazet; +Cc: netdev
From: Eric Dumazet <eric.dumazet@gmail.com>
Date: Tue, 02 Jun 2009 17:12:13 +0200
> Here are patches I originally cooked to review all places that could need skb->dst
>
> I believe they could be applied in net-next-2.6 because we could then
> implement what we discussed in last december, about avoiding
> refcounting on dst_entries in input path (thread about IP_PKTINFO stuff,
> and a patch we had to revert)
>
> You suggested to use the low order bit of skb->dst to tell if we got a
> refcount or not.
>
> These four patches implement grounding for this idea (no functional changes yet)
>
> Next step is adding the low order bit handling (or another bit if it happens
> to be too expensive to check this bit each time we want skb->dst, we
> still have to benchmark this)
It all looks great, applied, thanks Eric!
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-06-03 10:35 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-06-02 15:12 [PATCH 0/4] net: define accessors to get/set skb->dst and skb->rtable Eric Dumazet
2009-06-03 10:35 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).