[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <3bace0e9-7ce7-aaea-9a6c-3949a6e52a08@kernel.org>
Date: Tue, 11 Feb 2020 08:19:56 -0700
From: shuah <shuah@...nel.org>
To: Isaac Young <isaac.young5@...il.com>,
linux-kselftest@...r.kernel.org, linux-kernel@...r.kernel.org,
shuah <shuah@...nel.org>
Subject: Re: [PATCH] Removing a duplicate condition.
Please include subsystem and test name in the subject line.
On 2/11/20 4:32 AM, Isaac Young wrote:
> Signed-off-by: Isaac Young <isaac.young5@...il.com>
Missing commit log
> ---
> tools/testing/selftests/bpf/prog_tests/select_reuseport.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tools/testing/selftests/bpf/prog_tests/select_reuseport.c b/tools/testing/selftests/bpf/prog_tests/select_reuseport.c
> index 098bcae5f827..0954c7a8aa08 100644
> --- a/tools/testing/selftests/bpf/prog_tests/select_reuseport.c
> +++ b/tools/testing/selftests/bpf/prog_tests/select_reuseport.c
> @@ -823,7 +823,7 @@ void test_select_reuseport(void)
>
> saved_tcp_fo = read_int_sysctl(TCP_FO_SYSCTL);
> saved_tcp_syncookie = read_int_sysctl(TCP_SYNCOOKIE_SYSCTL);
> - if (saved_tcp_syncookie < 0 || saved_tcp_syncookie < 0)
This might not be the right fix. I think the check should be
if (saved_tcp_fo < 0 || saved_tcp_syncookie < 0)
at least makes the most sense based on the code.
> + if (saved_tcp_syncookie < 0)
> goto out;
>
> if (enable_fastopen())
>
thanks,
-- Shuah
Powered by blists - more mailing lists