Commit 69495d2a authored by Taeung Song's avatar Taeung Song Committed by Alexei Starovoitov
Browse files

libbpf: Remove the duplicate checking of function storage



After the commit eac7d845 ("tools: libbpf: don't return '.text'
as a program for multi-function programs"), bpf_program__next()
in bpf_object__for_each_program skips the function storage such as .text,
so eliminate the duplicate checking.

Cc: Jakub Kicinski <jakub.kicinski@netronome.com>
Signed-off-by: default avatarTaeung Song <treeze.taeung@gmail.com>
Acked-by: default avatarJakub Kicinski <jakub.kicinski@netronome.com>
Signed-off-by: default avatarAlexei Starovoitov <ast@kernel.org>
parent 428f944b
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -2336,7 +2336,7 @@ int bpf_prog_load_xattr(const struct bpf_prog_load_attr *attr,
		bpf_program__set_expected_attach_type(prog,
		bpf_program__set_expected_attach_type(prog,
						      expected_attach_type);
						      expected_attach_type);


		if (!bpf_program__is_function_storage(prog, obj) && !first_prog)
		if (!first_prog)
			first_prog = prog;
			first_prog = prog;
	}
	}