1. 08 12月, 2008 1 次提交
  2. 07 12月, 2008 2 次提交
  3. 06 12月, 2008 2 次提交
  4. 30 11月, 2008 2 次提交
  5. 27 11月, 2008 1 次提交
  6. 23 11月, 2008 3 次提交
  7. 18 11月, 2008 1 次提交
  8. 06 11月, 2008 3 次提交
  9. 01 11月, 2008 1 次提交
  10. 27 10月, 2008 1 次提交
  11. 24 10月, 2008 1 次提交
  12. 12 10月, 2008 1 次提交
  13. 11 10月, 2008 2 次提交
  14. 09 10月, 2008 1 次提交
    • A
      Fix IO performance regression in sparc · 9e472e10
      aliguori 提交于
      Replace signalfd with signal handler/pipe.  There is no way to interrupt
      the CPU execution loop when a file descriptor becomes readable.  This
      results in a large performance regression in sparc emulation during
      bootup.
         
      This patch switches us to signal handler/pipe which was originally
      suggested by Ian Jackson.  The signal handler lets us interrupt the
      CPU emulation loop while the write to a pipe lets us avoid the
      select/signal race condition.
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      
      
      
      git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5451 c046a42c-6fe2-441c-8c8c-71466251a162
      9e472e10
  15. 08 10月, 2008 2 次提交
  16. 01 10月, 2008 1 次提交
  17. 30 9月, 2008 2 次提交
  18. 29 9月, 2008 1 次提交
    • B
      Implement a HCI passthrough to host. · fb599c9a
      balrog 提交于
      This allows using a host's physical HCI as one of the HCIs attached
      to the virtual machine.  This brings various limitations because not
      all commands/events are passed through by Linux kernel, some are
      interpreted by the host's kernel for a speed gain.
      
      
      git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5344 c046a42c-6fe2-441c-8c8c-71466251a162
      fb599c9a
  19. 28 9月, 2008 1 次提交
    • A
      Make compatfd fallback more robust · 27463101
      aliguori 提交于
      Be more friendly when signalfd() fails, and also add configure checks to detect
      that syscall(SYS_signalfd) actually works.  malc pointed out that some installs
      do not have /usr/include/linux headers that are in sync with the glibc headers
      so why SYS_signalfd is defined, it's #defined to _NR_signalfd which is not
      defined in the /usr/include/linux header.
      
      While this is a distro bug, it doesn't hurt to do a more thorough job in
      detection.
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      
      
      
      git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5334 c046a42c-6fe2-441c-8c8c-71466251a162
      27463101
  20. 26 9月, 2008 1 次提交
  21. 18 9月, 2008 1 次提交
  22. 15 9月, 2008 1 次提交
  23. 14 9月, 2008 1 次提交
  24. 12 9月, 2008 2 次提交
  25. 08 9月, 2008 1 次提交
  26. 07 9月, 2008 1 次提交
  27. 02 9月, 2008 1 次提交
  28. 22 8月, 2008 2 次提交
    • A
      *FreeBSD: pulseaudio is a possible audio driver · f34af52c
      aurel32 提交于
      Signed-off-by: NAurelien Jarno <aurelien@aurel32.net>
      
      git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5062 c046a42c-6fe2-441c-8c8c-71466251a162
      f34af52c
    • A
      Fix windows build · cd01b4a3
      aliguori 提交于
      Right now, the Windows build is broken because of NBD.  Using a mingw32 cross
      compiler is also badly broken.
      
      This patch fixes the Windows build by stubbing out NBD support until someone
      fixes it for Windows.  It also santizing the mingw32 cross compiler support
      by replacing the --enable-mingw32 option with a compiler check to determine
      if we're on windows or not.
      
      Also remove the weird SDL pseudo-detection for mingw32 using a cross compiler.
      The hardcoded sdl-config name is seemly arbitrary.  If you cross compiler SDL
      correctly and modify your PATH variable appropriately, it will Just Work when
      cross compiling.
      
      The audio driver detection is also broken for cross compiling so you have to
      specify the audio drivers explicitly for now.
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      
      
      
      
      git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5046 c046a42c-6fe2-441c-8c8c-71466251a162
      cd01b4a3