From: Your Name <you@example.com>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: stable@vger.kernel.org, patches@lists.linux.dev,
Eric Dumazet <edumazet@google.com>,
"David S. Miller" <davem@davemloft.net>,
Sasha Levin <sashal@kernel.org>
Subject: Re: [PATCH 5.10 076/124] tcp: convert elligible sysctls to u8
Date: Fri, 9 Jun 2023 21:51:50 +0300 [thread overview]
Message-ID: <20230609185150.kwpdc3fefcfeviny@sole.flsd.net> (raw)
In-Reply-To: <20230418120312.629258550@linuxfoundation.org>
Greg,
On Tue, Apr 18, 2023 at 02:21:35PM +0200, Greg Kroah-Hartman wrote:
> From: Eric Dumazet <edumazet@google.com>
>
> [ Upstream commit 4ecc1baf362c5df2dcabe242511e38ee28486545 ]
>
> Many tcp sysctls are either bools or small ints that can fit into u8.
>
> Reducing space taken by sysctls can save few cache line misses
> when sending/receiving data while cpu caches are empty,
> for example after cpu idle period.
>
> This is hard to measure with typical network performance tests,
> but after this patch, struct netns_ipv4 has shrunk
> by three cache lines.
This commit in 5.10 needs fix from d24f511b04b8 ("tcp: fix
tcp_min_tso_segs sysctl") which have incorrectly set commit id in Fixes
tag. (Perhaps, that's why it's missed.)
Fixes: 47996b489bdc ("tcp: convert elligible sysctls to u8")
Thanks,
>
> Signed-off-by: Eric Dumazet <edumazet@google.com>
> Signed-off-by: David S. Miller <davem@davemloft.net>
> Stable-dep-of: dc5110c2d959 ("tcp: restrict net.ipv4.tcp_app_win")
> Signed-off-by: Sasha Levin <sashal@kernel.org>
> ---
> include/net/netns/ipv4.h | 68 +++++++++----------
> net/ipv4/sysctl_net_ipv4.c | 136 ++++++++++++++++++-------------------
> 2 files changed, 102 insertions(+), 102 deletions(-)
>
> diff --git a/include/net/netns/ipv4.h b/include/net/netns/ipv4.h
> index 92e3d8fe954ab..d8b320cf54ba0 100644
> --- a/include/net/netns/ipv4.h
> +++ b/include/net/netns/ipv4.h
> @@ -114,11 +114,11 @@ struct netns_ipv4 {
> u8 sysctl_nexthop_compat_mode;
>
> u8 sysctl_fwmark_reflect;
> - int sysctl_tcp_fwmark_accept;
> + u8 sysctl_tcp_fwmark_accept;
> #ifdef CONFIG_NET_L3_MASTER_DEV
> - int sysctl_tcp_l3mdev_accept;
> + u8 sysctl_tcp_l3mdev_accept;
> #endif
> - int sysctl_tcp_mtu_probing;
> + u8 sysctl_tcp_mtu_probing;
> int sysctl_tcp_mtu_probe_floor;
> int sysctl_tcp_base_mss;
> int sysctl_tcp_min_snd_mss;
> @@ -126,46 +126,47 @@ struct netns_ipv4 {
> u32 sysctl_tcp_probe_interval;
>
> int sysctl_tcp_keepalive_time;
> - int sysctl_tcp_keepalive_probes;
> int sysctl_tcp_keepalive_intvl;
> + u8 sysctl_tcp_keepalive_probes;
>
> - int sysctl_tcp_syn_retries;
> - int sysctl_tcp_synack_retries;
> - int sysctl_tcp_syncookies;
> + u8 sysctl_tcp_syn_retries;
> + u8 sysctl_tcp_synack_retries;
> + u8 sysctl_tcp_syncookies;
> int sysctl_tcp_reordering;
> - int sysctl_tcp_retries1;
> - int sysctl_tcp_retries2;
> - int sysctl_tcp_orphan_retries;
> + u8 sysctl_tcp_retries1;
> + u8 sysctl_tcp_retries2;
> + u8 sysctl_tcp_orphan_retries;
> + u8 sysctl_tcp_tw_reuse;
> int sysctl_tcp_fin_timeout;
> unsigned int sysctl_tcp_notsent_lowat;
> - int sysctl_tcp_tw_reuse;
> - int sysctl_tcp_sack;
> - int sysctl_tcp_window_scaling;
> - int sysctl_tcp_timestamps;
> - int sysctl_tcp_early_retrans;
> - int sysctl_tcp_recovery;
> - int sysctl_tcp_thin_linear_timeouts;
> - int sysctl_tcp_slow_start_after_idle;
> - int sysctl_tcp_retrans_collapse;
> - int sysctl_tcp_stdurg;
> - int sysctl_tcp_rfc1337;
> - int sysctl_tcp_abort_on_overflow;
> - int sysctl_tcp_fack;
> + u8 sysctl_tcp_sack;
> + u8 sysctl_tcp_window_scaling;
> + u8 sysctl_tcp_timestamps;
> + u8 sysctl_tcp_early_retrans;
> + u8 sysctl_tcp_recovery;
> + u8 sysctl_tcp_thin_linear_timeouts;
> + u8 sysctl_tcp_slow_start_after_idle;
> + u8 sysctl_tcp_retrans_collapse;
> + u8 sysctl_tcp_stdurg;
> + u8 sysctl_tcp_rfc1337;
> + u8 sysctl_tcp_abort_on_overflow;
> + u8 sysctl_tcp_fack; /* obsolete */
> int sysctl_tcp_max_reordering;
> - int sysctl_tcp_dsack;
> - int sysctl_tcp_app_win;
> int sysctl_tcp_adv_win_scale;
> - int sysctl_tcp_frto;
> - int sysctl_tcp_nometrics_save;
> - int sysctl_tcp_no_ssthresh_metrics_save;
> - int sysctl_tcp_moderate_rcvbuf;
> - int sysctl_tcp_tso_win_divisor;
> - int sysctl_tcp_workaround_signed_windows;
> + u8 sysctl_tcp_dsack;
> + u8 sysctl_tcp_app_win;
> + u8 sysctl_tcp_frto;
> + u8 sysctl_tcp_nometrics_save;
> + u8 sysctl_tcp_no_ssthresh_metrics_save;
> + u8 sysctl_tcp_moderate_rcvbuf;
> + u8 sysctl_tcp_tso_win_divisor;
> + u8 sysctl_tcp_workaround_signed_windows;
> int sysctl_tcp_limit_output_bytes;
> int sysctl_tcp_challenge_ack_limit;
> - int sysctl_tcp_min_tso_segs;
> int sysctl_tcp_min_rtt_wlen;
> - int sysctl_tcp_autocorking;
> + u8 sysctl_tcp_min_tso_segs;
> + u8 sysctl_tcp_autocorking;
> + u8 sysctl_tcp_reflect_tos;
> int sysctl_tcp_invalid_ratelimit;
> int sysctl_tcp_pacing_ss_ratio;
> int sysctl_tcp_pacing_ca_ratio;
> @@ -183,7 +184,6 @@ struct netns_ipv4 {
> unsigned int sysctl_tcp_fastopen_blackhole_timeout;
> atomic_t tfo_active_disable_times;
> unsigned long tfo_active_disable_stamp;
> - int sysctl_tcp_reflect_tos;
>
> int sysctl_udp_wmem_min;
> int sysctl_udp_rmem_min;
> diff --git a/net/ipv4/sysctl_net_ipv4.c b/net/ipv4/sysctl_net_ipv4.c
> index cb587bdd683a6..1a2506f795d4e 100644
> --- a/net/ipv4/sysctl_net_ipv4.c
> +++ b/net/ipv4/sysctl_net_ipv4.c
> @@ -720,17 +720,17 @@ static struct ctl_table ipv4_net_table[] = {
> {
> .procname = "tcp_fwmark_accept",
> .data = &init_net.ipv4.sysctl_tcp_fwmark_accept,
> - .maxlen = sizeof(int),
> + .maxlen = sizeof(u8),
> .mode = 0644,
> - .proc_handler = proc_dointvec,
> + .proc_handler = proc_dou8vec_minmax,
> },
> #ifdef CONFIG_NET_L3_MASTER_DEV
> {
> .procname = "tcp_l3mdev_accept",
> .data = &init_net.ipv4.sysctl_tcp_l3mdev_accept,
> - .maxlen = sizeof(int),
> + .maxlen = sizeof(u8),
> .mode = 0644,
> - .proc_handler = proc_dointvec_minmax,
> + .proc_handler = proc_dou8vec_minmax,
> .extra1 = SYSCTL_ZERO,
> .extra2 = SYSCTL_ONE,
> },
> @@ -738,9 +738,9 @@ static struct ctl_table ipv4_net_table[] = {
> {
> .procname = "tcp_mtu_probing",
> .data = &init_net.ipv4.sysctl_tcp_mtu_probing,
> - .maxlen = sizeof(int),
> + .maxlen = sizeof(u8),
> .mode = 0644,
> - .proc_handler = proc_dointvec,
> + .proc_handler = proc_dou8vec_minmax,
> },
> {
> .procname = "tcp_base_mss",
> @@ -842,9 +842,9 @@ static struct ctl_table ipv4_net_table[] = {
> {
> .procname = "tcp_keepalive_probes",
> .data = &init_net.ipv4.sysctl_tcp_keepalive_probes,
> - .maxlen = sizeof(int),
> + .maxlen = sizeof(u8),
> .mode = 0644,
> - .proc_handler = proc_dointvec
> + .proc_handler = proc_dou8vec_minmax,
> },
> {
> .procname = "tcp_keepalive_intvl",
> @@ -856,26 +856,26 @@ static struct ctl_table ipv4_net_table[] = {
> {
> .procname = "tcp_syn_retries",
> .data = &init_net.ipv4.sysctl_tcp_syn_retries,
> - .maxlen = sizeof(int),
> + .maxlen = sizeof(u8),
> .mode = 0644,
> - .proc_handler = proc_dointvec_minmax,
> + .proc_handler = proc_dou8vec_minmax,
> .extra1 = &tcp_syn_retries_min,
> .extra2 = &tcp_syn_retries_max
> },
> {
> .procname = "tcp_synack_retries",
> .data = &init_net.ipv4.sysctl_tcp_synack_retries,
> - .maxlen = sizeof(int),
> + .maxlen = sizeof(u8),
> .mode = 0644,
> - .proc_handler = proc_dointvec
> + .proc_handler = proc_dou8vec_minmax,
> },
> #ifdef CONFIG_SYN_COOKIES
> {
> .procname = "tcp_syncookies",
> .data = &init_net.ipv4.sysctl_tcp_syncookies,
> - .maxlen = sizeof(int),
> + .maxlen = sizeof(u8),
> .mode = 0644,
> - .proc_handler = proc_dointvec
> + .proc_handler = proc_dou8vec_minmax,
> },
> #endif
> {
> @@ -888,24 +888,24 @@ static struct ctl_table ipv4_net_table[] = {
> {
> .procname = "tcp_retries1",
> .data = &init_net.ipv4.sysctl_tcp_retries1,
> - .maxlen = sizeof(int),
> + .maxlen = sizeof(u8),
> .mode = 0644,
> - .proc_handler = proc_dointvec_minmax,
> + .proc_handler = proc_dou8vec_minmax,
> .extra2 = &tcp_retr1_max
> },
> {
> .procname = "tcp_retries2",
> .data = &init_net.ipv4.sysctl_tcp_retries2,
> - .maxlen = sizeof(int),
> + .maxlen = sizeof(u8),
> .mode = 0644,
> - .proc_handler = proc_dointvec
> + .proc_handler = proc_dou8vec_minmax,
> },
> {
> .procname = "tcp_orphan_retries",
> .data = &init_net.ipv4.sysctl_tcp_orphan_retries,
> - .maxlen = sizeof(int),
> + .maxlen = sizeof(u8),
> .mode = 0644,
> - .proc_handler = proc_dointvec
> + .proc_handler = proc_dou8vec_minmax,
> },
> {
> .procname = "tcp_fin_timeout",
> @@ -924,9 +924,9 @@ static struct ctl_table ipv4_net_table[] = {
> {
> .procname = "tcp_tw_reuse",
> .data = &init_net.ipv4.sysctl_tcp_tw_reuse,
> - .maxlen = sizeof(int),
> + .maxlen = sizeof(u8),
> .mode = 0644,
> - .proc_handler = proc_dointvec_minmax,
> + .proc_handler = proc_dou8vec_minmax,
> .extra1 = SYSCTL_ZERO,
> .extra2 = &two,
> },
> @@ -1012,88 +1012,88 @@ static struct ctl_table ipv4_net_table[] = {
> {
> .procname = "tcp_sack",
> .data = &init_net.ipv4.sysctl_tcp_sack,
> - .maxlen = sizeof(int),
> + .maxlen = sizeof(u8),
> .mode = 0644,
> - .proc_handler = proc_dointvec
> + .proc_handler = proc_dou8vec_minmax,
> },
> {
> .procname = "tcp_window_scaling",
> .data = &init_net.ipv4.sysctl_tcp_window_scaling,
> - .maxlen = sizeof(int),
> + .maxlen = sizeof(u8),
> .mode = 0644,
> - .proc_handler = proc_dointvec
> + .proc_handler = proc_dou8vec_minmax,
> },
> {
> .procname = "tcp_timestamps",
> .data = &init_net.ipv4.sysctl_tcp_timestamps,
> - .maxlen = sizeof(int),
> + .maxlen = sizeof(u8),
> .mode = 0644,
> - .proc_handler = proc_dointvec
> + .proc_handler = proc_dou8vec_minmax,
> },
> {
> .procname = "tcp_early_retrans",
> .data = &init_net.ipv4.sysctl_tcp_early_retrans,
> - .maxlen = sizeof(int),
> + .maxlen = sizeof(u8),
> .mode = 0644,
> - .proc_handler = proc_dointvec_minmax,
> + .proc_handler = proc_dou8vec_minmax,
> .extra1 = SYSCTL_ZERO,
> .extra2 = &four,
> },
> {
> .procname = "tcp_recovery",
> .data = &init_net.ipv4.sysctl_tcp_recovery,
> - .maxlen = sizeof(int),
> + .maxlen = sizeof(u8),
> .mode = 0644,
> - .proc_handler = proc_dointvec,
> + .proc_handler = proc_dou8vec_minmax,
> },
> {
> .procname = "tcp_thin_linear_timeouts",
> .data = &init_net.ipv4.sysctl_tcp_thin_linear_timeouts,
> - .maxlen = sizeof(int),
> + .maxlen = sizeof(u8),
> .mode = 0644,
> - .proc_handler = proc_dointvec
> + .proc_handler = proc_dou8vec_minmax,
> },
> {
> .procname = "tcp_slow_start_after_idle",
> .data = &init_net.ipv4.sysctl_tcp_slow_start_after_idle,
> - .maxlen = sizeof(int),
> + .maxlen = sizeof(u8),
> .mode = 0644,
> - .proc_handler = proc_dointvec
> + .proc_handler = proc_dou8vec_minmax,
> },
> {
> .procname = "tcp_retrans_collapse",
> .data = &init_net.ipv4.sysctl_tcp_retrans_collapse,
> - .maxlen = sizeof(int),
> + .maxlen = sizeof(u8),
> .mode = 0644,
> - .proc_handler = proc_dointvec
> + .proc_handler = proc_dou8vec_minmax,
> },
> {
> .procname = "tcp_stdurg",
> .data = &init_net.ipv4.sysctl_tcp_stdurg,
> - .maxlen = sizeof(int),
> + .maxlen = sizeof(u8),
> .mode = 0644,
> - .proc_handler = proc_dointvec
> + .proc_handler = proc_dou8vec_minmax,
> },
> {
> .procname = "tcp_rfc1337",
> .data = &init_net.ipv4.sysctl_tcp_rfc1337,
> - .maxlen = sizeof(int),
> + .maxlen = sizeof(u8),
> .mode = 0644,
> - .proc_handler = proc_dointvec
> + .proc_handler = proc_dou8vec_minmax,
> },
> {
> .procname = "tcp_abort_on_overflow",
> .data = &init_net.ipv4.sysctl_tcp_abort_on_overflow,
> - .maxlen = sizeof(int),
> + .maxlen = sizeof(u8),
> .mode = 0644,
> - .proc_handler = proc_dointvec
> + .proc_handler = proc_dou8vec_minmax,
> },
> {
> .procname = "tcp_fack",
> .data = &init_net.ipv4.sysctl_tcp_fack,
> - .maxlen = sizeof(int),
> + .maxlen = sizeof(u8),
> .mode = 0644,
> - .proc_handler = proc_dointvec
> + .proc_handler = proc_dou8vec_minmax,
> },
> {
> .procname = "tcp_max_reordering",
> @@ -1105,16 +1105,16 @@ static struct ctl_table ipv4_net_table[] = {
> {
> .procname = "tcp_dsack",
> .data = &init_net.ipv4.sysctl_tcp_dsack,
> - .maxlen = sizeof(int),
> + .maxlen = sizeof(u8),
> .mode = 0644,
> - .proc_handler = proc_dointvec
> + .proc_handler = proc_dou8vec_minmax,
> },
> {
> .procname = "tcp_app_win",
> .data = &init_net.ipv4.sysctl_tcp_app_win,
> - .maxlen = sizeof(int),
> + .maxlen = sizeof(u8),
> .mode = 0644,
> - .proc_handler = proc_dointvec
> + .proc_handler = proc_dou8vec_minmax,
> },
> {
> .procname = "tcp_adv_win_scale",
> @@ -1128,46 +1128,46 @@ static struct ctl_table ipv4_net_table[] = {
> {
> .procname = "tcp_frto",
> .data = &init_net.ipv4.sysctl_tcp_frto,
> - .maxlen = sizeof(int),
> + .maxlen = sizeof(u8),
> .mode = 0644,
> - .proc_handler = proc_dointvec
> + .proc_handler = proc_dou8vec_minmax,
> },
> {
> .procname = "tcp_no_metrics_save",
> .data = &init_net.ipv4.sysctl_tcp_nometrics_save,
> - .maxlen = sizeof(int),
> + .maxlen = sizeof(u8),
> .mode = 0644,
> - .proc_handler = proc_dointvec,
> + .proc_handler = proc_dou8vec_minmax,
> },
> {
> .procname = "tcp_no_ssthresh_metrics_save",
> .data = &init_net.ipv4.sysctl_tcp_no_ssthresh_metrics_save,
> - .maxlen = sizeof(int),
> + .maxlen = sizeof(u8),
> .mode = 0644,
> - .proc_handler = proc_dointvec_minmax,
> + .proc_handler = proc_dou8vec_minmax,
> .extra1 = SYSCTL_ZERO,
> .extra2 = SYSCTL_ONE,
> },
> {
> .procname = "tcp_moderate_rcvbuf",
> .data = &init_net.ipv4.sysctl_tcp_moderate_rcvbuf,
> - .maxlen = sizeof(int),
> + .maxlen = sizeof(u8),
> .mode = 0644,
> - .proc_handler = proc_dointvec,
> + .proc_handler = proc_dou8vec_minmax,
> },
> {
> .procname = "tcp_tso_win_divisor",
> .data = &init_net.ipv4.sysctl_tcp_tso_win_divisor,
> - .maxlen = sizeof(int),
> + .maxlen = sizeof(u8),
> .mode = 0644,
> - .proc_handler = proc_dointvec,
> + .proc_handler = proc_dou8vec_minmax,
> },
> {
> .procname = "tcp_workaround_signed_windows",
> .data = &init_net.ipv4.sysctl_tcp_workaround_signed_windows,
> - .maxlen = sizeof(int),
> + .maxlen = sizeof(u8),
> .mode = 0644,
> - .proc_handler = proc_dointvec
> + .proc_handler = proc_dou8vec_minmax,
> },
> {
> .procname = "tcp_limit_output_bytes",
> @@ -1186,9 +1186,9 @@ static struct ctl_table ipv4_net_table[] = {
> {
> .procname = "tcp_min_tso_segs",
> .data = &init_net.ipv4.sysctl_tcp_min_tso_segs,
> - .maxlen = sizeof(int),
> + .maxlen = sizeof(u8),
> .mode = 0644,
> - .proc_handler = proc_dointvec_minmax,
> + .proc_handler = proc_dou8vec_minmax,
> .extra1 = SYSCTL_ONE,
> .extra2 = &gso_max_segs,
> },
> @@ -1204,9 +1204,9 @@ static struct ctl_table ipv4_net_table[] = {
> {
> .procname = "tcp_autocorking",
> .data = &init_net.ipv4.sysctl_tcp_autocorking,
> - .maxlen = sizeof(int),
> + .maxlen = sizeof(u8),
> .mode = 0644,
> - .proc_handler = proc_dointvec_minmax,
> + .proc_handler = proc_dou8vec_minmax,
> .extra1 = SYSCTL_ZERO,
> .extra2 = SYSCTL_ONE,
> },
> @@ -1277,9 +1277,9 @@ static struct ctl_table ipv4_net_table[] = {
> {
> .procname = "tcp_reflect_tos",
> .data = &init_net.ipv4.sysctl_tcp_reflect_tos,
> - .maxlen = sizeof(int),
> + .maxlen = sizeof(u8),
> .mode = 0644,
> - .proc_handler = proc_dointvec_minmax,
> + .proc_handler = proc_dou8vec_minmax,
> .extra1 = SYSCTL_ZERO,
> .extra2 = SYSCTL_ONE,
> },
> --
> 2.39.2
>
>
>
next prev parent reply other threads:[~2023-06-09 18:59 UTC|newest]
Thread overview: 141+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-04-18 12:20 [PATCH 5.10 000/124] 5.10.178-rc1 review Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 001/124] gpio: GPIO_REGMAP: select REGMAP instead of depending on it Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 002/124] Drivers: vmbus: Check for channel allocation before looking up relids Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 003/124] pwm: cros-ec: Explicitly set .polarity in .get_state() Greg Kroah-Hartman
2023-04-18 13:01 ` Uwe Kleine-König
2023-04-22 15:05 ` Greg Kroah-Hartman
2023-04-22 16:00 ` Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 004/124] pwm: sprd: " Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 005/124] KVM: s390: pv: fix external interruption loop not always detected Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 006/124] wifi: mac80211: fix invalid drv_sta_pre_rcu_remove calls for non-uploaded sta Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 007/124] net: qrtr: combine nameservice into main module Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 008/124] net: qrtr: Fix a refcount bug in qrtr_recvmsg() Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 009/124] icmp: guard against too small mtu Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 010/124] net: dont let netpoll invoke NAPI if in xmit context Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 011/124] sctp: check send stream number after wait_for_sndbuf Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 012/124] net: qrtr: Do not do DEL_SERVER broadcast after DEL_CLIENT Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 013/124] ipv6: Fix an uninit variable access bug in __ip6_make_skb() Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 014/124] gpio: davinci: Add irq chip flag to skip set wake Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 015/124] net: ethernet: ti: am65-cpsw: Fix mdio cleanup in probe Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 016/124] net: stmmac: fix up RX flow hash indirection table when setting channels Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 017/124] sunrpc: only free unix grouplist after RCU settles Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 018/124] NFSD: callback request does not use correct credential for AUTH_SYS Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 019/124] usb: xhci: tegra: fix sleep in atomic call Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 020/124] xhci: also avoid the XHCI_ZERO_64B_REGS quirk with a passthrough iommu Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 021/124] USB: serial: cp210x: add Silicon Labs IFS-USB-DATACABLE IDs Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 022/124] usb: typec: altmodes/displayport: Fix configure initial pin assignment Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 023/124] USB: serial: option: add Telit FE990 compositions Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 024/124] USB: serial: option: add Quectel RM500U-CN modem Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 025/124] iio: adc: ti-ads7950: Set `can_sleep` flag for GPIO chip Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 026/124] iio: dac: cio-dac: Fix max DAC write value check for 12-bit Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 027/124] iio: light: cm32181: Unregister second I2C client if present Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 028/124] tty: serial: sh-sci: Fix transmit end interrupt handler Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 029/124] tty: serial: sh-sci: Fix Rx on RZ/G2L SCI Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 030/124] tty: serial: fsl_lpuart: avoid checking for transfer complete when UARTCTRL_SBK is asserted in lpuart32_tx_empty Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 031/124] nilfs2: fix potential UAF of struct nilfs_sc_info in nilfs_segctor_thread() Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 032/124] nilfs2: fix sysfs interface lifetime Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 033/124] dt-bindings: serial: renesas,scif: Fix 4th IRQ for 4-IRQ SCIFs Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 034/124] ALSA: hda/realtek: Add quirk for Clevo X370SNW Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 035/124] iio: adc: ad7791: fix IRQ flags Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 036/124] scsi: iscsi_tcp: Check that sock is valid before iscsi_set_param() Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 037/124] perf/core: Fix the same task check in perf_event_set_output Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 038/124] ftrace: Mark get_lock_parent_ip() __always_inline Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 039/124] ftrace: Fix issue that direct->addr not restored in modify_ftrace_direct() Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 5.10 040/124] can: j1939: j1939_tp_tx_dat_new(): fix out-of-bounds memory access Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 041/124] can: isotp: isotp_ops: fix poll() to not report false EPOLLOUT events Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 042/124] tracing: Free error logs of tracing instances Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 043/124] ASoC: hdac_hdmi: use set_stream() instead of set_tdm_slots() Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 044/124] drm/panfrost: Fix the panfrost_mmu_map_fault_addr() error path Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 045/124] drm/nouveau/disp: Support more modes by checking with lower bpc Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 046/124] ring-buffer: Fix race while reader and writer are on the same page Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 047/124] mm/swap: fix swap_info_struct race between swapoff and get_swap_pages() Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 048/124] selftests: intel_pstate: ftime() is deprecated Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 049/124] drm/bridge: lt9611: Fix PLL being unable to lock Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 050/124] Revert "media: ti: cal: fix possible memory leak in cal_ctx_create()" Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 051/124] ocfs2: fix freeing uninitialized resource on ocfs2_dlm_shutdown Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 052/124] bpftool: Print newline before } for struct with padding only fields Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 053/124] Revert "pinctrl: amd: Disable and mask interrupts on resume" Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 054/124] ALSA: emu10k1: fix capture interrupt handler unlinking Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 055/124] ALSA: hda/sigmatel: add pin overrides for Intel DP45SG motherboard Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 056/124] ALSA: i2c/cs8427: fix iec958 mixer control deactivation Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 057/124] ALSA: firewire-tascam: add missing unwind goto in snd_tscm_stream_start_duplex() Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 058/124] ALSA: hda/sigmatel: fix S/PDIF out on Intel D*45* motherboards Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 059/124] Bluetooth: L2CAP: Fix use-after-free in l2cap_disconnect_{req,rsp} Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 060/124] Bluetooth: Fix race condition in hidp_session_thread Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 061/124] btrfs: print checksum type and implementation at mount time Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 062/124] btrfs: fix fast csum implementation detection Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 063/124] fbmem: Reject FB_ACTIVATE_KD_TEXT from userspace Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 064/124] mtdblock: tolerate corrected bit-flips Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 065/124] mtd: rawnand: meson: fix bitmask for length in command word Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 066/124] mtd: rawnand: stm32_fmc2: remove unsupported EDO mode Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 067/124] mtd: rawnand: stm32_fmc2: use timings.mode instead of checking tRC_min Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 068/124] clk: sprd: set max_register according to mapping range Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 069/124] IB/mlx5: Add support for NDR link speed Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 070/124] IB/mlx5: Add support for 400G_8X lane speed Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 071/124] RDMA/cma: Allow UD qp_type to join multicast only Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 072/124] 9p/xen : Fix use after free bug in xen_9pfs_front_remove due to race condition Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 073/124] niu: Fix missing unwind goto in niu_alloc_channels() Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 074/124] sysctl: add proc_dou8vec_minmax() Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 075/124] ipv4: shrink netns_ipv4 with sysctl conversions Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 076/124] tcp: convert elligible sysctls to u8 Greg Kroah-Hartman
2023-06-09 18:51 ` Your Name [this message]
2023-04-18 12:21 ` [PATCH 5.10 077/124] tcp: restrict net.ipv4.tcp_app_win Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 078/124] drm/armada: Fix a potential double free in an error handling path Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 079/124] qlcnic: check pci_reset_function result Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 080/124] net: qrtr: Fix an uninit variable access bug in qrtr_tx_resume() Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 081/124] sctp: fix a potential overflow in sctp_ifwdtsn_skip Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 082/124] RDMA/core: Fix GID entry ref leak when create_ah fails Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 083/124] udp6: fix potential access to stale information Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 084/124] net: macb: fix a memory corruption in extended buffer descriptor mode Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 085/124] libbpf: Fix single-line struct definition output in btf_dump Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 086/124] power: supply: cros_usbpd: reclassify "default case!" as debug Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 087/124] wifi: mwifiex: mark OF related data as maybe unused Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 088/124] i2c: imx-lpi2c: clean rx/tx buffers upon new message Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 089/124] efi: sysfb_efi: Add quirk for Lenovo Yoga Book X91F/L Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 090/124] drm: panel-orientation-quirks: Add quirk for Lenovo Yoga Book X90F Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 091/124] verify_pefile: relax wrapper length check Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 092/124] asymmetric_keys: log on fatal failures in PE/pkcs7 Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 093/124] riscv: add icache flush for nommu sigreturn trampoline Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 094/124] net: sfp: initialize sfp->i2c_block_size at sfp allocation Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 095/124] scsi: ses: Handle enclosure with just a primary component gracefully Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 096/124] x86/PCI: Add quirk for AMD XHCI controller that loses MSI-X state in D3hot Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 097/124] cgroup/cpuset: Wake up cpuset_attach_wq tasks in cpuset_cancel_attach() Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 098/124] ubi: Fix failure attaching when vid_hdr offset equals to (sub)page size Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 099/124] mtd: ubi: wl: Fix a couple of kernel-doc issues Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 5.10 100/124] ubi: Fix deadlock caused by recursively holding work_sem Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 5.10 101/124] powerpc/pseries: rename min_common_depth to primary_domain_index Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 5.10 102/124] powerpc/pseries: Rename TYPE1_AFFINITY to FORM1_AFFINITY Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 5.10 103/124] powerpc/pseries: Consolidate different NUMA distance update code paths Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 5.10 104/124] powerpc/pseries: Add a helper for form1 cpu distance Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 5.10 105/124] powerpc/pseries: Add support for FORM2 associativity Greg Kroah-Hartman
2023-04-21 22:50 ` Salvatore Bonaccorso
2023-04-18 12:22 ` [PATCH 5.10 106/124] powerpc/papr_scm: Update the NUMA distance table for the target node Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 5.10 107/124] sched/fair: Move calculate of avg_load to a better location Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 5.10 108/124] sched/fair: Fix imbalance overflow Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 5.10 109/124] x86/rtc: Remove __init for runtime functions Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 5.10 110/124] i2c: ocores: generate stop condition after timeout in polling mode Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 5.10 111/124] cgroup/cpuset: Change references of cpuset_mutex to cpuset_rwsem Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 5.10 112/124] cgroup/cpuset: Skip spread flags update on v2 Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 5.10 113/124] cgroup/cpuset: Make cpuset_fork() handle CLONE_INTO_CGROUP properly Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 5.10 114/124] cgroup/cpuset: Add cpuset_can_fork() and cpuset_cancel_fork() methods Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 5.10 115/124] watchdog: sbsa_wdog: Make sure the timeout programming is within the limits Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 5.10 116/124] coresight-etm4: Fix for() loop drvdata->nr_addr_cmp range bug Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 5.10 117/124] kbuild: check the minimum assembler version in Kconfig Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 5.10 118/124] kbuild: Switch to f variants of integrated assembler flag Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 5.10 119/124] kbuild: check CONFIG_AS_IS_LLVM instead of LLVM_IAS Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 5.10 120/124] riscv: Handle zicsr/zifencei issues between clang and binutils Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 5.10 121/124] kexec: move locking into do_kexec_load Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 5.10 122/124] kexec: turn all kexec_mutex acquisitions into trylocks Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 5.10 123/124] panic, kexec: make __crash_kexec() NMI safe Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 5.10 124/124] sysctl: Fix data-races in proc_dou8vec_minmax() Greg Kroah-Hartman
2023-04-18 15:08 ` [PATCH 5.10 000/124] 5.10.178-rc1 review Naresh Kamboju
2023-04-18 15:34 ` Greg Kroah-Hartman
2023-04-18 15:45 ` Naresh Kamboju
2023-04-18 16:00 ` Shuah Khan
2023-04-18 16:29 ` Harshit Mogalapalli
2023-04-18 18:47 ` Guenter Roeck
2023-04-18 17:24 ` Waiman Long
2023-04-18 19:28 ` Tom Saeger
2023-04-18 21:27 ` Pavel Machek
2023-04-18 19:06 ` Florian Fainelli
2023-04-19 3:39 ` Guenter Roeck
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=20230609185150.kwpdc3fefcfeviny@sole.flsd.net \
--to=you@example.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=gregkh@linuxfoundation.org \
--cc=patches@lists.linux.dev \
--cc=sashal@kernel.org \
--cc=stable@vger.kernel.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).