move net_shared bpf programs into net_shared subdirectory
This is needed due to the other half of this topic getting into tm-dev via automerger via sc-mainline-prod Also this topic was always meant for T. Original change: https://android-review.googlesource.com/c/platform/system/bpf/+/2071267 Test: manual Bug: 218408035 Signed-off-by: Maciej Żenczykowski <maze@google.com> Merged-In: Id5ef7f3b119743ef26b062068756c4e0f754e694 Change-Id: I6ffab207294946357f3a97685d3eacc75b724e89
This commit is contained in:
parent
c8b85f9876
commit
da4f92c3be
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