From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.0 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 12FD3C433E0 for ; Mon, 27 Jul 2020 20:11:24 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id DFF0F2075D for ; Mon, 27 Jul 2020 20:11:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1595880683; bh=GxeKXEE2DLMYLtPViU371CysPytY7B2g8OMQoBRkUuA=; h=Date:From:To:Subject:In-Reply-To:Reply-To:List-ID:From; b=ILSbGLbPgnAkivKdgOJlqZ1lPuQW4ex2UFfuKO4oWRSWJT0/UCkTfvetpCAsTcYIN cIb7GMRvfnb8HOLmznzlr8XBbhIyb76Ziu+SfgDvUn0AwUxpMyp+1LC68QzVIYWOD5 jCyKX1+KSpcp5RRN5zKKWtaSfk//N/i+e6q+46II= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728340AbgG0ULX (ORCPT ); Mon, 27 Jul 2020 16:11:23 -0400 Received: from mail.kernel.org ([198.145.29.99]:47372 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726451AbgG0ULX (ORCPT ); Mon, 27 Jul 2020 16:11:23 -0400 Received: from localhost.localdomain (c-73-231-172-41.hsd1.ca.comcast.net [73.231.172.41]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 8570620729; Mon, 27 Jul 2020 20:11:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1595880682; bh=GxeKXEE2DLMYLtPViU371CysPytY7B2g8OMQoBRkUuA=; h=Date:From:To:Subject:In-Reply-To:From; b=KQGiksH+Ezn3tfo3ibzqcENtFTSmpeRi8CnWtcfVeOYZME1lU7rDvLWFwvhQRd98C LHPx79wXgyS0ZeCzuFcywKBh8K+fLPVOvAyTMHhkFUVHu08RkrWx1Lf9Fljl+6bajp 2T2m9Payhme8jWyMKB9lbE3Wl+Fi06FUSp8x+d2o= Date: Mon, 27 Jul 2020 13:11:22 -0700 From: Andrew Morton To: grandmaster@al2klimov.de, mm-commits@vger.kernel.org Subject: + tools-replace-http-links-with-https-ones.patch added to -mm tree Message-ID: <20200727201122.LtgobtzcT%akpm@linux-foundation.org> In-Reply-To: <20200723211432.b31831a0df3bc2cbdae31b40@linux-foundation.org> User-Agent: s-nail v14.8.16 Sender: mm-commits-owner@vger.kernel.org Precedence: bulk Reply-To: linux-kernel@vger.kernel.org List-ID: X-Mailing-List: mm-commits@vger.kernel.org The patch titled Subject: tools/: replace HTTP links with HTTPS ones has been added to the -mm tree. Its filename is tools-replace-http-links-with-https-ones.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/tools-replace-http-links-with-https-ones.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/tools-replace-http-links-with-https-ones.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: "Alexander A. Klimov" Subject: tools/: 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. Link: http://lkml.kernel.org/r/20200726120752.16768-1-grandmaster@al2klimov.de Signed-off-by: Alexander A. Klimov Signed-off-by: Andrew Morton --- tools/include/linux/jhash.h | 2 +- tools/lib/rbtree.c | 2 +- tools/lib/traceevent/event-parse.h | 2 +- tools/testing/ktest/examples/README | 2 +- tools/testing/ktest/examples/crosstests.conf | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) --- a/tools/include/linux/jhash.h~tools-replace-http-links-with-https-ones +++ a/tools/include/linux/jhash.h @@ -5,7 +5,7 @@ * * Copyright (C) 2006. Bob Jenkins (bob_jenkins@burtleburtle.net) * - * http://burtleburtle.net/bob/hash/ + * https://burtleburtle.net/bob/hash/ * * These are the credits from Bob's sources: * --- a/tools/lib/rbtree.c~tools-replace-http-links-with-https-ones +++ a/tools/lib/rbtree.c @@ -13,7 +13,7 @@ #include /* - * red-black trees properties: http://en.wikipedia.org/wiki/Rbtree + * red-black trees properties: https://en.wikipedia.org/wiki/Rbtree * * 1) A node is either red or black * 2) The root is black --- a/tools/lib/traceevent/event-parse.h~tools-replace-http-links-with-https-ones +++ a/tools/lib/traceevent/event-parse.h @@ -379,7 +379,7 @@ enum tep_errno { * errno since SUS requires the errno has distinct positive values. * See 'Issue 6' in the link below. * - * http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/errno.h.html + * https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/errno.h.html */ __TEP_ERRNO__START = -100000, --- a/tools/testing/ktest/examples/crosstests.conf~tools-replace-http-links-with-https-ones +++ a/tools/testing/ktest/examples/crosstests.conf @@ -3,7 +3,7 @@ # # In this config, it is expected that the tool chains from: # -# http://kernel.org/pub/tools/crosstool/files/bin/x86_64/ +# https://kernel.org/pub/tools/crosstool/files/bin/x86_64/ # # running on a x86_64 system have been downloaded and installed into: # --- a/tools/testing/ktest/examples/README~tools-replace-http-links-with-https-ones +++ a/tools/testing/ktest/examples/README @@ -11,7 +11,7 @@ crosstests.conf - this config shows an e lots of different architectures. It only does build tests, but makes it easy to compile test different archs. You can download the arch cross compilers from: - http://kernel.org/pub/tools/crosstool/files/bin/x86_64/ + https://kernel.org/pub/tools/crosstool/files/bin/x86_64/ test.conf - A generic example of a config. This is based on an actual config used to perform real testing. _ Patches currently in -mm which might be from grandmaster@al2klimov.de are tools-replace-http-links-with-https-ones.patch ocfs2-replace-http-links-with-https-ones.patch mm-thp-replace-http-links-with-https-ones.patch vfat-fat-msdos-filesystem-replace-http-links-with-https-ones.patch