diff mbox series

[2/6] topmsg: mptcp: queue data for mptcp level retransmission

Message ID 20200327155327.605375-3-matthieu.baerts@tessares.net
State Accepted, archived
Delegated to: Matthieu Baerts
Headers show
Series mptcp: remove all "inline" in foo.c files | expand

Commit Message

Matthieu Baerts March 27, 2020, 3:53 p.m. UTC
Add ChangeLog + add missing capital letters.

Signed-off-by: Matthieu Baerts <matthieu.baerts@tessares.net>
---
 .topmsg | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/.topmsg b/.topmsg
index cf9740a54b08..4ca75d24c88e 100644
--- a/.topmsg
+++ b/.topmsg
@@ -1,8 +1,8 @@ 
 From: Paolo Abeni <pabeni@redhat.com>
 Subject: [PATCH] mptcp: queue data for mptcp level retransmission
 
-keep the send page fragment on an MPTCP level retransmission queue.
-the queue entries are allocated inside the page frag allocator,
+Keep the send page fragment on an MPTCP level retransmission queue.
+The queue entries are allocated inside the page frag allocator,
 acquiring an additional reference to the page for each list entry.
 
 Also switch to a custom page frag refill function, to ensure that
@@ -13,5 +13,8 @@  The MPTCP rtx queue is flushed at disconnect() and close() time
 Note that now we need to call __mptcp_init_sock() regardless of mptcp
 enable status, as the destructor will try to walk the rtx_queue.
 
+v2 -> v3:
+ - remove 'inline' in foo.c files (David S. Miller)
+
 Signed-off-by: Paolo Abeni <pabeni@redhat.com>
 Signed-off-by: Mat Martineau <mathew.j.martineau@linux.intel.com>