fix build after helper rename
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
---
net/mptcp/protocol.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/mptcp/protocol.c b/net/mptcp/protocol.c
index 48e0e3a945e4..87ee409d68ab 100644
--- a/net/mptcp/protocol.c
+++ b/net/mptcp/protocol.c
@@ -1240,7 +1240,7 @@ static struct sk_buff *__mptcp_alloc_tx_skb(struct sock *sk, struct sock *ssk, g
return NULL;
if (likely(sk_wmem_schedule(ssk, skb->truesize))) {
- skb_entail(ssk, skb);
+ tcp_skb_entail(ssk, skb);
return skb;
}
kfree_skb(skb);
--
2.26.3