All of lore.kernel.org
 help / color / mirror / Atom feed
From: David Gibson <david@gibson.dropbear.id.au>
To: peter.maydell@linaro.org
Cc: mdroth@linux.vnet.ibm.com, aik@ozlabs.ru, qemu-devel@nongnu.org,
	agraf@suse.de, qemu-ppc@nongnu.org,
	David Gibson <david@gibson.dropbear.id.au>
Subject: [Qemu-devel] [PULL 17/40] pseries: Clean up error reporting in ppc_spapr_init()
Date: Mon,  1 Feb 2016 13:30:45 +1100	[thread overview]
Message-ID: <1454293868-12431-18-git-send-email-david@gibson.dropbear.id.au> (raw)
In-Reply-To: <1454293868-12431-1-git-send-email-david@gibson.dropbear.id.au>

This function includes a number of explicit fprintf()s for errors.
Change these to use error_report() instead.

Also replace the single exit(EXIT_FAILURE) with an explicit exit(1), since
the latter is the more usual idiom in qemu by a large margin.

Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Reviewed-by: Alexey Kardashevskiy <aik@ozlabs.ru>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
---
 hw/ppc/spapr.c | 23 ++++++++++++-----------
 1 file changed, 12 insertions(+), 11 deletions(-)

diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c
index 1281e07..c05ddfb 100644
--- a/hw/ppc/spapr.c
+++ b/hw/ppc/spapr.c
@@ -1789,8 +1789,8 @@ static void ppc_spapr_init(MachineState *machine)
     }
 
     if (spapr->rma_size > node0_size) {
-        fprintf(stderr, "Error: Numa node 0 has to span the RMA (%#08"HWADDR_PRIx")\n",
-                spapr->rma_size);
+        error_report("Numa node 0 has to span the RMA (%#08"HWADDR_PRIx")",
+                     spapr->rma_size);
         exit(1);
     }
 
@@ -1856,10 +1856,10 @@ static void ppc_spapr_init(MachineState *machine)
         ram_addr_t hotplug_mem_size = machine->maxram_size - machine->ram_size;
 
         if (machine->ram_slots > SPAPR_MAX_RAM_SLOTS) {
-            error_report("Specified number of memory slots %" PRIu64
-                         " exceeds max supported %d",
+            error_report("Specified number of memory slots %"
+                         PRIu64" exceeds max supported %d",
                          machine->ram_slots, SPAPR_MAX_RAM_SLOTS);
-            exit(EXIT_FAILURE);
+            exit(1);
         }
 
         spapr->hotplug_memory.base = ROUND_UP(machine->ram_size,
@@ -1955,8 +1955,9 @@ static void ppc_spapr_init(MachineState *machine)
     }
 
     if (spapr->rma_size < (MIN_RMA_SLOF << 20)) {
-        fprintf(stderr, "qemu: pSeries SLOF firmware requires >= "
-                "%ldM guest RMA (Real Mode Area memory)\n", MIN_RMA_SLOF);
+        error_report(
+            "pSeries SLOF firmware requires >= %ldM guest RMA (Real Mode Area memory)",
+            MIN_RMA_SLOF);
         exit(1);
     }
 
@@ -1972,8 +1973,8 @@ static void ppc_spapr_init(MachineState *machine)
             kernel_le = kernel_size > 0;
         }
         if (kernel_size < 0) {
-            fprintf(stderr, "qemu: error loading %s: %s\n",
-                    kernel_filename, load_elf_strerror(kernel_size));
+            error_report("error loading %s: %s",
+                         kernel_filename, load_elf_strerror(kernel_size));
             exit(1);
         }
 
@@ -1986,8 +1987,8 @@ static void ppc_spapr_init(MachineState *machine)
             initrd_size = load_image_targphys(initrd_filename, initrd_base,
                                               load_limit - initrd_base);
             if (initrd_size < 0) {
-                fprintf(stderr, "qemu: could not load initial ram disk '%s'\n",
-                        initrd_filename);
+                error_report("could not load initial ram disk '%s'",
+                             initrd_filename);
                 exit(1);
             }
         } else {
-- 
2.5.0

  parent reply	other threads:[~2016-02-01  2:30 UTC|newest]

Thread overview: 42+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-02-01  2:30 [Qemu-devel] [PULL 00/40] ppc-for-2.6 queue 20160201 David Gibson
2016-02-01  2:30 ` [Qemu-devel] [PULL 01/40] target-ppc: Use sensible POWER8/POWER8E versions David Gibson
2016-02-01  2:30 ` [Qemu-devel] [PULL 02/40] target-ppc: use cpu_write_xer() helper in cpu_post_load David Gibson
2016-02-01  2:30 ` [Qemu-devel] [PULL 03/40] macio: use the existing IDEDMA aiocb to hold the active DMA aiocb David Gibson
2016-02-01  2:30 ` [Qemu-devel] [PULL 04/40] macio: add dma_active to VMStateDescription David Gibson
2016-02-01  2:30 ` [Qemu-devel] [PULL 05/40] mac_dbdma: add DBDMA controller state " David Gibson
2016-02-01  2:30 ` [Qemu-devel] [PULL 06/40] cuda: add missing fields " David Gibson
2016-02-01  2:30 ` [Qemu-devel] [PULL 07/40] spapr: Small fixes to rtas_ibm_get_system_parameter, remove rtas_st_buffer David Gibson
2016-02-01  2:30 ` [Qemu-devel] [PULL 08/40] spapr: Remove rtas_st_buffer_direct() David Gibson
2016-02-01  2:30 ` [Qemu-devel] [PULL 09/40] spapr: Remove abuse of rtas_ld() in h_client_architecture_support David Gibson
2016-02-01  2:30 ` [Qemu-devel] [PULL 10/40] spapr: Don't create ibm, dynamic-reconfiguration-memory w/o DR LMBs David Gibson
2016-02-01  2:30 ` [Qemu-devel] [PULL 11/40] ppc: Clean up error handling in ppc_set_compat() David Gibson
2016-02-01  2:30 ` [Qemu-devel] [PULL 12/40] pseries: Clean up error handling of spapr_cpu_init() David Gibson
2016-02-01  2:30 ` [Qemu-devel] [PULL 13/40] pseries: Clean up error handling in spapr_validate_node_memory() David Gibson
2016-02-01  2:30 ` [Qemu-devel] [PULL 14/40] pseries: Clean up error handling in spapr_vga_init() David Gibson
2016-02-01  2:30 ` [Qemu-devel] [PULL 15/40] pseries: Clean up error handling in spapr_rtas_register() David Gibson
2016-02-01  2:30 ` [Qemu-devel] [PULL 16/40] pseries: Clean up error handling in xics_system_init() David Gibson
2016-02-01  2:30 ` David Gibson [this message]
2016-02-01  2:30 ` [Qemu-devel] [PULL 18/40] pseries: Clean up error reporting in htab migration functions David Gibson
2016-02-01  2:30 ` [Qemu-devel] [PULL 19/40] target-ppc: kvm: fix floating point registers sync on little-endian hosts David Gibson
2016-02-01  2:30 ` [Qemu-devel] [PULL 20/40] target-ppc: rename and export maybe_bswap_register() David Gibson
2016-02-01  2:30 ` [Qemu-devel] [PULL 21/40] target-ppc: gdbstub: fix float registers for little-endian guests David Gibson
2016-02-01  2:30 ` [Qemu-devel] [PULL 22/40] target-ppc: gdbstub: introduce avr_need_swap() David Gibson
2016-02-01  2:30 ` [Qemu-devel] [PULL 23/40] target-ppc: gdbstub: fix altivec registers for little-endian guests David Gibson
2016-02-01  2:30 ` [Qemu-devel] [PULL 24/40] target-ppc: gdbstub: fix spe " David Gibson
2016-02-01  2:30 ` [Qemu-devel] [PULL 25/40] target-ppc: gdbstub: Add VSX support David Gibson
2016-02-01  2:30 ` [Qemu-devel] [PULL 26/40] pseries: Allow TCG h_enter to work with hotplugged memory David Gibson
2016-02-01  2:30 ` [Qemu-devel] [PULL 27/40] cuda.c: return error for unknown commands David Gibson
2016-02-01  2:30 ` [Qemu-devel] [PULL 28/40] uninorth.c: add support for UniNorth kMacRISCPCIAddressSelect (0x48) register David Gibson
2016-02-01  2:30 ` [Qemu-devel] [PULL 29/40] target-ppc: Remove unused kvmppc_read_segment_page_sizes() stub David Gibson
2016-02-01  2:30 ` [Qemu-devel] [PULL 30/40] target-ppc: Convert mmu-hash{32, 64}.[ch] from CPUPPCState to PowerPCCPU David Gibson
2016-02-01  2:30 ` [Qemu-devel] [PULL 31/40] target-ppc: Rework ppc_store_slb David Gibson
2016-02-01  2:31 ` [Qemu-devel] [PULL 32/40] target-ppc: Rework SLB page size lookup David Gibson
2016-02-01  2:31 ` [Qemu-devel] [PULL 33/40] target-ppc: Use actual page size encodings from HPTE David Gibson
2016-02-01  2:31 ` [Qemu-devel] [PULL 34/40] target-ppc: Remove unused mmu models from ppc_tlb_invalidate_one David Gibson
2016-02-01  2:31 ` [Qemu-devel] [PULL 35/40] target-ppc: Split 44x tlbiva from ppc_tlb_invalidate_one() David Gibson
2016-02-01  2:31 ` [Qemu-devel] [PULL 36/40] target-ppc: Add new TLB invalidate by HPTE call for hash64 MMUs David Gibson
2016-02-01  2:31 ` [Qemu-devel] [PULL 37/40] target-ppc: Helper to determine page size information from hpte alone David Gibson
2016-02-01  2:31 ` [Qemu-devel] [PULL 38/40] target-ppc: Allow more page sizes for POWER7 & POWER8 in TCG David Gibson
2016-02-01  2:31 ` [Qemu-devel] [PULL 39/40] target-ppc: Make every FPSCR_ macro have a corresponding FP_ macro David Gibson
2016-02-01  2:31 ` [Qemu-devel] [PULL 40/40] target-ppc: mcrfs should always update FEX/VX and only clear exception bits David Gibson
2016-02-02 10:40 ` [Qemu-devel] [PULL 00/40] ppc-for-2.6 queue 20160201 Peter Maydell

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=1454293868-12431-18-git-send-email-david@gibson.dropbear.id.au \
    --to=david@gibson.dropbear.id.au \
    --cc=agraf@suse.de \
    --cc=aik@ozlabs.ru \
    --cc=mdroth@linux.vnet.ibm.com \
    --cc=peter.maydell@linaro.org \
    --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 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.