From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933241AbbLHIII (ORCPT ); Tue, 8 Dec 2015 03:08:08 -0500 Received: from mgwkm04.jp.fujitsu.com ([202.219.69.171]:33647 "EHLO mgwkm04.jp.fujitsu.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933124AbbLHIIG (ORCPT ); Tue, 8 Dec 2015 03:08:06 -0500 From: "Izumi, Taku" To: Andrew Morton , "tony.luck@intel.com" CC: "linux-kernel@vger.kernel.org" , "linux-mm@kvack.org" , "qiuxishi@huawei.com" , "Kamezawa, Hiroyuki" , "mel@csn.ul.ie" , "dave.hansen@intel.com" , "matt@codeblueprint.co.uk" Subject: RE: [PATCH v2 0/2] mm: Introduce kernelcore=reliable option Thread-Topic: [PATCH v2 0/2] mm: Introduce kernelcore=reliable option Thread-Index: AQHRKNkG+//TUt5LIUSV+AkiM8r7U56/tugAgAELISA= Date: Tue, 8 Dec 2015 08:07:59 +0000 Message-ID: References: <1448636635-15946-1-git-send-email-izumi.taku@jp.fujitsu.com> <20151207163112.930a495d24ab259cad9020ac@linux-foundation.org> In-Reply-To: <20151207163112.930a495d24ab259cad9020ac@linux-foundation.org> Accept-Language: ja-JP, en-US Content-Language: ja-JP X-MS-Has-Attach: X-MS-TNEF-Correlator: x-securitypolicycheck: OK by SHieldMailChecker v2.3.2 x-shieldmailcheckerpolicyversion: FJ-ISEC-20150624-1 x-shieldmailcheckermailid: 5a36e48dbf294b4d8bc64144000c474c x-originating-ip: [10.124.102.50] Content-Type: text/plain; charset="iso-2022-jp" MIME-Version: 1.0 X-SecurityPolicyCheck-GC: OK by FENCE-Mail X-TM-AS-MML: disable Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Dear Tony, Thanks for testing! Dear Andrew, > > Xeon E7 v3 based systems supports Address Range Mirroring > > and UEFI BIOS complied with UEFI spec 2.5 can notify which > > ranges are reliable (mirrored) via EFI memory map. > > Now Linux kernel utilize its information and allocates > > boot time memory from reliable region. > > > > My requirement is: > > - allocate kernel memory from reliable region > > - allocate user memory from non-reliable region > > > > In order to meet my requirement, ZONE_MOVABLE is useful. > > By arranging non-reliable range into ZONE_MOVABLE, > > reliable memory is only used for kernel allocations. > > > > My idea is to extend existing "kernelcore" option and > > introduces kernelcore=reliable option. By specifying > > "reliable" instead of specifying the amount of memory, > > non-reliable region will be arranged into ZONE_MOVABLE. > > It is unfortunate that the kernel presently refers to this memory as > "mirrored", but this patchset introduces the new term "reliable". I > think it would be better if we use "mirrored" throughout. > Of course, mirroring isn't the only way to get reliable memory. YES. "mirroring" is not the only way. So, in my opinion, we should change "mirrored" into "reliable" in order to match terms of UEFI 2.5 spec. > Perhaps if a part of the system memory has ECC correction then this > also can be accessed using "reliable", in which case your proposed > naming makes sense. reliable == mirrored || ecc? "reliable" is better. But, I'm willing to change "reliable" into "mirrored". Otherwise, I keep "kernelcore=reliable" and add the following minimal fix as a separate patch: diff a/arch/x86/platform/efi/efi.c b/arch/x86/platform/efi/efi.c --- a/arch/x86/platform/efi/efi.c +++ b/arch/x86/platform/efi/efi.c @@ -134,7 +134,7 @@ void __init efi_find_mirror(void) } } if (mirror_size) - pr_info("Memory: %lldM/%lldM mirrored memory\n", + pr_info("Memory: %lldM/%lldM reliable memory\n", mirror_size>>20, total_size>>20); } Which do you think is beter ? - change into kernelcore="mirrored" - keep kernelcore="reliable" and minmal printk fix > > Secondly, does this patchset mean that kernelcore=reliable and > kernelcore=100M are exclusive? Or can the user specify > "kernelcore=reliable,kernelcore=100M" to use 100M of reliable memory > for kernelcore? No, these are exclusive. > > This is unclear from the documentation and I suggest that this be > spelled out. Thanks. I'll update its document. Sincerely, Taku Izumi