bpfloader: more 4.9-T support

(older kernels don't support naming maps/programs)

Test: TreeHugger
Signed-off-by: Maciej Żenczykowski <maze@google.com>
Change-Id: If59b8947021394e1ce0a91326fee4272a5bddd38
This commit is contained in:
Maciej Żenczykowski 2024-03-15 19:03:13 +00:00 committed by zlewchan
parent d18d86dfe9
commit 3fee9f5367

View file

@ -631,6 +631,7 @@ static int createMaps(const char* elfPath, ifstream& elfFile, vector<unique_fd>&
.max_entries = max_entries,
.map_flags = md[i].map_flags,
};
if (isAtLeastKernelVersion(4, 14, 0))
strlcpy(req.map_name, mapNames[i].c_str(), sizeof(req.map_name));
fd.reset(bpf(BPF_MAP_CREATE, req));
saved_errno = errno;
@ -791,6 +792,7 @@ static int loadCodeSections(const char* elfPath, vector<codeSection>& cs, const
.log_size = static_cast<__u32>(log_buf.size()),
.expected_attach_type = cs[i].expected_attach_type,
};
if (isAtLeastKernelVersion(4, 14, 0))
strlcpy(req.prog_name, cs[i].name.c_str(), sizeof(req.prog_name));
fd.reset(bpf(BPF_PROG_LOAD, req));