summaryrefslogtreecommitdiff
path: root/samples
diff options
context:
space:
mode:
authorMatteo Croce <mcroce@redhat.com>2020-05-11 14:32:34 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2020-06-03 09:17:55 +0300
commit6ba7ec2050197fdd5261acfc6debe5f44e210a3a (patch)
tree5ae9cb8a845859270157b664ce73148197a44623 /samples
parentf7e62552ad4ae0ce2822ad6dad191d4bbf02d115 (diff)
downloadlinux-6ba7ec2050197fdd5261acfc6debe5f44e210a3a.tar.xz
samples: bpf: Fix build error
[ Upstream commit 23ad04669f81f958e9a4121b0266228d2eb3c357 ] GCC 10 is very strict about symbol clash, and lwt_len_hist_user contains a symbol which clashes with libbpf: /usr/bin/ld: samples/bpf/lwt_len_hist_user.o:(.bss+0x0): multiple definition of `bpf_log_buf'; samples/bpf/bpf_load.o:(.bss+0x8c0): first defined here collect2: error: ld returned 1 exit status bpf_log_buf here seems to be a leftover, so removing it. Signed-off-by: Matteo Croce <mcroce@redhat.com> Signed-off-by: Alexei Starovoitov <ast@kernel.org> Acked-by: Yonghong Song <yhs@fb.com> Link: https://lore.kernel.org/bpf/20200511113234.80722-1-mcroce@redhat.com Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'samples')
-rw-r--r--samples/bpf/lwt_len_hist_user.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/samples/bpf/lwt_len_hist_user.c b/samples/bpf/lwt_len_hist_user.c
index 7fcb94c09112..965108527a4f 100644
--- a/samples/bpf/lwt_len_hist_user.c
+++ b/samples/bpf/lwt_len_hist_user.c
@@ -15,8 +15,6 @@
#define MAX_INDEX 64
#define MAX_STARS 38
-char bpf_log_buf[BPF_LOG_BUF_SIZE];
-
static void stars(char *str, long val, long max, int width)
{
int i;