From fab7930dc518ccd8f6501a3af50ef191a45a8935 Mon Sep 17 00:00:00 2001 From: Frederick Mayle Date: Tue, 12 Apr 2022 18:32:43 +0000 Subject: Add more if_tun.h constants We specifically need IFF_VNET_HDR and IFF_MULTI_QUEUE to build the new version of crosvm. I plan on upstreaming this after the crosvm merge is unblocked. Test: m liblibc Bug: 228847818 Change-Id: I35427758812805b9895e8745aed686c9b85c33c2 --- patches/if_tun.diff | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 patches/if_tun.diff (limited to 'patches') diff --git a/patches/if_tun.diff b/patches/if_tun.diff new file mode 100644 index 00000000..1e790763 --- /dev/null +++ b/patches/if_tun.diff @@ -0,0 +1,25 @@ +diff --git a/src/unix/linux_like/android/mod.rs b/src/unix/linux_like/android/mod.rs +index 236f57a4..fe2d2096 100644 +--- a/src/unix/linux_like/android/mod.rs ++++ b/src/unix/linux_like/android/mod.rs +@@ -2168,9 +2168,20 @@ pub const NFT_TRACETYPE_RULE: ::c_int = 3; + pub const NFT_NG_INCREMENTAL: ::c_int = 0; + pub const NFT_NG_RANDOM: ::c_int = 1; + ++// bionic/libc/kernel/uapi/linux/if_tun.h + pub const IFF_TUN: ::c_int = 0x0001; + pub const IFF_TAP: ::c_int = 0x0002; ++pub const IFF_NAPI: ::c_int = 0x0010; ++pub const IFF_NAPI_FRAGS: ::c_int = 0x0020; + pub const IFF_NO_PI: ::c_int = 0x1000; ++pub const IFF_ONE_QUEUE: ::c_int = 0x2000; ++pub const IFF_VNET_HDR: ::c_int = 0x4000; ++pub const IFF_TUN_EXCL: ::c_int = 0x8000; ++pub const IFF_MULTI_QUEUE: ::c_int = 0x0100; ++pub const IFF_ATTACH_QUEUE: ::c_int = 0x0200; ++pub const IFF_DETACH_QUEUE: ::c_int = 0x0400; ++pub const IFF_PERSIST: ::c_int = 0x0800; ++pub const IFF_NOFILTER: ::c_int = 0x1000; + + // start android/platform/bionic/libc/kernel/uapi/linux/if_ether.h + // from https://android.googlesource.com/ -- cgit v1.2.3