• Fix type in i386 tcg.
    
    Signed-off-by: Juan Quintela <quintela@redhat.com>
    Juan Quintela authored
     
    Browse Code »
  • Hi!
    
    Attached patch fixes an unlock bug in strace.
    Catched by gcc due to an use of uninitialized variable.
    
    Signed-off-by: Christoph Egger <Christoph.Egger@amd.com>
    
    --
    ---to satisfy European Law for business letters:
    Advanced Micro Devices GmbH
    Karl-Hammerschmidt-Str. 34, 85609 Dornach b. Muenchen
    Geschaeftsfuehrer: Thomas M. McCoy, Giuliano Meroni
    Sitz: Dornach, Gemeinde Aschheim, Landkreis Muenchen
    Registergericht Muenchen, HRB Nr. 43632
    Christoph Egger authored
     
    Browse Code »
  • Hi!
    
    Attached patch uses qemu_isxdigit() instead of isxdigit().
    Fixes build warning on NetBSD.
    
    Signed-off-by: Christoph Egger <Christoph.Egger@amd.com>
    
    --
    ---to satisfy European Law for business letters:
    Advanced Micro Devices GmbH
    Karl-Hammerschmidt-Str. 34, 85609 Dornach b. Muenchen
    Geschaeftsfuehrer: Thomas M. McCoy, Giuliano Meroni
    Sitz: Dornach, Gemeinde Aschheim, Landkreis Muenchen
    Registergericht Muenchen, HRB Nr. 43632
    Christoph Egger authored
     
    Browse Code »
  • Hi!
    
    Attached patch fixes build warnings due to use of different pointer
    signedness.
    
    Signed-off-by: Christoph Egger <Christoph.Egger@amd.com>
    
    --
    ---to satisfy European Law for business letters:
    Advanced Micro Devices GmbH
    Karl-Hammerschmidt-Str. 34, 85609 Dornach b. Muenchen
    Geschaeftsfuehrer: Thomas M. McCoy, Giuliano Meroni
    Sitz: Dornach, Gemeinde Aschheim, Landkreis Muenchen
    Registergericht Muenchen, HRB Nr. 43632
    Christoph Egger authored
     
    Browse Code »
  • Rename ELF coredump types to avoid conflict with the corresponding host types.
    
    Signed-off-by: Laurent Desnogues <laurent.desnogues@gmail.com>
    Laurent Desnogues authored
     
    Browse Code »
  • Re-implement GUEST_BASE support.
    Offset guest ddress space by default if the guest binary contains
    regions below the host mmap_min_addr.
    Implement support for i386, x86-64 and arm hosts.
    
    Signed-off-by: Riku Voipio <riku.voipio@iki.fi>
    Signed-off-by: Paul Brook <paul@codesourcery.com>
    Paul Brook authored
     
    Browse Code »
  • Move the export to a file used by both qdev.c and sysbus.c.
    
    Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
    Blue Swirl authored
     
    Browse Code »
  • 0x10000000 looks better than 268435456.
    
    Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
    Blue Swirl authored
     
    Browse Code »
  • The logic of Zilog makes channel B the first device and channel A the
    second one.
    
    Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
    Blue Swirl authored
     
    Browse Code »
  • On some Sparc32 machines, fdc is located above 4G limit, so uint32_t is not
    appropriate type for io_base.
    
    Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
    Blue Swirl authored
     
    Browse Code »
  • Move the qdev_init(dev); call after the setting of d->size.
    Thanks to Filip Navara.
    
    Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
    Blue Swirl authored
     
    Browse Code »
  • The header sys-queue.h must be #included early, otherwise at some point OS
    queue macros will be used. On OpenBSD, those don't define TAILQ_FOREACH_SAFE.
    
    Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
    Blue Swirl authored
     
    Browse Code »
  • Minor TCG cleanups and warning fixes for ARM hosts.
    
    Signed-off-by: Paul Brook <paul@codesourcery.com>
    Paul Brook authored
     
    Browse Code »
  • /usr/include/alsa/pcm.h contains:
    
    #define snd_pcm_sw_params_alloca(ptr) do { assert(ptr); *ptr = (snd_pcm_sw_params_t *) alloca(snd_pcm_sw_params_sizeof()); memset(*ptr, 0, snd_pcm_sw_params_sizeof()); } while (0)
    
    The assert generates: "error: the address of 'sw_params' will always
    evaluate as 'true'" which combined with -Werror prevents alsaaudio.o
    from being built with certain versions of GCC.
    malc authored
     
    Browse Code »