• Fixes qemu-arm|grep cpu - with _exit() getting output from qemu --help
    is a bit random. Since no atexit() handlers are registered for user mode
    emulation, just use exit() instead.
    
    Signed-off-by: Riku Voipio <riku.voipio@iki.fi>
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6657 c046a42c-6fe2-441c-8c8c-71466251a162
    blueswir1 authored
     
    Browse Code »
  • A real 970 CPU starts up with HIOR=0xfff00000 and triggers a reset
    exception, basically ending up at IP 0xfff001000.
    
    Later on this HIOR has to be set to 0 by the firmware in order to
    enable the OS to handle interrupts on its own.
    
    This patch maps HIOR to exec_prefix, which does the same thing
    internally in qemu already.
    
    It replaces the previous patch that changed the 970 initialization
    constants, as this is the clean solution to the same problem.
    
    Signed-off-by: Alexander Graf <alex@csgraf.de>
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6656 c046a42c-6fe2-441c-8c8c-71466251a162
    blueswir1 authored
     
    Browse Code »
  • Practically speaking, "report" causes a lot of issues when encountering a host
    ENOSPC error.  Switch to "enospc" as the default werror semantics.  All host
    errors other than ENOSPC will be reported to the guest.  ENOSPC will cause the
    VM to stop.  Asynchronous notifications are needed to inform management tools
    that some action should be taken but stopping the VM is at least better than
    undefined behavior in the guest.
    
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6655 c046a42c-6fe2-441c-8c8c-71466251a162
    aliguori authored
     
    Browse File »
  • When the CPU is in little endian mode, it should load values from RAM
    in byte swapped manner. This check is in all the ld and st functions,
    but misspelled in gen_qemu_ld32s.
    
    This patch fixes the misspelling and makes ppc64 Linux happier.
    
    Signed-off-by: Alexander Graf <alex@csgraf.de>
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6654 c046a42c-6fe2-441c-8c8c-71466251a162
    blueswir1 authored
     
    Browse Code »