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, 13 Mar 2018 17:53:46 +0800
From:   kbuild test robot <lkp@...el.com>
To:     Song Liu <songliubraving@...com>
Cc:     kbuild-all@...org, netdev@...r.kernel.org, ast@...nel.org,
        peterz@...radead.org, daniel@...earbox.net, kernel-team@...com,
        hannes@...xchg.org, qinteng@...com,
        Song Liu <songliubraving@...com>
Subject: [PATCH] bpf: fix semicolon.cocci warnings

From: Fengguang Wu <fengguang.wu@...el.com>

kernel/bpf/stackmap.c:177:2-3: Unneeded semicolon


 Remove unneeded semicolon.

Generated by: scripts/coccinelle/misc/semicolon.cocci

Fixes: fd5c09555695 ("bpf: extend stackmap to save binary_build_id+offset instead of address")
CC: Song Liu <songliubraving@...com>
Signed-off-by: Fengguang Wu <fengguang.wu@...el.com>
---

 stackmap.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/kernel/bpf/stackmap.c
+++ b/kernel/bpf/stackmap.c
@@ -174,7 +174,7 @@ static inline int stack_map_parse_build_
 		if (new_offs <= note_offs)  /* overflow */
 			break;
 		note_offs = new_offs;
-	};
+	}
 	return -EINVAL;
 }
 

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ