pmos/device/testing/linux-huawei-frd/01_fix_undeclared_AID_INET.patch
Sandelinos 5566adf660
huawei-frd: new device (MR 2247)
Based on downstream Android 7.0 kernel source from Huawei.
02_fix_undeclared_AUD_INET.patch is from huawei-alice
USB Networking, Touchscreen, USB OTG and Display work in xfce4.
Wifi just needs firmware, audio is broken.
Other parts haven't been tested yet.
2021-06-22 11:57:13 +02:00

22 lines
1.0 KiB
Diff

/home/pmos/build/src/android_kernel_huawei_alice-1ecb135f6/net/core/sock.c: In function 'sock_setbindtodevice':
/home/pmos/build/src/android_kernel_huawei_alice-1ecb135f6/net/core/sock.c:578:61: error: 'AID_INET' undeclared (first use in this function); did you mean 'AF_INET'?
578 | if (!ns_capable(net->user_ns, CAP_NET_RAW) && !in_egroup_p(AID_INET))
| ^~~~~~~~
| AF_INET
diff --git a/net/core/sock.c b/net/core/sock.c
index c7f705a0..35019d80 100644
--- a/net/core/sock.c
+++ b/net/core/sock.c
@@ -575,7 +575,7 @@ static int sock_setbindtodevice(struct sock *sk, char __user *optval,
/* < DTS2015012106130 guoxiaojie 00276951 2015.01.22
double cell concurrent download feature */
ret = -EPERM;
- if (!ns_capable(net->user_ns, CAP_NET_RAW) && !in_egroup_p(AID_INET))
+ if (!ns_capable(net->user_ns, CAP_NET_RAW))
goto out;
/* DTS2015012106130 guoxiaojie 00276951 2015.01.22
double cell concurrent download feature > */