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] [day] [month] [year] [list]
Date:   Thu, 10 Mar 2022 02:10:59 +0800
From:   kernel test robot <lkp@...el.com>
To:     Paul Lawrence <paullawrence@...gle.com>
Cc:     kbuild-all@...ts.01.org,
        GNU/Weeb Mailing List <gwml@...r.gnuweeb.org>,
        linux-kernel@...r.kernel.org
Subject: [PATCH] ANDROID: fuse-bpf: fix semicolon.cocci warnings

From: kernel test robot <lkp@...el.com>

fs/fuse/dir.c:557:43-44: Unneeded semicolon


 Remove unneeded semicolon.

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

Fixes: 8efdff35e305 ("ANDROID: fuse-bpf: Move fd operations to be synchronous")
Reported-by: kernel test robot <lkp@...el.com>
Signed-off-by: kernel test robot <lkp@...el.com>
---

tree:   https://github.com/ammarfaizi2/linux-block google/android/kernel/common/android13-5.10
head:   681ba23265bee4f2f0bd461df7d0025f4df17f09
commit: 8efdff35e3052e44d519ccfb9d50594f5df0240b [9996/9999] ANDROID: fuse-bpf: Move fd operations to be synchronous
:::::: branch date: 8 hours ago
:::::: commit date: 22 hours ago

 fs/fuse/dir.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/fs/fuse/dir.c
+++ b/fs/fuse/dir.c
@@ -554,7 +554,7 @@ int fuse_lookup_name(struct super_block
 			struct bpf_prog *bpf_prog = ERR_PTR(-EINVAL);
 
 			if (bpf_file && !IS_ERR(bpf_file))
-				bpf_prog = fuse_get_bpf_prog(bpf_file);;
+				bpf_prog = fuse_get_bpf_prog(bpf_file);
 
 			if (IS_ERR(bpf_prog)) {
 				iput(*inode);

Powered by blists - more mailing lists