[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20180313095346.GA67556@lkp-sb-ep06.lkp.intel.com>
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