lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Tue, 11 Dec 2018 20:56:05 +0900
From:   Alice Ferrazzi <alice.ferrazzi@...il.com>
To:     unlisted-recipients:; (no To-header on input)
Cc:     ast@...nel.org, daniel@...earbox.net, shuah@...nel.org,
        netdev@...r.kernel.org, linux-kernel@...r.kernel.org,
        Alice Ferrazzi <alice.ferrazzi@...il.com>
Subject: [PATCH 5/7] selftest/bpf: Fix PEP8 ambiguous variable name

Signed-off-by: Alice Ferrazzi <alice.ferrazzi@...il.com>
---
 tools/testing/selftests/bpf/test_offload.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/testing/selftests/bpf/test_offload.py b/tools/testing/selftests/bpf/test_offload.py
index f80c4f13991d..0f9130ebfd2c 100755
--- a/tools/testing/selftests/bpf/test_offload.py
+++ b/tools/testing/selftests/bpf/test_offload.py
@@ -623,8 +623,8 @@ def check_no_extack(res, needle):
 
 def check_verifier_log(output, reference):
     lines = output.split("\n")
-    for l in reversed(lines):
-        if l == reference:
+    for line in reversed(lines):
+        if line == reference:
             return
     fail(True, "Missing or incorrect message from netdevsim in verifier log")
 
-- 
2.19.2

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ