diff options
Diffstat (limited to 'net/tipc/msg.c')
-rw-r--r-- | net/tipc/msg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/tipc/msg.c b/net/tipc/msg.c index 55d8ba92291d..4e1c6f6450bb 100644 --- a/net/tipc/msg.c +++ b/net/tipc/msg.c | |||
@@ -208,8 +208,8 @@ bool tipc_msg_validate(struct sk_buff **_skb) | |||
208 | int msz, hsz; | 208 | int msz, hsz; |
209 | 209 | ||
210 | /* Ensure that flow control ratio condition is satisfied */ | 210 | /* Ensure that flow control ratio condition is satisfied */ |
211 | if (unlikely(skb->truesize / buf_roundup_len(skb) > 4)) { | 211 | if (unlikely(skb->truesize / buf_roundup_len(skb) >= 4)) { |
212 | skb = skb_copy(skb, GFP_ATOMIC); | 212 | skb = skb_copy_expand(skb, BUF_HEADROOM, 0, GFP_ATOMIC); |
213 | if (!skb) | 213 | if (!skb) |
214 | return false; | 214 | return false; |
215 | kfree_skb(*_skb); | 215 | kfree_skb(*_skb); |