Re: [PATCH net-next] net: fix icmp_echo_enable_probe sysctl

2021-03-30 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net-next.git (refs/heads/master): On Tue, 30 Mar 2021 14:06:13 -0700 you wrote: > From: Eric Dumazet > > sysctl_icmp_echo_enable_probe is an u8. > > ipv4_net_table entry should use > .maxlen = sizeof(u8). > .proc_handler = proc_dou8vec_minmax, >

[PATCH net-next] net: fix icmp_echo_enable_probe sysctl

2021-03-30 Thread Eric Dumazet
From: Eric Dumazet sysctl_icmp_echo_enable_probe is an u8. ipv4_net_table entry should use .maxlen = sizeof(u8). .proc_handler = proc_dou8vec_minmax, Signed-off-by: Eric Dumazet Cc: Andreas Roeseler --- net/ipv4/sysctl_net_ipv4.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions