Snap for 8581162 from 4dfce18208 to tm-release

Change-Id: Iba69be78732816f174c06d303ecb9c0056c01fbb
This commit is contained in:
Android Build Coastguard Worker 2022-05-12 23:10:17 +00:00
commit 6e63ba776f
2 changed files with 13 additions and 3 deletions

View file

@ -74,11 +74,21 @@ const Location locations[] = {
.dir = "/apex/com.android.tethering/etc/bpf/",
.prefix = "tethering/",
},
// Tethering mainline module: netd, clatd, ...etc
// Tethering mainline module (shared with netd & system server)
{
.dir = "/apex/com.android.tethering/etc/bpf/netd_shared/",
.prefix = "netd_shared/",
},
// Tethering mainline module (shared with system server)
{
.dir = "/apex/com.android.tethering/etc/bpf/net_shared/",
.prefix = "net_shared/",
},
// Tethering mainline module (not shared)
{
.dir = "/apex/com.android.tethering/etc/bpf/net_private/",
.prefix = "net_private/",
},
// Core operating system
{
.dir = "/system/etc/bpf/",

View file

@ -30,9 +30,9 @@
#include <sys/wait.h>
#include <unistd.h>
// This is BpfLoader v0.12
// This is BpfLoader v0.13
#define BPFLOADER_VERSION_MAJOR 0u
#define BPFLOADER_VERSION_MINOR 12u
#define BPFLOADER_VERSION_MINOR 13u
#define BPFLOADER_VERSION ((BPFLOADER_VERSION_MAJOR << 16) | BPFLOADER_VERSION_MINOR)
#include "bpf/BpfUtils.h"