From: Paolo Bonzini <pbonzini@redhat.com>
To: Igor Mammedov <imammedo@redhat.com>
Cc: "Marc-André Lureau" <marcandre.lureau@redhat.com>, qemu-devel@nongnu.org
Subject: Re: [PATCH] softmmu: fix crash with invalid -M memory-backend=
Date: Tue, 17 Mar 2020 16:40:56 +0100 [thread overview]
Message-ID: <71d93e5c-7c77-4577-d31a-a112be822904@redhat.com> (raw)
In-Reply-To: <20200317161342.53ae8b98@office.mammed.net>
On 17/03/20 16:13, Igor Mammedov wrote:
> On Mon, 9 Mar 2020 15:51:55 +0100
> Marc-André Lureau <marcandre.lureau@redhat.com> wrote:
>
>> Fixes: fe64d06afc1c5d895f220c268cfe4d5f1e65d44e ("vl.c: ensure that
>> ram_size matches size of machine.memory-backend")
>> Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
>
> Paolo,
>
> Can you pick up this patch for your pull req?
I've done it already, but I can send more.
Paolo
>> ---
>> softmmu/vl.c | 5 +++++
>> 1 file changed, 5 insertions(+)
>>
>> diff --git a/softmmu/vl.c b/softmmu/vl.c
>> index 5549f4b619..38e9c404f2 100644
>> --- a/softmmu/vl.c
>> +++ b/softmmu/vl.c
>> @@ -4287,6 +4287,11 @@ void qemu_init(int argc, char **argv, char **envp)
>>
>> backend = object_resolve_path_type(current_machine->ram_memdev_id,
>> TYPE_MEMORY_BACKEND, NULL);
>> + if (!backend) {
>> + error_report("Memory backend '%s' not found",
>> + current_machine->ram_memdev_id);
>> + exit(EXIT_FAILURE);
>> + }
>> backend_size = object_property_get_uint(backend, "size", &error_abort);
>> if (have_custom_ram_size && backend_size != ram_size) {
>> error_report("Size specified by -m option must match size of "
>
prev parent reply other threads:[~2020-03-17 15:46 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-03-09 14:51 [PATCH] softmmu: fix crash with invalid -M memory-backend= Marc-André Lureau
2020-03-09 15:20 ` no-reply
2020-03-09 15:26 ` Igor Mammedov
2020-03-09 16:36 ` Philippe Mathieu-Daudé
2020-03-17 15:13 ` Igor Mammedov
2020-03-17 15:40 ` Paolo Bonzini [this message]
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=71d93e5c-7c77-4577-d31a-a112be822904@redhat.com \
--to=pbonzini@redhat.com \
--cc=imammedo@redhat.com \
--cc=marcandre.lureau@redhat.com \
--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).