diff options
Diffstat (limited to 'drivers')
-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; |