mbox series

[net-next,0/8] mptcp: SO_SNDTIMEO and misc. cleanup

Message ID 20220216021130.171786-1-mathew.j.martineau@linux.intel.com (mailing list archive)
Headers show
Series mptcp: SO_SNDTIMEO and misc. cleanup | expand

Message

Mat Martineau Feb. 16, 2022, 2:11 a.m. UTC
Patch 1 adds support for the SO_SNDTIMEO socket option on MPTCP sockets.

The remaining patches are various small cleanups:

Patch 2 removes an obsolete declaration.

Patches 3 and 5 remove unnecessary function parameters.

Patch 4 removes an extra cast.

Patches 6 and 7 add some const and ro_after_init modifiers.

Patch 8 removes extra storage of TCP helpers.


Florian Westphal (2):
  mptcp: mark ops structures as ro_after_init
  mptcp: don't save tcp data_ready and write space callbacks

Geliang Tang (4):
  mptcp: add SNDTIMEO setsockopt support
  mptcp: drop unused sk in mptcp_get_options
  mptcp: drop unneeded type casts for hmac
  mptcp: drop port parameter of mptcp_pm_add_addr_signal

Matthieu Baerts (1):
  mptcp: mptcp_parse_option is no longer exported

Paolo Abeni (1):
  mptcp: constify a bunch of of helpers

 include/net/mptcp.h    |  6 ------
 net/mptcp/options.c    | 13 +++++--------
 net/mptcp/pm.c         | 11 ++++++-----
 net/mptcp/pm_netlink.c | 42 +++++++++++++++++++++---------------------
 net/mptcp/protocol.h   | 29 +++++++++++++----------------
 net/mptcp/sockopt.c    |  2 ++
 net/mptcp/subflow.c    | 37 +++++++++++++++++--------------------
 7 files changed, 64 insertions(+), 76 deletions(-)


base-commit: 2c955856da4faec3a36df1e85b3ba3dfe230d6fd

Comments

Jakub Kicinski Feb. 17, 2022, 4:54 a.m. UTC | #1
On Tue, 15 Feb 2022 18:11:22 -0800 Mat Martineau wrote:
> Patch 1 adds support for the SO_SNDTIMEO socket option on MPTCP sockets.
> 
> The remaining patches are various small cleanups:
> 
> Patch 2 removes an obsolete declaration.
> 
> Patches 3 and 5 remove unnecessary function parameters.
> 
> Patch 4 removes an extra cast.
> 
> Patches 6 and 7 add some const and ro_after_init modifiers.
> 
> Patch 8 removes extra storage of TCP helpers.

Applied, thanks!