public inbox for netdev@vger.kernel.org 
 help / color / mirror / Atom feed
From: patchwork-bot+netdevbpf@kernel•org
To: Pablo Neira Ayuso <pablo@netfilter•org>
Cc: netfilter-devel@vger•kernel.org, davem@davemloft•net,
	netdev@vger•kernel.org, kuba@kernel•org, pabeni@redhat•com,
	edumazet@google•com, fw@strlen•de, horms@kernel•org
Subject: Re: [PATCH net-next 01/15] ipvs: add conn_max sysctl to limit connections
Date: Mon, 08 Jun 2026 22:40:26 +0000	[thread overview]
Message-ID: <178095842640.1698449.18158593378133036098.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20260607094954.48892-2-pablo@netfilter.org>

Hello:

This series was applied to netdev/net-next.git (main)
by Pablo Neira Ayuso <pablo@netfilter•org>:

On Sun,  7 Jun 2026 11:49:40 +0200 you wrote:
> From: Julian Anastasov <ja@ssi•bg>
> 
> Currently, we are using atomic_t to track the number of
> connections. On 64-bit setups with large memory there is
> a risk this counter to overflow. Also, setups with many
> containers may need to tune the limit for connections.
> 
> [...]

Here is the summary with links:
  - [net-next,01/15] ipvs: add conn_max sysctl to limit connections
    https://git.kernel.org/netdev/net-next/c/4a15044a2b06
  - [net-next,02/15] netfilter: nfnetlink_osf: fix mss parsing on big-endian architectures
    https://git.kernel.org/netdev/net-next/c/a625c94144c9
  - [net-next,03/15] netfilter: nfnetlink_cthelper: use {READ,WRITE}_ONCE for accessing helper flags
    https://git.kernel.org/netdev/net-next/c/f8bf5edf7157
  - [net-next,04/15] netfilter: synproxy: drop packets if timestamp adjustment fails
    https://git.kernel.org/netdev/net-next/c/63d29ee95c4a
  - [net-next,05/15] netfilter: synproxy: adjust duplicate timestamp options
    https://git.kernel.org/netdev/net-next/c/22bb132cfb9b
  - [net-next,06/15] netfilter: synproxy: fix unaligned memory access in timestamp adjustment
    https://git.kernel.org/netdev/net-next/c/992c20bc8a4a
  - [net-next,07/15] netfilter: synproxy: protect nf_ct_seqadj_init() with conntrack lock
    https://git.kernel.org/netdev/net-next/c/9e37388b8070
  - [net-next,08/15] netfilter: cttimeout: detach dataplane timeout policy and repurpose refcount
    https://git.kernel.org/netdev/net-next/c/7d6a9cdb8d3a
  - [net-next,09/15] netfilter: nf_conntrack_helper: dynamically allocate struct nf_conntrack_helper
    https://git.kernel.org/netdev/net-next/c/6031487d4e27
  - [net-next,10/15] netfilter: nf_conntrack_pptp: move GRE specific cleanup to GRE tracker
    https://git.kernel.org/netdev/net-next/c/fe97fd540a03
  - [net-next,11/15] netfilter: nf_conntrack_helper: add refcounting from datapath
    https://git.kernel.org/netdev/net-next/c/ac46f3f35b6e
  - [net-next,12/15] netfilter: conntrack: revert ct extension genid infrastructure
    https://git.kernel.org/netdev/net-next/c/35e21a4dccc5
  - [net-next,13/15] netfilter: conntrack: call nf_ct_gre_keymap_destroy() if master helper is pptp
    https://git.kernel.org/netdev/net-next/c/b0f02608fbcd
  - [net-next,14/15] netfilter: flowtable: avoid num_encaps underflow on bridge VLAN untag
    https://git.kernel.org/netdev/net-next/c/e052f920773b
  - [net-next,15/15] netfilter: nf_conntrack: use get_unaligned_be32() in tcp_sack()
    https://git.kernel.org/netdev/net-next/c/d3bf9eae4864

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



  reply	other threads:[~2026-06-08 22:40 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-06-07  9:49 [PATCH net-next 00/15] Netfilter/IPVS updates for net-next Pablo Neira Ayuso
2026-06-07  9:49 ` [PATCH net-next 01/15] ipvs: add conn_max sysctl to limit connections Pablo Neira Ayuso
2026-06-08 22:40   ` patchwork-bot+netdevbpf [this message]
2026-06-07  9:49 ` [PATCH net-next 02/15] netfilter: nfnetlink_osf: fix mss parsing on big-endian architectures Pablo Neira Ayuso
2026-06-07  9:49 ` [PATCH net-next 03/15] netfilter: nfnetlink_cthelper: use {READ,WRITE}_ONCE for accessing helper flags Pablo Neira Ayuso
2026-06-07  9:49 ` [PATCH net-next 04/15] netfilter: synproxy: drop packets if timestamp adjustment fails Pablo Neira Ayuso
2026-06-07  9:49 ` [PATCH net-next 05/15] netfilter: synproxy: adjust duplicate timestamp options Pablo Neira Ayuso
2026-06-07  9:49 ` [PATCH net-next 06/15] netfilter: synproxy: fix unaligned memory access in timestamp adjustment Pablo Neira Ayuso
2026-06-07  9:49 ` [PATCH net-next 07/15] netfilter: synproxy: protect nf_ct_seqadj_init() with conntrack lock Pablo Neira Ayuso
2026-06-07  9:49 ` [PATCH net-next 08/15] netfilter: cttimeout: detach dataplane timeout policy and repurpose refcount Pablo Neira Ayuso
2026-06-08 22:30   ` Pablo Neira Ayuso
2026-06-08 22:57     ` Jakub Kicinski
2026-06-08 23:13       ` Pablo Neira Ayuso
2026-06-07  9:49 ` [PATCH net-next 09/15] netfilter: nf_conntrack_helper: dynamically allocate struct nf_conntrack_helper Pablo Neira Ayuso
2026-06-07  9:49 ` [PATCH net-next 10/15] netfilter: nf_conntrack_pptp: move GRE specific cleanup to GRE tracker Pablo Neira Ayuso
2026-06-07  9:49 ` [PATCH net-next 11/15] netfilter: nf_conntrack_helper: add refcounting from datapath Pablo Neira Ayuso
2026-06-07  9:49 ` [PATCH net-next 12/15] netfilter: conntrack: revert ct extension genid infrastructure Pablo Neira Ayuso
2026-06-07  9:49 ` [PATCH net-next 13/15] netfilter: conntrack: call nf_ct_gre_keymap_destroy() if master helper is pptp Pablo Neira Ayuso
2026-06-07  9:49 ` [PATCH net-next 14/15] netfilter: flowtable: avoid num_encaps underflow on bridge VLAN untag Pablo Neira Ayuso
2026-06-07  9:49 ` [PATCH net-next 15/15] netfilter: nf_conntrack: use get_unaligned_be32() in tcp_sack() Pablo Neira Ayuso
2026-06-08 11:58 ` [PATCH net-next 00/15] Netfilter/IPVS updates for net-next Pablo Neira Ayuso
2026-06-08 22:39   ` Pablo Neira Ayuso

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=178095842640.1698449.18158593378133036098.git-patchwork-notify@kernel.org \
    --to=patchwork-bot+netdevbpf@kernel$(echo .)org \
    --cc=davem@davemloft$(echo .)net \
    --cc=edumazet@google$(echo .)com \
    --cc=fw@strlen$(echo .)de \
    --cc=horms@kernel$(echo .)org \
    --cc=kuba@kernel$(echo .)org \
    --cc=netdev@vger$(echo .)kernel.org \
    --cc=netfilter-devel@vger$(echo .)kernel.org \
    --cc=pabeni@redhat$(echo .)com \
    --cc=pablo@netfilter$(echo .)org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html
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