commit | a4e13b2538173771fdf47c2b79caa2e7e027d388 | [log] [tgz] |
---|---|---|
author | Treehugger Robot <treehugger-gerrit@google.com> | Fri Jan 21 18:34:02 2022 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Fri Jan 21 18:34:02 2022 +0000 |
tree | 3d612ab0c7521e70c261be5b958f4cf435859324 | |
parent | f4f994e1387cb857aa0c1673f87713ade068d599 [diff] | |
parent | 29d5f0adbe0ad328e17d58d46f0fee2ca1cb5a7a [diff] |
Merge "bump tethering tc prio to make room for rate limiting" am: 29d5f0adbe Original change: https://android-review.googlesource.com/c/platform/packages/modules/Connectivity/+/1859810 Change-Id: Ib595ff80c1f016a5002b8b8e434f314803fed99f
diff --git a/Tethering/src/com/android/networkstack/tethering/BpfUtils.java b/Tethering/src/com/android/networkstack/tethering/BpfUtils.java index ad410eb..77efb51 100644 --- a/Tethering/src/com/android/networkstack/tethering/BpfUtils.java +++ b/Tethering/src/com/android/networkstack/tethering/BpfUtils.java
@@ -55,11 +55,11 @@ static final boolean DOWNSTREAM = true; static final boolean UPSTREAM = false; - // The priority of clat/tether hooks - smaller is higher priority. + // The priority of tether hooks - smaller is higher priority. // TC tether is higher priority then TC clat to match XDP winning over TC. - // Sync from system/netd/server/OffloadUtils.h. - static final short PRIO_TETHER6 = 1; - static final short PRIO_TETHER4 = 2; + // Sync from system/netd/server/TcUtils.h. + static final short PRIO_TETHER6 = 2; + static final short PRIO_TETHER4 = 3; // note that the above must be lower than PRIO_CLAT from netd's OffloadUtils.cpp private static String makeProgPath(boolean downstream, int ipVersion, boolean ether) {