diff options
author | Alexander A. Klimov <grandmaster@al2klimov.de> | 2020-07-06 23:50:18 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-07-08 01:44:27 +0300 |
commit | 1fd52137d3cffcd17225574052e7f34b85f1572b (patch) | |
tree | 6668fdc8585dd899046317bc340ec0581beda6ad /drivers/net/ethernet/aeroflex | |
parent | 2291bde8c0cfc01090473802a7c03a38171daacb (diff) | |
download | linux-1fd52137d3cffcd17225574052e7f34b85f1572b.tar.xz |
Replace HTTP links with HTTPS ones: GRETH 10/100/1G Ethernet MAC device driver
Rationale:
Reduces attack surface on kernel devs opening the links for MITM
as HTTPS traffic is much harder to manipulate.
Deterministic algorithm:
For each file:
If not .svg:
For each line:
If doesn't contain `\bxmlns\b`:
For each link, `\bhttp://[^# \t\r\n]*(?:\w|/)`:
If both the HTTP and HTTPS versions
return 200 OK and serve the same content:
Replace HTTP with HTTPS.
Signed-off-by: Alexander A. Klimov <grandmaster@al2klimov.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/aeroflex')
-rw-r--r-- | drivers/net/ethernet/aeroflex/greth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/aeroflex/greth.c b/drivers/net/ethernet/aeroflex/greth.c index bf546118dbc6..9c5891bbfe61 100644 --- a/drivers/net/ethernet/aeroflex/greth.c +++ b/drivers/net/ethernet/aeroflex/greth.c @@ -8,7 +8,7 @@ * available in the GRLIB VHDL IP core library. * * Full documentation of both cores can be found here: - * http://www.gaisler.com/products/grlib/grip.pdf + * https://www.gaisler.com/products/grlib/grip.pdf * * The Gigabit version supports scatter/gather DMA, any alignment of * buffers and checksum offloading. |