From: zoucao-ipc <zoucaox@gmail.com>
To: Thomas Gleixner <tglx@linutronix.de>, zoucao@linux.alibaba.com
Cc: mingo@redhat.com, hpa@zytor.com, x86@kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] x86/boot/e820: add new chareater "-" to free BIOS memory in memmap bootargs
Date: Tue, 17 Apr 2018 22:40:54 +0800 [thread overview]
Message-ID: <5AD60776.5000602@gmail.com> (raw)
In-Reply-To: <alpine.DEB.2.21.1804171544290.1694@nanos.tec.linutronix.de>
On 2018/4/17 下午9:47, Thomas Gleixner wrote:
> On Tue, 10 Apr 2018, zoucao@linux.alibaba.com wrote:
>> From: zoucao <zoucao@localhost.localdomain>
> Interesting from ... Please use your real mail address for this.
miss this, i will do it.
>> Normally every BIOS reserved memory is used for some features, we can't
>> use them, but in some conditions, users can ensure some BIOS memories
>> are not used and reserved memory is well to free, they have not a good
>> way to free these memories, here add a new chareater "-" in memmap to
>> free reserved memory.
> I'm not really convinced about this. How should anyone without detailed
> BIOS knowledge know that this is really reusable?
>
> The person who knows must have access to the BIOS developer, so why can't
> the BIOS be fixed instead?
>
> Thanks,
>
> tglx
>
>> Signed-off-by: zou cao <zoucao@linux.alibaba.com>
>> ---
>> 7u/Documentation/kernel-parameters.txt | 6 ++++++
>> 7u/arch/x86/kernel/e820.c | 3 +++
>> 2 files changed, 9 insertions(+)
>>
>> diff --git a/7u/Documentation/kernel-parameters.txt b/7u/Documentation/kernel-parameters.txt
>> index 9a1abb99a..dbea75e12 100644
>> --- a/7u/Documentation/kernel-parameters.txt
>> +++ b/7u/Documentation/kernel-parameters.txt
>> @@ -1677,6 +1677,12 @@ bytes respectively. Such letter suffixes can also be entirely omitted.
>> or
>> memmap=0x10000$0x18690000
>>
>> + memmap=nn[KMG]-ss[KMG]
>> + Free E820 reserved memory, as specified by the user.
>> + Region of reserved memory to be free, from ss to ss+nn.
>> + Example: free reserved memory from 0x18690000-0x186a0000
>> + memmap=0x4101000-0x6aeff000
>> +
>> memory_corruption_check=0/1 [X86]
>> Some BIOSes seem to corrupt the first 64k of
>> memory when doing things like suspend/resume.
>> diff --git a/7u/arch/x86/kernel/e820.c b/7u/arch/x86/kernel/e820.c
>> index 174da5fc5..b8a042981 100644
>> --- a/7u/arch/x86/kernel/e820.c
>> +++ b/7u/arch/x86/kernel/e820.c
>> @@ -875,6 +875,9 @@ static int __init parse_memmap_one(char *p)
>> } else if (*p == '$') {
>> start_at = memparse(p+1, &p);
>> e820_add_region(start_at, mem_size, E820_RESERVED);
>> + } else if (*p == '-') {
>> + start_at = memparse(p+1, &p);
>> + e820_remove_range(start_at, mem_size, E820_RESERVED, E820_RAM);
>> } else
>> e820_remove_range(mem_size, ULLONG_MAX - mem_size, E820_RAM, 1);
>>
>> --
>> 2.14.1.40.g8e62ba1
>>
>>
next prev parent reply other threads:[~2018-04-17 14:41 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-04-10 2:59 [PATCH V2] x86/boot/e820: add new chareater - to free BIOS memory in memmap bootargs zoucao
2018-04-10 2:59 ` [PATCH] x86/boot/e820: add new chareater "-" " zoucao
2018-04-16 11:06 ` zoucao-ipc
2018-04-17 6:18 ` zoucao-ipc
2018-04-17 10:22 ` Thomas Gleixner
2018-04-17 13:11 ` zoucao-ipc
2018-04-17 13:47 ` Thomas Gleixner
2018-04-17 14:40 ` zoucao-ipc [this message]
-- strict thread matches above, loose matches on Subject: below --
2018-04-08 6:41 [PATCH] free e820 reserved memory in bootargs memmap zoucao
2018-04-08 6:41 ` [PATCH] x86/boot/e820: add new chareater "-" to free BIOS memory in memmap bootargs zoucao
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5AD60776.5000602@gmail.com \
--to=zoucaox@gmail.com \
--cc=hpa@zytor.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=tglx@linutronix.de \
--cc=x86@kernel.org \
--cc=zoucao@linux.alibaba.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.