BPF List
 help / color / mirror / Atom feed
* pull-request: bpf-next 2025-03-13
@ 2025-03-13 22:16 Martin KaFai Lau
  2025-03-20 17:54 ` Jason Xing
  2025-03-20 21:01 ` patchwork-bot+netdevbpf
  0 siblings, 2 replies; 3+ messages in thread
From: Martin KaFai Lau @ 2025-03-13 22:16 UTC (permalink / raw)
  To: David Miller, Jakub Kicinski, Eric Dumazet, Paolo Abeni
  Cc: Alexei Starovoitov, Andrii Nakryiko, Daniel Borkmann,
	Martin KaFai Lau, netdev, bpf

Hi David, hi Jakub, hi Paolo, hi Eric,

The following pull-request contains BPF updates for your *net-next* tree.

We've added 4 non-merge commits during the last 3 day(s) which contain
a total of 2 files changed, 35 insertions(+), 12 deletions(-).

The main changes are:

1) bpf_getsockopt support for TCP_BPF_RTO_MIN and TCP_BPF_DELACK_MAX,
   from Jason Xing

Please consider pulling these changes from:

  git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git tags/for-netdev

Thanks a lot!

----------------------------------------------------------------

The following changes since commit 6d99faf2541d519ec30a104d6b585484563e2c45:

  Merge branch 'net-ti-icssg-prueth-add-native-mode-xdp-support' (2025-03-11 11:10:16 +0100)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git tags/for-netdev

for you to fetch changes up to c468c8d299341adf348f1d9cfaacca3cb4f91003:

  Merge branch 'tcp-add-some-rto-min-and-delack-max-bpf_getsockopt-supports' (2025-03-13 14:43:15 -0700)

----------------------------------------------------------------
bpf-next-for-netdev

----------------------------------------------------------------
Jason Xing (4):
      tcp: bpf: Introduce bpf_sol_tcp_getsockopt to support TCP_BPF flags
      tcp: bpf: Support bpf_getsockopt for TCP_BPF_RTO_MIN
      tcp: bpf: Support bpf_getsockopt for TCP_BPF_DELACK_MAX
      selftests/bpf: Add bpf_getsockopt() for TCP_BPF_DELACK_MAX and TCP_BPF_RTO_MIN

Martin KaFai Lau (1):
      Merge branch 'tcp-add-some-rto-min-and-delack-max-bpf_getsockopt-supports'

 net/core/filter.c                                  | 45 ++++++++++++++++------
 tools/testing/selftests/bpf/progs/setget_sockopt.c |  2 +
 2 files changed, 35 insertions(+), 12 deletions(-)

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

* Re: pull-request: bpf-next 2025-03-13
  2025-03-13 22:16 pull-request: bpf-next 2025-03-13 Martin KaFai Lau
@ 2025-03-20 17:54 ` Jason Xing
  2025-03-20 21:01 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 3+ messages in thread
From: Jason Xing @ 2025-03-20 17:54 UTC (permalink / raw)
  To: Martin KaFai Lau
  Cc: David Miller, Jakub Kicinski, Eric Dumazet, Paolo Abeni,
	Alexei Starovoitov, Andrii Nakryiko, Daniel Borkmann,
	Martin KaFai Lau, netdev, bpf

On Fri, Mar 14, 2025 at 5:16 AM Martin KaFai Lau <martin.lau@linux.dev> wrote:
>
> Hi David, hi Jakub, hi Paolo, hi Eric,
>
> The following pull-request contains BPF updates for your *net-next* tree.
>
> We've added 4 non-merge commits during the last 3 day(s) which contain
> a total of 2 files changed, 35 insertions(+), 12 deletions(-).
>
> The main changes are:
>
> 1) bpf_getsockopt support for TCP_BPF_RTO_MIN and TCP_BPF_DELACK_MAX,
>    from Jason Xing
>
> Please consider pulling these changes from:
>
>   git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git tags/for-netdev
>
> Thanks a lot!
>
> ----------------------------------------------------------------
>
> The following changes since commit 6d99faf2541d519ec30a104d6b585484563e2c45:
>
>   Merge branch 'net-ti-icssg-prueth-add-native-mode-xdp-support' (2025-03-11 11:10:16 +0100)
>
> are available in the Git repository at:
>
>   https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git tags/for-netdev
>
> for you to fetch changes up to c468c8d299341adf348f1d9cfaacca3cb4f91003:
>
>   Merge branch 'tcp-add-some-rto-min-and-delack-max-bpf_getsockopt-supports' (2025-03-13 14:43:15 -0700)
>
> ----------------------------------------------------------------
> bpf-next-for-netdev
>
> ----------------------------------------------------------------
> Jason Xing (4):
>       tcp: bpf: Introduce bpf_sol_tcp_getsockopt to support TCP_BPF flags
>       tcp: bpf: Support bpf_getsockopt for TCP_BPF_RTO_MIN
>       tcp: bpf: Support bpf_getsockopt for TCP_BPF_DELACK_MAX
>       selftests/bpf: Add bpf_getsockopt() for TCP_BPF_DELACK_MAX and TCP_BPF_RTO_MIN
>
> Martin KaFai Lau (1):
>       Merge branch 'tcp-add-some-rto-min-and-delack-max-bpf_getsockopt-supports'
>
>  net/core/filter.c                                  | 45 ++++++++++++++++------
>  tools/testing/selftests/bpf/progs/setget_sockopt.c |  2 +
>  2 files changed, 35 insertions(+), 12 deletions(-)
>

Hi maintainers,

No rush actually. I'm just noticing this patchset might be forgotten.
(kindly reminder here.)

Thanks,
Jason

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

* Re: pull-request: bpf-next 2025-03-13
  2025-03-13 22:16 pull-request: bpf-next 2025-03-13 Martin KaFai Lau
  2025-03-20 17:54 ` Jason Xing
@ 2025-03-20 21:01 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2025-03-20 21:01 UTC (permalink / raw)
  To: Martin KaFai Lau
  Cc: davem, kuba, edumazet, pabeni, ast, andrii, daniel, martin.lau,
	netdev, bpf

Hello:

This pull request was applied to netdev/net-next.git (main)
by Paolo Abeni <pabeni@redhat.com>:

On Thu, 13 Mar 2025 15:16:20 -0700 you wrote:
> Hi David, hi Jakub, hi Paolo, hi Eric,
> 
> The following pull-request contains BPF updates for your *net-next* tree.
> 
> We've added 4 non-merge commits during the last 3 day(s) which contain
> a total of 2 files changed, 35 insertions(+), 12 deletions(-).
> 
> [...]

Here is the summary with links:
  - pull-request: bpf-next 2025-03-13
    https://git.kernel.org/netdev/net-next/c/6f13bec53a48

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



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

end of thread, other threads:[~2025-03-20 21:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-13 22:16 pull-request: bpf-next 2025-03-13 Martin KaFai Lau
2025-03-20 17:54 ` Jason Xing
2025-03-20 21:01 ` patchwork-bot+netdevbpf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox