All of lore.kernel.org
 help / color / mirror / Atom feed
* pull request (net-next): ipsec-next 2021-06-28
@ 2021-06-28  5:45 Steffen Klassert
  2021-06-28  5:45 ` [PATCH 01/17] esp: drop unneeded assignment in esp4_gro_receive() Steffen Klassert
                   ` (17 more replies)
  0 siblings, 18 replies; 20+ messages in thread
From: Steffen Klassert @ 2021-06-28  5:45 UTC (permalink / raw)
  To: David Miller, Jakub Kicinski; +Cc: Herbert Xu, Steffen Klassert, netdev

1) Remove an unneeded error assignment in esp4_gro_receive().
   From Yang Li.

2) Add a new byseq state hashtable to find acquire states faster.
   From Sabrina Dubroca.

3) Remove some unnecessary variables in pfkey_create().
   From zuoqilin.

4) Remove the unused description from xfrm_type struct.
   From Florian Westphal.

5) Fix a spelling mistake in the comment of xfrm_state_ok().
   From gushengxian.

6) Replace hdr_off indirections by a small helper function.
   From Florian Westphal.

7) Remove xfrm4_output_finish and xfrm6_output_finish declarations,
   they are not used anymore.From Antony Antony.

8) Remove xfrm replay indirections.
   From Florian Westphal.

Please pull or let me know if there are problems.

Thanks!

The following changes since commit ea89c862f01e02ec459932c7c3113fa37aedd09a:

  net: mana: Use struct_size() in kzalloc() (2021-05-13 15:58:46 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git master

for you to fetch changes up to b5a1d1fe0cbb9d20ba661134a09561af1dc9ebf5:

  xfrm: replay: remove last replay indirection (2021-06-21 09:55:06 +0200)

----------------------------------------------------------------
Antony Antony (1):
      xfrm: delete xfrm4_output_finish xfrm6_output_finish declarations

Florian Westphal (12):
      xfrm: remove description from xfrm_type struct
      xfrm: ipv6: add xfrm6_hdr_offset helper
      xfrm: ipv6: move mip6_destopt_offset into xfrm core
      xfrm: ipv6: move mip6_rthdr_offset into xfrm core
      xfrm: remove hdr_offset indirection
      xfrm: merge dstopt and routing hdroff functions
      xfrm: avoid compiler warning when ipv6 is disabled
      xfrm: replay: avoid xfrm replay notify indirection
      xfrm: replay: remove advance indirection
      xfrm: replay: remove recheck indirection
      xfrm: replay: avoid replay indirection
      xfrm: replay: remove last replay indirection

Sabrina Dubroca (1):
      xfrm: add state hashtable keyed by seq

Yang Li (1):
      esp: drop unneeded assignment in esp4_gro_receive()

gushengxian (1):
      xfrm: policy: fix a spelling mistake

zuoqilin (1):
      net: Remove unnecessary variables

 include/net/netns/xfrm.h |   1 +
 include/net/xfrm.h       |  37 +++++-----
 net/ipv4/ah4.c           |   1 -
 net/ipv4/esp4.c          |   1 -
 net/ipv4/esp4_offload.c  |   4 +-
 net/ipv4/ipcomp.c        |   1 -
 net/ipv4/xfrm4_tunnel.c  |   1 -
 net/ipv6/ah6.c           |   2 -
 net/ipv6/esp6.c          |   2 -
 net/ipv6/esp6_offload.c  |   1 -
 net/ipv6/ipcomp6.c       |   2 -
 net/ipv6/mip6.c          |  99 ---------------------------
 net/ipv6/xfrm6_output.c  |   7 --
 net/ipv6/xfrm6_tunnel.c  |   1 -
 net/key/af_key.c         |   6 +-
 net/xfrm/xfrm_hash.h     |   7 ++
 net/xfrm/xfrm_input.c    |   6 +-
 net/xfrm/xfrm_output.c   |  83 ++++++++++++++++++++++-
 net/xfrm/xfrm_policy.c   |   2 +-
 net/xfrm/xfrm_replay.c   | 171 ++++++++++++++++++++++++++++-------------------
 net/xfrm/xfrm_state.c    |  67 +++++++++++++++----
 21 files changed, 266 insertions(+), 236 deletions(-)

^ permalink raw reply	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2021-06-28 20:41 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-28  5:45 pull request (net-next): ipsec-next 2021-06-28 Steffen Klassert
2021-06-28  5:45 ` [PATCH 01/17] esp: drop unneeded assignment in esp4_gro_receive() Steffen Klassert
2021-06-28 20:40   ` patchwork-bot+netdevbpf
2021-06-28  5:45 ` [PATCH 02/17] xfrm: add state hashtable keyed by seq Steffen Klassert
2021-06-28  5:45 ` [PATCH 03/17] net: Remove unnecessary variables Steffen Klassert
2021-06-28  5:45 ` [PATCH 04/17] xfrm: remove description from xfrm_type struct Steffen Klassert
2021-06-28  5:45 ` [PATCH 05/17] xfrm: policy: fix a spelling mistake Steffen Klassert
2021-06-28  5:45 ` [PATCH 06/17] xfrm: ipv6: add xfrm6_hdr_offset helper Steffen Klassert
2021-06-28  5:45 ` [PATCH 07/17] xfrm: ipv6: move mip6_destopt_offset into xfrm core Steffen Klassert
2021-06-28  5:45 ` [PATCH 08/17] xfrm: ipv6: move mip6_rthdr_offset " Steffen Klassert
2021-06-28  5:45 ` [PATCH 09/17] xfrm: remove hdr_offset indirection Steffen Klassert
2021-06-28  5:45 ` [PATCH 10/17] xfrm: merge dstopt and routing hdroff functions Steffen Klassert
2021-06-28  5:45 ` [PATCH 11/17] xfrm: delete xfrm4_output_finish xfrm6_output_finish declarations Steffen Klassert
2021-06-28  5:45 ` [PATCH 12/17] xfrm: avoid compiler warning when ipv6 is disabled Steffen Klassert
2021-06-28  5:45 ` [PATCH 13/17] xfrm: replay: avoid xfrm replay notify indirection Steffen Klassert
2021-06-28  5:45 ` [PATCH 14/17] xfrm: replay: remove advance indirection Steffen Klassert
2021-06-28  5:45 ` [PATCH 15/17] xfrm: replay: remove recheck indirection Steffen Klassert
2021-06-28  5:45 ` [PATCH 16/17] xfrm: replay: avoid replay indirection Steffen Klassert
2021-06-28  5:45 ` [PATCH 17/17] xfrm: replay: remove last " Steffen Klassert
2021-06-28 20:40 ` pull request (net-next): ipsec-next 2021-06-28 patchwork-bot+netdevbpf

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.