netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: patchwork-bot+netdevbpf@kernel.org
To: Jakub Kicinski <kuba@kernel.org>
Cc: davem@davemloft.net, netdev@vger.kernel.org, willemb@google.com,
	lorenzo@google.com, maze@google.com, dsahern@kernel.org,
	yoshfuji@linux-ipv6.org, shuah@kernel.org,
	linux-kselftest@vger.kernel.org
Subject: Re: [PATCH net-next 00/11] net: ping6: support basic socket cmsgs
Date: Thu, 10 Feb 2022 15:30:11 +0000	[thread overview]
Message-ID: <164450701125.11192.3528047051168402424.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20220210003649.3120861-1-kuba@kernel.org>

Hello:

This series was applied to netdev/net-next.git (master)
by David S. Miller <davem@davemloft.net>:

On Wed,  9 Feb 2022 16:36:38 -0800 you wrote:
> Add support for common SOL_SOCKET cmsgs in ICMPv6 sockets.
> Extend the cmsg tests to cover more cmsgs and socket types.
> 
> SOL_IPV6 cmsgs to follow.
> 
> Jakub Kicinski (11):
>   net: ping6: remove a pr_debug() statement
>   net: ping6: support packet timestamping
>   net: ping6: support setting socket options via cmsg
>   selftests: net: rename cmsg_so_mark
>   selftests: net: make cmsg_so_mark ready for more options
>   selftests: net: cmsg_sender: support icmp and raw sockets
>   selftests: net: cmsg_so_mark: test ICMP and RAW sockets
>   selftests: net: cmsg_so_mark: test with SO_MARK set by setsockopt
>   selftests: net: cmsg_sender: support setting SO_TXTIME
>   selftests: net: cmsg_sender: support Tx timestamping
>   selftests: net: test standard socket cmsgs across UDP and ICMP sockets
> 
> [...]

Here is the summary with links:
  - [net-next,01/11] net: ping6: remove a pr_debug() statement
    https://git.kernel.org/netdev/net-next/c/426522394649
  - [net-next,02/11] net: ping6: support packet timestamping
    https://git.kernel.org/netdev/net-next/c/e7b060460f29
  - [net-next,03/11] net: ping6: support setting socket options via cmsg
    https://git.kernel.org/netdev/net-next/c/3ebb0b1032e5
  - [net-next,04/11] selftests: net: rename cmsg_so_mark
    https://git.kernel.org/netdev/net-next/c/a086ee24cce2
  - [net-next,05/11] selftests: net: make cmsg_so_mark ready for more options
    https://git.kernel.org/netdev/net-next/c/49b786130296
  - [net-next,06/11] selftests: net: cmsg_sender: support icmp and raw sockets
    https://git.kernel.org/netdev/net-next/c/de17e305a810
  - [net-next,07/11] selftests: net: cmsg_so_mark: test ICMP and RAW sockets
    https://git.kernel.org/netdev/net-next/c/0344488e11ca
  - [net-next,08/11] selftests: net: cmsg_so_mark: test with SO_MARK set by setsockopt
    https://git.kernel.org/netdev/net-next/c/9bbfbc92c64a
  - [net-next,09/11] selftests: net: cmsg_sender: support setting SO_TXTIME
    https://git.kernel.org/netdev/net-next/c/4d397424a5e0
  - [net-next,10/11] selftests: net: cmsg_sender: support Tx timestamping
    https://git.kernel.org/netdev/net-next/c/eb8f3116fb3f
  - [net-next,11/11] selftests: net: test standard socket cmsgs across UDP and ICMP sockets
    https://git.kernel.org/netdev/net-next/c/af6ca20591ef

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



  parent reply	other threads:[~2022-02-10 15:30 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-02-10  0:36 [PATCH net-next 00/11] net: ping6: support basic socket cmsgs Jakub Kicinski
2022-02-10  0:36 ` [PATCH net-next 01/11] net: ping6: remove a pr_debug() statement Jakub Kicinski
2022-02-10  5:30   ` David Ahern
2022-02-10  0:36 ` [PATCH net-next 02/11] net: ping6: support packet timestamping Jakub Kicinski
2022-02-10  0:44   ` Maciej Żenczykowski
2022-02-10  2:17     ` Jakub Kicinski
2022-02-10  5:30   ` David Ahern
2022-02-10  0:36 ` [PATCH net-next 03/11] net: ping6: support setting socket options via cmsg Jakub Kicinski
2022-02-10  5:30   ` David Ahern
2022-02-10  0:36 ` [PATCH net-next 04/11] selftests: net: rename cmsg_so_mark Jakub Kicinski
2022-02-10  0:36 ` [PATCH net-next 05/11] selftests: net: make cmsg_so_mark ready for more options Jakub Kicinski
2022-02-10  0:36 ` [PATCH net-next 06/11] selftests: net: cmsg_sender: support icmp and raw sockets Jakub Kicinski
2022-02-10  0:36 ` [PATCH net-next 07/11] selftests: net: cmsg_so_mark: test ICMP and RAW sockets Jakub Kicinski
2022-02-10  0:36 ` [PATCH net-next 08/11] selftests: net: cmsg_so_mark: test with SO_MARK set by setsockopt Jakub Kicinski
2022-02-10  0:36 ` [PATCH net-next 09/11] selftests: net: cmsg_sender: support setting SO_TXTIME Jakub Kicinski
2022-02-10  0:36 ` [PATCH net-next 10/11] selftests: net: cmsg_sender: support Tx timestamping Jakub Kicinski
2022-02-10  0:36 ` [PATCH net-next 11/11] selftests: net: test standard socket cmsgs across UDP and ICMP sockets Jakub Kicinski
2022-02-10 15:30 ` patchwork-bot+netdevbpf [this message]
2022-02-10 16:08 ` [PATCH net-next 00/11] net: ping6: support basic socket cmsgs Willem de Bruijn

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=164450701125.11192.3528047051168402424.git-patchwork-notify@kernel.org \
    --to=patchwork-bot+netdevbpf@kernel.org \
    --cc=davem@davemloft.net \
    --cc=dsahern@kernel.org \
    --cc=kuba@kernel.org \
    --cc=linux-kselftest@vger.kernel.org \
    --cc=lorenzo@google.com \
    --cc=maze@google.com \
    --cc=netdev@vger.kernel.org \
    --cc=shuah@kernel.org \
    --cc=willemb@google.com \
    --cc=yoshfuji@linux-ipv6.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).