[PATCH mptcp-next 2/3] Squash-to: "mptcp: stop relying on tcp_tx_skb_cache"

Paolo Abeni posted 3 patches 3 years, 12 months ago
There is a newer version of this series
[PATCH mptcp-next 2/3] Squash-to: "mptcp: stop relying on tcp_tx_skb_cache"
Posted by Paolo Abeni 3 years, 12 months ago
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