diff options
author | Pravin B Shelar <pshelar@nicira.com> | 2013-02-14 04:44:49 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-02-15 15:10:37 -0500 |
commit | 14bbd6a565e1bcdc240d44687edb93f721cfdf99 (patch) | |
tree | b2001bb985856d2177212451273d1f6ebcc55035 /drivers/net/ppp | |
parent | d887199dc28c46788b155b234274d5ff41afed8e (diff) |
net: Add skb_unclone() helper function.
This function will be used in next GRE_GSO patch. This patch does
not change any functionality.
Signed-off-by: Pravin B Shelar <pshelar@nicira.com>
Acked-by: Eric Dumazet <edumazet@google.com>
Diffstat (limited to 'drivers/net/ppp')
-rw-r--r-- | drivers/net/ppp/ppp_generic.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/ppp/ppp_generic.c b/drivers/net/ppp/ppp_generic.c index 0b2706abe3e3..4fd754e74eb2 100644 --- a/drivers/net/ppp/ppp_generic.c +++ b/drivers/net/ppp/ppp_generic.c | |||
@@ -1805,8 +1805,7 @@ ppp_receive_nonmp_frame(struct ppp *ppp, struct sk_buff *skb) | |||
1805 | /* the filter instructions are constructed assuming | 1805 | /* the filter instructions are constructed assuming |
1806 | a four-byte PPP header on each packet */ | 1806 | a four-byte PPP header on each packet */ |
1807 | if (ppp->pass_filter || ppp->active_filter) { | 1807 | if (ppp->pass_filter || ppp->active_filter) { |
1808 | if (skb_cloned(skb) && | 1808 | if (skb_unclone(skb, GFP_ATOMIC)) |
1809 | pskb_expand_head(skb, 0, 0, GFP_ATOMIC)) | ||
1810 | goto err; | 1809 | goto err; |
1811 | 1810 | ||
1812 | *skb_push(skb, 2) = 0; | 1811 | *skb_push(skb, 2) = 0; |