1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter.git synced 2025-02-13 03:41:54 +00:00

Update MPTCP to latest commit

This commit is contained in:
Ycarus 2018-09-05 16:15:42 +02:00
parent b48c4a9f5f
commit 261e2921a1

View file

@ -20289,3 +20289,17 @@ diff -aurN a/net/mptcp/mptcp_wvegas.c b/net/mptcp/mptcp_wvegas.c
+MODULE_LICENSE("GPL");
+MODULE_DESCRIPTION("MPTCP wVegas");
+MODULE_VERSION("0.1");
diff --git a/net/mptcp/mptcp_output.c b/net/mptcp/mptcp_output.c
index 49e947ce94e4..ac064b63e903 100644
--- a/net/mptcp/mptcp_output.c
+++ b/net/mptcp/mptcp_output.c
@@ -240,6 +240,9 @@ static void __mptcp_reinject_data(struct sk_buff *orig_skb, struct sock *meta_sk
if (!after(end_seq, TCP_SKB_CB(skb1)->seq))
break;
+ if (before(end_seq, TCP_SKB_CB(skb1)->end_seq))
+ break;
+
__skb_unlink(skb1, &mpcb->reinject_queue);
__kfree_skb(skb1);
}