qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Alexey Kardashevskiy <aik@ozlabs.ru>
To: qemu-devel@nongnu.org
Cc: Alexey Kardashevskiy <aik@ozlabs.ru>,
	green@moxielogic.com, qemu-ppc@nongnu.org,
	Alexander Graf <agraf@suse.de>
Subject: [Qemu-devel] [PATCH v3 2/4] moxie: fix load_elf() usage
Date: Tue,  4 Feb 2014 15:04:17 +1100	[thread overview]
Message-ID: <1391486659-6584-3-git-send-email-aik@ozlabs.ru> (raw)
In-Reply-To: <1391486659-6584-1-git-send-email-aik@ozlabs.ru>

At the moment in the case of error, load_elf() returns -1 so load_kernel()
will not signal error at all.

Cc: green@moxielogic.com
Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
---
 hw/moxie/moxiesim.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hw/moxie/moxiesim.c b/hw/moxie/moxiesim.c
index ef4f3a8..a87ca6d 100644
--- a/hw/moxie/moxiesim.c
+++ b/hw/moxie/moxiesim.c
@@ -55,7 +55,7 @@ static void load_kernel(MoxieCPU *cpu, LoaderParams *loader_params)
                            &entry, &kernel_low, &kernel_high, 1,
                            ELF_MACHINE, 0);
 
-    if (!kernel_size) {
+    if (kernel_size <= 0) {
         fprintf(stderr, "qemu: could not load kernel '%s'\n",
                 loader_params->kernel_filename);
         exit(1);
-- 
1.8.4.rc4

  parent reply	other threads:[~2014-02-04  4:04 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-02-04  4:04 [Qemu-devel] [PATCH v3 0/4] elf loader: exit if incompatible architecture is detected Alexey Kardashevskiy
2014-02-04  4:04 ` [Qemu-devel] [PATCH v3 1/4] spapr: support only ELF kernel images Alexey Kardashevskiy
2014-02-04  4:04 ` Alexey Kardashevskiy [this message]
2014-02-04  4:04 ` [Qemu-devel] [PATCH v3 3/4] elf-loader: add more return codes Alexey Kardashevskiy
2014-02-04  4:04 ` [Qemu-devel] [PATCH v3 4/4] spapr: print more detailed error message on failed load_elf() Alexey Kardashevskiy
2014-02-06 14:45 ` [Qemu-devel] [PATCH v3 0/4] elf loader: exit if incompatible architecture is detected Alexander Graf

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=1391486659-6584-3-git-send-email-aik@ozlabs.ru \
    --to=aik@ozlabs.ru \
    --cc=agraf@suse.de \
    --cc=green@moxielogic.com \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-ppc@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).