mirror of https://gitee.com/openkylin/linux.git
net: avoid NULL deref in napi_get_frags()
napi_alloc_skb() can return NULL.
We should not crash should this happen.
Fixes: 93f93a4404
("net: move skb_mark_napi_id() into core networking stack")
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
b3d39a8805
commit
e2f9dc3bd2
|
@ -4390,8 +4390,10 @@ struct sk_buff *napi_get_frags(struct napi_struct *napi)
|
|||
|
||||
if (!skb) {
|
||||
skb = napi_alloc_skb(napi, GRO_MAX_HEAD);
|
||||
napi->skb = skb;
|
||||
skb_mark_napi_id(skb, napi);
|
||||
if (skb) {
|
||||
napi->skb = skb;
|
||||
skb_mark_napi_id(skb, napi);
|
||||
}
|
||||
}
|
||||
return skb;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue