From: patchwork-bot+netdevbpf@kernel.org
To: Kuniyuki Iwashima <kuniyu@amazon.com>
Cc: davem@davemloft.net, edumazet@google.com, kuba@kernel.org,
pabeni@redhat.com, kuni1840@gmail.com, netdev@vger.kernel.org
Subject: Re: [PATCH v4 net 00/17] net: sysctl: Fix data-races around net.core.XXX
Date: Wed, 24 Aug 2022 13:00:20 +0000 [thread overview]
Message-ID: <166134602077.6797.12204234347972679946.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20220823174700.88411-1-kuniyu@amazon.com>
Hello:
This series was applied to netdev/net.git (master)
by David S. Miller <davem@davemloft.net>:
On Tue, 23 Aug 2022 10:46:43 -0700 you wrote:
> This series fixes data-races around all knobs in net_core_table and
> netns_core_table except for bpf stuff.
>
> These knobs are skipped:
>
> - 4 bpf knobs
> - netdev_rss_key: Written only once by net_get_random_once() and
> read-only knob
> - rps_sock_flow_entries: Protected with sock_flow_mutex
> - flow_limit_cpu_bitmap: Protected with flow_limit_update_mutex
> - flow_limit_table_len: Protected with flow_limit_update_mutex
> - default_qdisc: Protected with qdisc_mod_lock
> - warnings: Unused
> - high_order_alloc_disable: Protected with static_key_mutex
> - skb_defer_max: Already using READ_ONCE()
> - sysctl_txrehash: Already using READ_ONCE()
>
> [...]
Here is the summary with links:
- [v4,net,01/17] net: Fix data-races around sysctl_[rw]mem_(max|default).
https://git.kernel.org/netdev/net/c/1227c1771dd2
- [v4,net,02/17] net: Fix data-races around weight_p and dev_weight_[rt]x_bias.
https://git.kernel.org/netdev/net/c/bf955b5ab8f6
- [v4,net,03/17] net: Fix data-races around netdev_max_backlog.
https://git.kernel.org/netdev/net/c/5dcd08cd1991
- [v4,net,04/17] net: Fix data-races around netdev_tstamp_prequeue.
https://git.kernel.org/netdev/net/c/61adf447e386
- [v4,net,05/17] ratelimit: Fix data-races in ___ratelimit().
https://git.kernel.org/netdev/net/c/6bae8ceb90ba
- [v4,net,06/17] net: Fix data-races around sysctl_optmem_max.
https://git.kernel.org/netdev/net/c/7de6d09f5191
- [v4,net,07/17] net: Fix a data-race around sysctl_tstamp_allow_data.
https://git.kernel.org/netdev/net/c/d2154b0afa73
- [v4,net,08/17] net: Fix a data-race around sysctl_net_busy_poll.
https://git.kernel.org/netdev/net/c/c42b7cddea47
- [v4,net,09/17] net: Fix a data-race around sysctl_net_busy_read.
https://git.kernel.org/netdev/net/c/e59ef36f0795
- [v4,net,10/17] net: Fix a data-race around netdev_budget.
https://git.kernel.org/netdev/net/c/2e0c42374ee3
- [v4,net,11/17] net: Fix data-races around sysctl_max_skb_frags.
https://git.kernel.org/netdev/net/c/657b991afb89
- [v4,net,12/17] net: Fix a data-race around netdev_budget_usecs.
https://git.kernel.org/netdev/net/c/fa45d484c52c
- [v4,net,13/17] net: Fix data-races around sysctl_fb_tunnels_only_for_init_net.
https://git.kernel.org/netdev/net/c/af67508ea6cb
- [v4,net,14/17] net: Fix data-races around sysctl_devconf_inherit_init_net.
https://git.kernel.org/netdev/net/c/a5612ca10d1a
- [v4,net,15/17] net: Fix a data-race around gro_normal_batch.
https://git.kernel.org/netdev/net/c/8db24af3f02e
- [v4,net,16/17] net: Fix a data-race around netdev_unregister_timeout_secs.
https://git.kernel.org/netdev/net/c/05e49cfc89e4
- [v4,net,17/17] net: Fix a data-race around sysctl_somaxconn.
https://git.kernel.org/netdev/net/c/3c9ba81d7204
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
prev parent reply other threads:[~2022-08-24 13:01 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-08-23 17:46 [PATCH v4 net 00/17] net: sysctl: Fix data-races around net.core.XXX Kuniyuki Iwashima
2022-08-23 17:46 ` [PATCH v4 net 01/17] net: Fix data-races around sysctl_[rw]mem_(max|default) Kuniyuki Iwashima
2022-08-23 17:46 ` [PATCH v4 net 02/17] net: Fix data-races around weight_p and dev_weight_[rt]x_bias Kuniyuki Iwashima
2022-08-23 17:46 ` [PATCH v4 net 03/17] net: Fix data-races around netdev_max_backlog Kuniyuki Iwashima
2022-08-23 17:46 ` [PATCH v4 net 04/17] net: Fix data-races around netdev_tstamp_prequeue Kuniyuki Iwashima
2022-08-23 17:46 ` [PATCH v4 net 05/17] ratelimit: Fix data-races in ___ratelimit() Kuniyuki Iwashima
2022-08-23 17:46 ` [PATCH v4 net 06/17] net: Fix data-races around sysctl_optmem_max Kuniyuki Iwashima
2022-08-23 17:46 ` [PATCH v4 net 07/17] net: Fix a data-race around sysctl_tstamp_allow_data Kuniyuki Iwashima
2022-08-23 17:46 ` [PATCH v4 net 08/17] net: Fix a data-race around sysctl_net_busy_poll Kuniyuki Iwashima
2022-08-23 17:46 ` [PATCH v4 net 09/17] net: Fix a data-race around sysctl_net_busy_read Kuniyuki Iwashima
2022-08-23 17:46 ` [PATCH v4 net 10/17] net: Fix a data-race around netdev_budget Kuniyuki Iwashima
2022-08-23 17:46 ` [PATCH v4 net 11/17] net: Fix data-races around sysctl_max_skb_frags Kuniyuki Iwashima
2022-08-23 17:46 ` [PATCH v4 net 12/17] net: Fix a data-race around netdev_budget_usecs Kuniyuki Iwashima
2022-08-23 17:46 ` [PATCH v4 net 13/17] net: Fix data-races around sysctl_fb_tunnels_only_for_init_net Kuniyuki Iwashima
2022-08-23 17:46 ` [PATCH v4 net 14/17] net: Fix data-races around sysctl_devconf_inherit_init_net Kuniyuki Iwashima
2022-08-23 17:46 ` [PATCH v4 net 15/17] net: Fix a data-race around gro_normal_batch Kuniyuki Iwashima
2022-08-23 17:46 ` [PATCH v4 net 16/17] net: Fix a data-race around netdev_unregister_timeout_secs Kuniyuki Iwashima
2022-08-23 17:47 ` [PATCH v4 net 17/17] net: Fix a data-race around sysctl_somaxconn Kuniyuki Iwashima
2022-08-24 13:00 ` patchwork-bot+netdevbpf [this message]
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=166134602077.6797.12204234347972679946.git-patchwork-notify@kernel.org \
--to=patchwork-bot+netdevbpf@kernel.org \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=kuba@kernel.org \
--cc=kuni1840@gmail.com \
--cc=kuniyu@amazon.com \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
/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 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.