aboutsummaryrefslogtreecommitdiffstats
path: root/net/core
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2010-05-02 05:21:44 -0400
committerDavid S. Miller <davem@davemloft.net>2010-05-02 05:21:44 -0400
commit47d29646a2c1c147d8a7598aeac2c87dd71ed638 (patch)
treeb38f05d82883b5c0fc885812172a546af966d419 /net/core
parent43815482370c510c569fd18edb57afcb0fa8cab6 (diff)
net: Inline skb_pull() in eth_type_trans().
In commit 6be8ac2f ("[NET]: uninline skb_pull, de-bloats a lot") we uninlined skb_pull. But in some critical paths it makes sense to inline this thing and it helps performance significantly. Create an skb_pull_inline() so that we can do this in a way that serves also as annotation. Based upon a patch by Eric Dumazet. Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core')
-rw-r--r--net/core/skbuff.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/skbuff.c b/net/core/skbuff.c
index 4218ff49bf1..8b9c109166a 100644
--- a/net/core/skbuff.c
+++ b/net/core/skbuff.c
@@ -1051,7 +1051,7 @@ EXPORT_SYMBOL(skb_push);
1051 */ 1051 */
1052unsigned char *skb_pull(struct sk_buff *skb, unsigned int len) 1052unsigned char *skb_pull(struct sk_buff *skb, unsigned int len)
1053{ 1053{
1054 return unlikely(len > skb->len) ? NULL : __skb_pull(skb, len); 1054 return skb_pull_inline(skb, len);
1055} 1055}
1056EXPORT_SYMBOL(skb_pull); 1056EXPORT_SYMBOL(skb_pull);
1057 1057