mbox series

[net-next,v2,0/3] icmp6: support rfc 4884

Message ID 20200724130310.788305-1-willemdebruijn.kernel@gmail.com
Headers show
Series icmp6: support rfc 4884 | expand

Message

Willem de Bruijn July 24, 2020, 1:03 p.m. UTC
From: Willem de Bruijn <willemb@google.com>

Extend the feature merged earlier this week for IPv4 to IPv6.

I expected this to be a single patch, but patch 1 seemed better to be
stand-alone

patch 1: small fix in length calculation
patch 2: factor out ipv4-specific
patch 3: add ipv6

changes v1->v2: add missing static keyword in patch 3

Willem de Bruijn (3):
  icmp: revise rfc4884 tests
  icmp: prepare rfc 4884 for ipv6
  icmp6: support rfc 4884

 include/linux/icmp.h        |  3 ++-
 include/linux/ipv6.h        |  1 +
 include/uapi/linux/icmpv6.h |  1 +
 include/uapi/linux/in6.h    |  1 +
 net/ipv4/icmp.c             | 26 +++++++-------------------
 net/ipv4/ip_sockglue.c      | 14 +++++++++++++-
 net/ipv6/datagram.c         | 16 ++++++++++++++++
 net/ipv6/ipv6_sockglue.c    | 12 ++++++++++++
 8 files changed, 53 insertions(+), 21 deletions(-)

Comments

David Miller July 25, 2020, 12:12 a.m. UTC | #1
From: Willem de Bruijn <willemdebruijn.kernel@gmail.com>
Date: Fri, 24 Jul 2020 09:03:07 -0400

> From: Willem de Bruijn <willemb@google.com>
> 
> Extend the feature merged earlier this week for IPv4 to IPv6.
> 
> I expected this to be a single patch, but patch 1 seemed better to be
> stand-alone
> 
> patch 1: small fix in length calculation
> patch 2: factor out ipv4-specific
> patch 3: add ipv6
> 
> changes v1->v2: add missing static keyword in patch 3

Series applied, thanks Willem.