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=-14.8 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, MENTIONS_GIT_HOSTING,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS autolearn=unavailable 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 0701DC433E5 for ; Fri, 17 Jul 2020 11:22:17 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id D0EB720734 for ; Fri, 17 Jul 2020 11:22:16 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=linutronix.de header.i=@linutronix.de header.b="UdIeY/UD"; dkim=permerror (0-bit key) header.d=linutronix.de header.i=@linutronix.de header.b="3ScILym6" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726593AbgGQLWO (ORCPT ); Fri, 17 Jul 2020 07:22:14 -0400 Received: from Galois.linutronix.de ([193.142.43.55]:40090 "EHLO galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725932AbgGQLWI (ORCPT ); Fri, 17 Jul 2020 07:22:08 -0400 Date: Fri, 17 Jul 2020 11:22:05 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1594984926; h=from:from:sender:sender:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=idHQYFdvpTfN+lfpXHJSjMEYHdLgakbFkGuD1k5Q+4Y=; b=UdIeY/UD2fyo7vgR15iVMYJHo21y+tjA2y/QLaqCalEsmdy5ZtIW7de9pwUNvhtVmj3qFh Bc2xA99yEmuFRhcrwFBvN4W5UXIVeAfl09WLzVNl6AFTGIx6w4rmyJ2bgyV4nKKzZiN7Tk KUwE97tExwKHyExhxX+peqX3bge/Qsi8OXaoZ9KO+tXMRW5fHMFK4uaE2PGURmu2KqSmbC VO8jclcqVNZE9SsDYjgh3PLshE5EzpZSE3rDNp7cW865mRwLpE+CEycxGl04JuOYnZnQM9 rh1cv//6xsRhw4rrV3UfIOUY1yXOQV4iBVR9jIQdCHXnEusIhF5pMAU/7OAaMw== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1594984926; h=from:from:sender:sender:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=idHQYFdvpTfN+lfpXHJSjMEYHdLgakbFkGuD1k5Q+4Y=; b=3ScILym6/1YlTZ2h9kDhm5zUcqcaF6/R6c04q7cwQlCIDPsZCHJLF/NTRq3+Ks0EXy9g1f dGqD8ZU/8AOv1EBQ== From: "tip-bot2 for Alexander A. Klimov" Reply-to: linux-kernel@vger.kernel.org To: linux-tip-commits@vger.kernel.org Subject: [tip: locking/core] docs: locking: Replace HTTP links with HTTPS ones Cc: "Alexander A. Klimov" , "Peter Zijlstra (Intel)" , x86 , LKML In-Reply-To: <20200713115728.33905-1-grandmaster@al2klimov.de> References: <20200713115728.33905-1-grandmaster@al2klimov.de> MIME-Version: 1.0 Message-ID: <159498492557.4006.1686830928434874554.tip-bot2@tip-bot2> Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The following commit has been merged into the locking/core branch of tip: Commit-ID: 482cbb6cc33dca60091048631cd0a8dde72c3da7 Gitweb: https://git.kernel.org/tip/482cbb6cc33dca60091048631cd0a8dde72c3da7 Author: Alexander A. Klimov AuthorDate: Mon, 13 Jul 2020 13:57:28 +02:00 Committer: Peter Zijlstra CommitterDate: Thu, 16 Jul 2020 23:19:51 +02:00 docs: locking: 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. Signed-off-by: Alexander A. Klimov Signed-off-by: Peter Zijlstra (Intel) Link: https://lkml.kernel.org/r/20200713115728.33905-1-grandmaster@al2klimov.de --- Documentation/locking/mutex-design.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/locking/mutex-design.rst b/Documentation/locking/mutex-design.rst index 4d8236b..8f3e9a5 100644 --- a/Documentation/locking/mutex-design.rst +++ b/Documentation/locking/mutex-design.rst @@ -18,7 +18,7 @@ as an alternative to these. This new data structure provided a number of advantages, including simpler interfaces, and at that time smaller code (see Disadvantages). -[1] http://lwn.net/Articles/164802/ +[1] https://lwn.net/Articles/164802/ Implementation --------------