Support fuse prog types am: 9548f9fbed
am: f691bedf1d
Original change: https://android-review.googlesource.com/c/platform/system/bpf/+/1894086 Change-Id: I169e46cf1a07dc9330dd5346a0b5f1cd690b004a
This commit is contained in:
commit
3c639df877
1 changed files with 9 additions and 2 deletions
|
@ -28,9 +28,9 @@
|
|||
#include <sys/utsname.h>
|
||||
#include <unistd.h>
|
||||
|
||||
// This is BpfLoader v0.7
|
||||
// This is BpfLoader v0.8
|
||||
#define BPFLOADER_VERSION_MAJOR 0u
|
||||
#define BPFLOADER_VERSION_MINOR 7u
|
||||
#define BPFLOADER_VERSION_MINOR 8u
|
||||
#define BPFLOADER_VERSION ((BPFLOADER_VERSION_MAJOR << 16) | BPFLOADER_VERSION_MINOR)
|
||||
|
||||
#include "../progs/include/bpf_map_def.h"
|
||||
|
@ -283,6 +283,13 @@ static enum bpf_prog_type getSectionType(string& name) {
|
|||
for (auto& snt : sectionNameTypes)
|
||||
if (StartsWith(name, snt.name)) return snt.type;
|
||||
|
||||
// TODO Remove this code when fuse-bpf is upstream and this BPF_PROG_TYPE_FUSE is fixed
|
||||
if (StartsWith(name, "fuse/")) {
|
||||
int result = BPF_PROG_TYPE_UNSPEC;
|
||||
ifstream("/sys/fs/fuse/bpf_prog_type_fuse") >> result;
|
||||
return static_cast<bpf_prog_type>(result);
|
||||
}
|
||||
|
||||
return BPF_PROG_TYPE_UNSPEC;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue