Merge "Fix add missing loadLibrary to TcUtils"
diff --git a/staticlibs/device/com/android/net/module/util/TcUtils.java b/staticlibs/device/com/android/net/module/util/TcUtils.java
index 5b78bc1..cf01490 100644
--- a/staticlibs/device/com/android/net/module/util/TcUtils.java
+++ b/staticlibs/device/com/android/net/module/util/TcUtils.java
@@ -22,6 +22,10 @@
  * Contains mostly tc-related functionality.
  */
 public class TcUtils {
+    static {
+        System.loadLibrary(JniUtil.getJniLibraryName(TcUtils.class.getPackage()));
+    }
+
     /**
      * Checks if the network interface uses an ethernet L2 header.
      *