forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
EDAC: Replace HTTP links with HTTPS ones
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 neither `\bgnu\.org/license`, nor `\bmozilla\.org/MPL\b`: If both the HTTP and HTTPS versions return 200 OK and serve the same content: Replace HTTP with HTTPS. [ bp: Merge all EDAC patches into a single one. ] Signed-off-by: Alexander A. Klimov <[email protected]> Signed-off-by: Borislav Petkov <[email protected]> Acked-by: Tero Kristo <[email protected]> # ti_edac Link: https://lkml.kernel.org/r/[email protected]
- Loading branch information
1 parent
9123e3a
commit 7d4c1ea
Showing
8 changed files
with
13 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
* Ben Woodard <[email protected]> | ||
* Mauro Carvalho Chehab | ||
* | ||
* Red Hat Inc. http://www.redhat.com | ||
* Red Hat Inc. https://www.redhat.com | ||
* | ||
* Forked and adapted from the i5000_edac driver which was | ||
* written by Douglas Thompson Linux Networx <[email protected]> | ||
|
@@ -1460,7 +1460,7 @@ module_exit(i5400_exit); | |
MODULE_LICENSE("GPL"); | ||
MODULE_AUTHOR("Ben Woodard <[email protected]>"); | ||
MODULE_AUTHOR("Mauro Carvalho Chehab"); | ||
MODULE_AUTHOR("Red Hat Inc. (http://www.redhat.com)"); | ||
MODULE_AUTHOR("Red Hat Inc. (https://www.redhat.com)"); | ||
MODULE_DESCRIPTION("MC Driver for Intel I5400 memory controllers - " | ||
I5400_REVISION); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters