1. 06 11月, 2008 1 次提交
    • A
      Add KVM support to QEMU · 7ba1e619
      aliguori 提交于
      This patch adds very basic KVM support.  KVM is a kernel module for Linux that
      allows userspace programs to make use of hardware virtualization support.  It
      current supports x86 hardware virtualization using Intel VT-x or AMD-V.  It
      also supports IA64 VT-i, PPC 440, and S390.
      
      This patch only implements the bare minimum support to get a guest booting.  It
      has very little impact the rest of QEMU and attempts to integrate nicely with
      the rest of QEMU.
      
      Even though this implementation is basic, it is significantly faster than TCG.
      Booting and shutting down a Linux guest:
      
      w/TCG:  1:32.36 elapsed  84% CPU
      
      w/KVM:  0:31.14 elapsed  59% CPU
      
      Right now, KVM is disabled by default and must be explicitly enabled with
       -enable-kvm.  We can enable it by default later when we have had better
      testing.
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      
      
      
      git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5627 c046a42c-6fe2-441c-8c8c-71466251a162
      7ba1e619
  2. 01 11月, 2008 1 次提交
    • A
      Implement "info chardev" command. (Gerd Hoffmann) · 5ccfae10
      aliguori 提交于
      This patch makes qemu keep track of the character devices in use and
      implements a "info chardev" monitor command to print a list.
      
      qemu_chr_open() sticks the devices into a linked list now.  It got a new
      argument (label), so there is a name for each device.  It also assigns a
      filename to each character device.  By default it just copyes the
      filename passed in.  Individual drivers can fill in something else
      though.  qemu_chr_open_pty() sets the filename to name of the pseudo tty
      allocated.
      
      Output looks like this:
      
        (qemu) info chardev
        monitor: filename=unix:/tmp/run.sh-26827/monitor,server,nowait
        serial0: filename=unix:/tmp/run.sh-26827/console,server
        serial1: filename=pty:/dev/pts/5
        parallel0: filename=vc:640x480
      Signed-off-by: NGerd Hoffmann <kraxel@redhat.com>
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      
      
      
      git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5575 c046a42c-6fe2-441c-8c8c-71466251a162
      5ccfae10
  3. 26 10月, 2008 1 次提交
  4. 21 10月, 2008 1 次提交
  5. 13 10月, 2008 1 次提交
  6. 06 10月, 2008 1 次提交
  7. 05 10月, 2008 1 次提交
  8. 03 10月, 2008 1 次提交
  9. 02 10月, 2008 2 次提交
  10. 19 9月, 2008 1 次提交
  11. 16 9月, 2008 1 次提交
  12. 30 8月, 2008 1 次提交
  13. 22 8月, 2008 1 次提交
  14. 19 8月, 2008 1 次提交
  15. 18 8月, 2008 2 次提交
  16. 13 8月, 2008 1 次提交
  17. 01 8月, 2008 2 次提交
  18. 27 6月, 2008 1 次提交
  19. 22 6月, 2008 1 次提交
  20. 21 6月, 2008 1 次提交
  21. 19 6月, 2008 1 次提交
  22. 09 6月, 2008 2 次提交
    • B
      Fix the sendkey hold time calculation (Jan Kiszka). · f227f17d
      balrog 提交于
      
      git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4703 c046a42c-6fe2-441c-8c8c-71466251a162
      f227f17d
    • B
      Enhance sendkey with key hold time (Jan Kiszka). · c8256f9d
      balrog 提交于
      Current key injection via the monitor basically generates no key hold
      time. This is fine for keyboard emulations that have their own queues,
      but it causes troubles for those how don't (like the MusicPal - it
      simply does not work with injected keys). Moreover, I would like to use
      this mechanism to simulate pressed buttons during power-up.
      
      Therefore, this patch enhances the key injection with a configurable
      release delay (by default 100 virtual milliseconds).
      
      This feature allows to get rid of the initial sleep() in musicpal_init
      because one can now simply start qemu with -S and issue "sendkey m 1000"
      and "continue" in the monitor to achieve the desired effect of a pressed
      menu button during power-up. So there is no need for a per-musicpal or
      even qemu-wide "-hold-button" switch.
      Signed-off-by: NJan Kiszka <jan.kiszka@web.de>
      
      
      git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4701 c046a42c-6fe2-441c-8c8c-71466251a162
      c8256f9d
  23. 04 6月, 2008 2 次提交
  24. 29 5月, 2008 1 次提交
  25. 25 5月, 2008 1 次提交
  26. 05 5月, 2008 1 次提交
  27. 28 4月, 2008 1 次提交
  28. 13 4月, 2008 1 次提交
  29. 12 4月, 2008 1 次提交
  30. 11 2月, 2008 1 次提交
  31. 17 12月, 2007 1 次提交
  32. 16 12月, 2007 1 次提交
  33. 04 12月, 2007 1 次提交
  34. 02 12月, 2007 2 次提交