move net_shared bpf programs into net_shared subdirectory
(no selinux consequences to this in and of itself, though required for follow up selinux changes) Test: TreeHugger, manual Bug: 218408035 Signed-off-by: Maciej Żenczykowski <maze@google.com> Change-Id: Id5ef7f3b119743ef26b062068756c4e0f754e694
This commit is contained in:
parent
d0af44d3d2
commit
2a36ce48b0
2 changed files with 3 additions and 3 deletions
|
@ -77,7 +77,7 @@ const Location locations[] = {
|
|||
// Tethering mainline module: netd, clatd, ...etc
|
||||
{
|
||||
.dir = "/apex/com.android.tethering/etc/bpf/net_shared/",
|
||||
.prefix = "",
|
||||
.prefix = "net_shared/",
|
||||
},
|
||||
// Core operating system
|
||||
{
|
||||
|
|
|
@ -30,9 +30,9 @@
|
|||
#include <sys/wait.h>
|
||||
#include <unistd.h>
|
||||
|
||||
// This is BpfLoader v0.10
|
||||
// This is BpfLoader v0.12
|
||||
#define BPFLOADER_VERSION_MAJOR 0u
|
||||
#define BPFLOADER_VERSION_MINOR 11u
|
||||
#define BPFLOADER_VERSION_MINOR 12u
|
||||
#define BPFLOADER_VERSION ((BPFLOADER_VERSION_MAJOR << 16) | BPFLOADER_VERSION_MINOR)
|
||||
|
||||
#include "bpf/BpfUtils.h"
|
||||
|
|
Loading…
Reference in a new issue