[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20200211113257.451781-1-isaac.young5@gmail.com>
Date: Tue, 11 Feb 2020 04:32:57 -0700
From: Isaac Young <isaac.young5@...il.com>
To: shuah@...nel.org, linux-kselftest@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: [PATCH] Removing a duplicate condition.
Signed-off-by: Isaac Young <isaac.young5@...il.com>
---
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)
+ if (saved_tcp_syncookie < 0)
goto out;
if (enable_fastopen())
--
2.24.1
Powered by blists - more mailing lists