fb7f99efe2
Unmaintained is a name which on multiple occasions have seen lead to confusion with people having the impression that unmaintained is for all unmaintained devices, which is not how we're really using it. Many devices in testing do not actually have a maintainer, yet there has been no push to move these out of there and into unmaintained. I think this is a result of that unmaintained was introduced not to keep unmaintained ports but rather a place to store ports that have a better replacement but where the inferior one still holds some sort of value, such as for debugging purposes. These ports also are not necessarily entirely unmaintained and see more fixes than many ports in testing. While one approach to solving this problem could be to simply moving all unmaintained ports to unmaintained, I think this comes with some problems: It would require an initial effort to figure out which ports are indeed unmaintained and which just don't have a maintained noted in the package, and given how many ports there are in testing this would be a big endeavour. It would also require continuous work on moving ports into unmaintained as the maintainers go silent if we are to keep testing and unmaintained's state consistent with reality. Additionally, just because a port doesn't have a maintainer on paper doens't mean that there aren't people who aren't willing to fix it up if there are issues that arise. As such, I think the way to go is renaming unmaintained to better reflect the original intent. Thanks to Luca Weiss for suggesting "archive", and to Arnav Singh for suggesting that "archived" would match the other category names better.
43 lines
1.6 KiB
Diff
43 lines
1.6 KiB
Diff
From 2e32a401ea5df22ab899f4da3e5e1b448b2df51a Mon Sep 17 00:00:00 2001
|
|
From: Alexey Min <alexey.min@gmail.com>
|
|
Date: Thu, 7 Mar 2019 17:25:48 +0300
|
|
Subject: [PATCH 5/6] usb_gadget: set random rndis host MAC address to prevent
|
|
zero address
|
|
|
|
This fixes zero host MAC:
|
|
|
|
rndis0: MAC f6:45:91:9b:4e:43
|
|
rndis0: HOST MAC 00:00:00:00:00:00
|
|
|
|
and allows devive to automatically obtain IP addrest on PC host side
|
|
zero MAC address prevented interface from autoconfiguring
|
|
---
|
|
drivers/usb/gadget/u_ether.c | 12 ++++++++++--
|
|
1 file changed, 10 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/drivers/usb/gadget/u_ether.c b/drivers/usb/gadget/u_ether.c
|
|
index 72c4a992594..c0fc0698697 100644
|
|
--- a/drivers/usb/gadget/u_ether.c
|
|
+++ b/drivers/usb/gadget/u_ether.c
|
|
@@ -1075,8 +1075,16 @@ int gether_setup_name(struct usb_gadget *g, u8 ethaddr[ETH_ALEN],
|
|
"using random %s ethernet address\n", "self");
|
|
|
|
#ifdef CONFIG_USB_ANDROID_SAMSUNG_COMPOSITE
|
|
- memcpy(dev->host_mac, ethaddr, ETH_ALEN);
|
|
- printk(KERN_DEBUG "usb: set unique host mac\n");
|
|
+ if ((ethaddr[0] == 0x00) && (ethaddr[1] == 0x00) &&
|
|
+ (ethaddr[2] == 0x00) && (ethaddr[3] == 0x00) &&
|
|
+ (ethaddr[4] == 0x00) && (ethaddr[5] == 0x00)) {
|
|
+ printk(KERN_DEBUG "%s: no unique host MAC was set, generate random\n", __func__);
|
|
+ /* we can use random_ether_addr() from include/linux/etherdevice.h */
|
|
+ random_ether_addr(ethaddr);
|
|
+ } else {
|
|
+ printk(KERN_DEBUG "%s: set unique host mac\n", __func__);
|
|
+ }
|
|
+ memcpy(dev->host_mac, ethaddr, ETH_ALEN);
|
|
#else
|
|
if (get_ether_addr(host_addr, dev->host_mac))
|
|
dev_warn(&g->dev,
|
|
--
|
|
2.21.0
|
|
|