Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1574306 > unrolled thread

[PATCH net-next v1 2/7] samples/bpf: Ignore already processed ELF sections

Started byMickaël Salaün <mic@digikod.net>
First post2017-02-06 00:20 +0100
Last post2017-02-06 00:20 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH net-next v1 2/7] samples/bpf: Ignore already processed ELF sections Mickaël Salaün <mic@digikod.net> - 2017-02-06 00:20 +0100

#1574306 — [PATCH net-next v1 2/7] samples/bpf: Ignore already processed ELF sections

FromMickaël Salaün <mic@digikod.net>
Date2017-02-06 00:20 +0100
Subject[PATCH net-next v1 2/7] samples/bpf: Ignore already processed ELF sections
Message-ID<t7Ega-5mH-25@gated-at.bofh.it>
Add a missing check for the map fixup loop.

Signed-off-by: Mickaël Salaün <mic@digikod.net>
Cc: Alexei Starovoitov <ast@fb.com>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Daniel Borkmann <daniel@iogearbox.net>
---
 samples/bpf/bpf_load.c | 2 ++
 1 file changed, 2 insertions(+)

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;
-- 
2.11.0

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web