Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

lib/: 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.

Signed-off-by: Alexander A. Klimov <grandmaster@al2klimov.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Acked-by: Coly Li <colyli@suse.de> [crc64.c]
Link: http://lkml.kernel.org/r/20200726112154.16510-1-grandmaster@al2klimov.de
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Alexander A. Klimov and committed by
Linus Torvalds
d89775fc 3adf3bae

+15 -15
+1 -1
lib/Kconfig.debug
··· 2215 2215 and associated macros. 2216 2216 2217 2217 KUnit tests run during boot and output the results to the debug log 2218 - in TAP format (http://testanything.org/). Only useful for kernel devs 2218 + in TAP format (https://testanything.org/). Only useful for kernel devs 2219 2219 running the KUnit test harness, and not intended for inclusion into a 2220 2220 production build. 2221 2221
+1 -1
lib/crc64.c
··· 4 4 * 5 5 * This is a basic crc64 implementation following ECMA-182 specification, 6 6 * which can be found from, 7 - * http://www.ecma-international.org/publications/standards/Ecma-182.htm 7 + * https://www.ecma-international.org/publications/standards/Ecma-182.htm 8 8 * 9 9 * Dr. Ross N. Williams has a great document to introduce the idea of CRC 10 10 * algorithm, here the CRC64 code is also inspired by the table-driven
+1 -1
lib/decompress_bunzip2.c
··· 34 34 Phone (337) 232-1234 or 1-800-738-2226 35 35 Fax (337) 232-1297 36 36 37 - http://www.hospiceacadiana.com/ 37 + https://www.hospiceacadiana.com/ 38 38 39 39 Manuel 40 40 */
+3 -3
lib/decompress_unlzma.c
··· 8 8 *implementation for lzma. 9 9 *Copyright (C) 2006 Aurelien Jacobs < aurel@gnuage.org > 10 10 * 11 - *Based on LzmaDecode.c from the LZMA SDK 4.22 (http://www.7-zip.org/) 11 + *Based on LzmaDecode.c from the LZMA SDK 4.22 (https://www.7-zip.org/) 12 12 *Copyright (C) 1999-2005 Igor Pavlov 13 13 * 14 14 *Copyrights of the parts, see headers below. ··· 56 56 /* Small range coder implementation for lzma. 57 57 *Copyright (C) 2006 Aurelien Jacobs < aurel@gnuage.org > 58 58 * 59 - *Based on LzmaDecode.c from the LZMA SDK 4.22 (http://www.7-zip.org/) 59 + *Based on LzmaDecode.c from the LZMA SDK 4.22 (https://www.7-zip.org/) 60 60 *Copyright (c) 1999-2005 Igor Pavlov 61 61 */ 62 62 ··· 213 213 * Small lzma deflate implementation. 214 214 * Copyright (C) 2006 Aurelien Jacobs < aurel@gnuage.org > 215 215 * 216 - * Based on LzmaDecode.c from the LZMA SDK 4.22 (http://www.7-zip.org/) 216 + * Based on LzmaDecode.c from the LZMA SDK 4.22 (https://www.7-zip.org/) 217 217 * Copyright (C) 1999-2005 Igor Pavlov 218 218 */ 219 219
+1 -1
lib/math/rational.c
··· 27 27 * with the fractional part size described in given_denominator. 28 28 * 29 29 * for theoretical background, see: 30 - * http://en.wikipedia.org/wiki/Continued_fraction 30 + * https://en.wikipedia.org/wiki/Continued_fraction 31 31 */ 32 32 33 33 void rational_best_approximation(
+1 -1
lib/rbtree.c
··· 13 13 #include <linux/export.h> 14 14 15 15 /* 16 - * red-black trees properties: http://en.wikipedia.org/wiki/Rbtree 16 + * red-black trees properties: https://en.wikipedia.org/wiki/Rbtree 17 17 * 18 18 * 1) A node is either red or black 19 19 * 2) The root is black
+1 -1
lib/ts_bm.c
··· 11 11 * [1] A Fast String Searching Algorithm, R.S. Boyer and Moore. 12 12 * Communications of the Association for Computing Machinery, 13 13 * 20(10), 1977, pp. 762-772. 14 - * http://www.cs.utexas.edu/users/moore/publications/fstrpos.pdf 14 + * https://www.cs.utexas.edu/users/moore/publications/fstrpos.pdf 15 15 * 16 16 * [2] Handbook of Exact String Matching Algorithms, Thierry Lecroq, 2004 17 17 * http://www-igm.univ-mlv.fr/~lecroq/string/string.pdf
+1 -1
lib/xxhash.c
··· 34 34 * ("BSD"). 35 35 * 36 36 * You can contact the author at: 37 - * - xxHash homepage: http://cyan4973.github.io/xxHash/ 37 + * - xxHash homepage: https://cyan4973.github.io/xxHash/ 38 38 * - xxHash source repository: https://github.com/Cyan4973/xxHash 39 39 */ 40 40
+1 -1
lib/xz/xz_crc32.c
··· 2 2 * CRC32 using the polynomial from IEEE-802.3 3 3 * 4 4 * Authors: Lasse Collin <lasse.collin@tukaani.org> 5 - * Igor Pavlov <http://7-zip.org/> 5 + * Igor Pavlov <https://7-zip.org/> 6 6 * 7 7 * This file has been put into the public domain. 8 8 * You can do whatever you want with this file.
+1 -1
lib/xz/xz_dec_bcj.c
··· 2 2 * Branch/Call/Jump (BCJ) filter decoders 3 3 * 4 4 * Authors: Lasse Collin <lasse.collin@tukaani.org> 5 - * Igor Pavlov <http://7-zip.org/> 5 + * Igor Pavlov <https://7-zip.org/> 6 6 * 7 7 * This file has been put into the public domain. 8 8 * You can do whatever you want with this file.
+1 -1
lib/xz/xz_dec_lzma2.c
··· 2 2 * LZMA2 decoder 3 3 * 4 4 * Authors: Lasse Collin <lasse.collin@tukaani.org> 5 - * Igor Pavlov <http://7-zip.org/> 5 + * Igor Pavlov <https://7-zip.org/> 6 6 * 7 7 * This file has been put into the public domain. 8 8 * You can do whatever you want with this file.
+1 -1
lib/xz/xz_lzma2.h
··· 2 2 * LZMA2 definitions 3 3 * 4 4 * Authors: Lasse Collin <lasse.collin@tukaani.org> 5 - * Igor Pavlov <http://7-zip.org/> 5 + * Igor Pavlov <https://7-zip.org/> 6 6 * 7 7 * This file has been put into the public domain. 8 8 * You can do whatever you want with this file.
+1 -1
lib/xz/xz_stream.h
··· 19 19 20 20 /* 21 21 * See the .xz file format specification at 22 - * http://tukaani.org/xz/xz-file-format.txt 22 + * https://tukaani.org/xz/xz-file-format.txt 23 23 * to understand the container format. 24 24 */ 25 25