Received: by 2002:ac0:a5a6:0:0:0:0:0 with SMTP id m35-v6csp1833374imm; Mon, 3 Sep 2018 10:36:35 -0700 (PDT) X-Google-Smtp-Source: ANB0VdaVU8hizZWXFXEEA7blQ595IKnKODL8ZTLNlIMBGX33k58b4mM5j27A/Kp42srb8FvRAUlJ X-Received: by 2002:a17:902:758a:: with SMTP id j10-v6mr30185151pll.281.1535996195671; Mon, 03 Sep 2018 10:36:35 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1535996195; cv=none; d=google.com; s=arc-20160816; b=uILKemaY+05mnt7LzpijFExakXWSJ+jAGNeXOwDm3/aNjQAY+hLyQmgVgru2cmGRco Z6Ee6AQZF6Jr+oUHoPGQgVe+r9zxJluMbUD3YAc/iNfE6sNTw6NLpUl++0v7TDyTIfT3 rSZ2E+LyjkTZwgOMpMzprAWJFsriQHl4sH1H9yQoZl2VqIHcy6ISKy3/a1iWPiSqyXXi A4cvuY7iWmFmdBXeVjshDvmHrdR3KoIG0BoqXVEL7lte9MBwIRoctOJv9pO0QnSDkOxc CVMAer7aRPhVzZkM1OPdD5PnCN0eap4yG+BzhaUPNXkgy5o8hk2Spn30UMDvIOegKxvX 9MdQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:user-agent:references :in-reply-to:message-id:date:subject:cc:to:from :arc-authentication-results; bh=VvCfHENWcfSP2G8Z8wYYa6tFS6t9PL+/68jeWYQ3OqY=; b=B6ukqYSYKEvN1DiwTC7//P7JG7vzmcmFgjzGirZgIBtYLOAdyc0dVvfU57xINO1X4d 6Ilk+3NhbMxv4mLPvP1HPyO16bVGSBRgrsxqLD2aWkPria1DnFUstiJ4fqDDOCXrDUWl l8wMohD4BVb5zar39NfFBIganh9ux4fDOlXWBjxrf+3FA5WzPkkqsL2m1sVAFhyIiGcM rzvyfuS0tLEbs3IOamneGWLGSgXgAa2qFn1E2QK4bTWwrQD5yZNuiujFPDWm5rJRVmIR fQ8db+jGw1EFKPtJv4lp6I0XuXLen1WoJTbcQI+wCTpLW51wgg0FNmcestBuIk5/RXeC PpEg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id o9-v6si18515076pgf.331.2018.09.03.10.36.20; Mon, 03 Sep 2018 10:36:35 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731438AbeICV4F (ORCPT + 99 others); Mon, 3 Sep 2018 17:56:05 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:47886 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728335AbeICV4D (ORCPT ); Mon, 3 Sep 2018 17:56:03 -0400 Received: from localhost (ip-213-127-74-90.ip.prioritytelecom.net [213.127.74.90]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id CCA60D1B; Mon, 3 Sep 2018 17:34:53 +0000 (UTC) From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Michal Hocko , Vlastimil Babka , "H . Peter Anvin" , Linus Torvalds , Andi Kleen , Dave Hansen Subject: [PATCH 4.18 053/123] x86/speculation/l1tf: Suggest what to do on systems with too much RAM Date: Mon, 3 Sep 2018 18:56:37 +0200 Message-Id: <20180903165721.693973721@linuxfoundation.org> X-Mailer: git-send-email 2.18.0 In-Reply-To: <20180903165719.499675257@linuxfoundation.org> References: <20180903165719.499675257@linuxfoundation.org> User-Agent: quilt/0.65 X-stable: review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 4.18-stable review patch. If anyone has any objections, please let me know. ------------------ From: Vlastimil Babka commit 6a012288d6906fee1dbc244050ade1dafe4a9c8d upstream. Two users have reported [1] that they have an "extremely unlikely" system with more than MAX_PA/2 memory and L1TF mitigation is not effective. Make the warning more helpful by suggesting the proper mem=X kernel boot parameter to make it effective and a link to the L1TF document to help decide if the mitigation is worth the unusable RAM. [1] https://bugzilla.suse.com/show_bug.cgi?id=1105536 Suggested-by: Michal Hocko Signed-off-by: Vlastimil Babka Acked-by: Michal Hocko Cc: "H . Peter Anvin" Cc: Linus Torvalds Cc: Andi Kleen Cc: Dave Hansen Cc: stable@vger.kernel.org Link: https://lkml.kernel.org/r/966571f0-9d7f-43dc-92c6-a10eec7a1254@suse.cz Signed-off-by: Greg Kroah-Hartman --- arch/x86/kernel/cpu/bugs.c | 4 ++++ 1 file changed, 4 insertions(+) --- a/arch/x86/kernel/cpu/bugs.c +++ b/arch/x86/kernel/cpu/bugs.c @@ -686,6 +686,10 @@ static void __init l1tf_select_mitigatio half_pa = (u64)l1tf_pfn_limit() << PAGE_SHIFT; if (e820__mapped_any(half_pa, ULLONG_MAX - half_pa, E820_TYPE_RAM)) { pr_warn("System has more than MAX_PA/2 memory. L1TF mitigation not effective.\n"); + pr_info("You may make it effective by booting the kernel with mem=%llu parameter.\n", + half_pa); + pr_info("However, doing so will make a part of your RAM unusable.\n"); + pr_info("Reading https://www.kernel.org/doc/html/latest/admin-guide/l1tf.html might help you decide.\n"); return; }