From: Glauber Costa <glommer@redhat.com>
To: Anthony Liguori <anthony@codemonkey.ws>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] split memory allocation
Date: Thu, 11 Sep 2008 11:42:03 -0300 [thread overview]
Message-ID: <20080911144203.GB24285@poweredge.glommer> (raw)
In-Reply-To: <48C92CC0.8030606@codemonkey.ws>
On Thu, Sep 11, 2008 at 09:35:44AM -0500, Anthony Liguori wrote:
> Aurelien Jarno wrote:
>> Glauber Costa a écrit :
>>
>>> Right now, kvm keeps the memory allocation split, so we can
>>> handle different areas in different ways. This schema works with qemu
>>> too, so it appears to be the common ground.
>>>
>>> This patch proposes using this common ground for everyone, by spliting
>>> raw qemu.
>>>
>>> Signed-off-by: Glauber Costa <glommer@redhat.com>
>>> ---
>>> hw/pc.c | 16 ++++++++++++----
>>> 1 files changed, 12 insertions(+), 4 deletions(-)
>>>
>>> diff --git a/hw/pc.c b/hw/pc.c
>>> index 435c7d4..d6084ee 100644
>>> --- a/hw/pc.c
>>> +++ b/hw/pc.c
>>> @@ -777,16 +777,24 @@ static void pc_init1(ram_addr_t ram_size, int vga_ram_size,
>>> vmport_init();
>>> /* allocate RAM */
>>> - ram_addr = qemu_ram_alloc(ram_size);
>>> - cpu_register_physical_memory(0, below_4g_mem_size, ram_addr);
>>> + ram_addr = qemu_ram_alloc(0xa0000);
>>> + cpu_register_physical_memory(0, 0xa0000, ram_addr);
>>> +
>>> + ram_addr = qemu_ram_alloc(0x100000 - 0xa0000); /* hole */
>>>
>>
>> What the point of allocating RAM for the memory hole if it is not mapped?
>>
>
> If you don't, you violate the phys_ram_base + PA assumption for all of
> memory. No code should rely on this but practically speaking, there is
> still some code in QEMU that does.
>
> Since the RAM is never touched, it doesn't actually impact the RSS size
> so it's not all that important.
>
> Regards,
>
> Anthony Liguori
>
Precisely.
We actually saw this a while ago. the kernel loader was broken due to that.
next prev parent reply other threads:[~2008-09-11 14:43 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-09-11 13:42 [Qemu-devel] [PATCH] split memory allocation Glauber Costa
2008-09-11 14:18 ` Aurelien Jarno
2008-09-11 14:35 ` Anthony Liguori
2008-09-11 14:42 ` Glauber Costa [this message]
2008-09-11 14:43 ` [Qemu-devel] " Anthony Liguori
2008-09-11 15:03 ` Glauber Costa
2008-09-11 15:29 ` Avi Kivity
2008-09-11 18:31 ` Glauber Costa
2008-09-19 23:29 ` Avi Kivity
2008-09-11 15:28 ` [Qemu-devel] " Avi Kivity
-- strict thread matches above, loose matches on Subject: below --
2008-09-12 13:18 Glauber Costa
2008-09-15 15:49 Glauber Costa
2008-09-15 16:00 ` Anthony Liguori
2008-09-15 16:11 ` Glauber Costa
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=20080911144203.GB24285@poweredge.glommer \
--to=glommer@redhat.com \
--cc=anthony@codemonkey.ws \
--cc=qemu-devel@nongnu.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).