diff options
author | Mickaël Salaün <[email protected]> | 2017-02-08 21:27:42 +0100 |
---|---|---|
committer | Arnaldo Carvalho de Melo <[email protected]> | 2017-02-13 17:22:47 -0300 |
commit | 16ad1329002f905c643a438ddcfb0a180787850a (patch) | |
tree | 1de3fcc86edb4c0e2fea34464a875c1ff91a2557 | |
parent | af392a8f5399e831cb502ff210dacef8b38ca513 (diff) |
samples/bpf: Ignore already processed ELF sections
Add a missing check for the map fixup loop.
Signed-off-by: Mickaël Salaün <[email protected]>
Acked-by: Joe Stringer <[email protected]>
Acked-by: Wang Nan <[email protected]>
Cc: Alexei Starovoitov <[email protected]>
Cc: Daniel Borkmann <[email protected]>
Cc: David S. Miller <[email protected]>
Cc: [email protected]
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
-rw-r--r-- | samples/bpf/bpf_load.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/samples/bpf/bpf_load.c b/samples/bpf/bpf_load.c index 396e204888b3..e04fe09d7c2e 100644 --- a/samples/bpf/bpf_load.c +++ b/samples/bpf/bpf_load.c @@ -328,6 +328,8 @@ int load_bpf_file(char *path) /* load programs that need map fixup (relocations) */ for (i = 1; i < ehdr.e_shnum; i++) { + if (processed_sec[i]) + continue; if (get_sec(elf, i, &ehdr, &shname, &shdr, &data)) continue; |