1. 13 1月, 2012 3 次提交
  2. 04 1月, 2012 3 次提交
  3. 27 12月, 2011 1 次提交
    • A
      Fix qapi code generation wrt parallel build · 8d3bc517
      Avi Kivity 提交于
      Make's multiple output syntax
      
        x.c x.h: x.template
             gen < x.template
      
      actually invokes the command once for x.c and once for x.h (with differing $@
      in each invocation).  During a parallel build, the two commands may be invoked
      in parallel; this opens up a race, where the second invocation trashes a file
      supposedly produced during the first, and now in use by a dependent command.
      
      The various qapi code generators are susceptible to this; fix by making them
      generate just one file per invocation.
      Signed-off-by: NAvi Kivity <avi@redhat.com>
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      8d3bc517
  4. 22 12月, 2011 1 次提交
  5. 06 12月, 2011 3 次提交
  6. 30 11月, 2011 1 次提交
  7. 29 11月, 2011 1 次提交
  8. 23 11月, 2011 1 次提交
  9. 18 11月, 2011 4 次提交
  10. 08 11月, 2011 1 次提交
  11. 02 11月, 2011 2 次提交
  12. 26 10月, 2011 1 次提交
  13. 08 10月, 2011 1 次提交
  14. 05 10月, 2011 1 次提交
  15. 04 10月, 2011 1 次提交
  16. 24 9月, 2011 1 次提交
    • P
      Makefile: Remove 'tarbin' target · 63467ddb
      Peter Maydell 提交于
      Remove the 'tarbin' target -- it isn't used as part of the official
      QEMU release process, and it's out of date (various new bios files
      were never added to its list of files). It's better not to provide
      it at all than to have a broken makefile target we never use or test.
      
      (Creating a tarball by just pulling in binaries that have been installed
      directly to the system you're running the build on is a bad idea anyway:
      the better way to create a binary tarball would be just to install to
      a temporary DESTDIR and then tar up that.)
      Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      63467ddb
  17. 17 9月, 2011 1 次提交
  18. 16 9月, 2011 1 次提交
  19. 10 9月, 2011 1 次提交
  20. 02 9月, 2011 1 次提交
  21. 01 9月, 2011 1 次提交
  22. 22 8月, 2011 1 次提交
  23. 21 8月, 2011 2 次提交
  24. 03 8月, 2011 1 次提交
  25. 02 8月, 2011 1 次提交
  26. 27 7月, 2011 2 次提交
  27. 26 7月, 2011 1 次提交
  28. 22 7月, 2011 1 次提交
    • M
      guest agent: add guest agent RPCs/commands · e3d4d252
      Michael Roth 提交于
      This adds the initial set of QMP/QAPI commands provided by the guest
      agent:
      
      guest-sync
      guest-ping
      guest-info
      guest-shutdown
      guest-file-open
      guest-file-read
      guest-file-write
      guest-file-seek
      guest-file-flush
      guest-file-close
      guest-fsfreeze-freeze
      guest-fsfreeze-thaw
      guest-fsfreeze-status
      
      The input/output specification for these commands are documented in the
      schema.
      
      Example usage:
      
        host:
          qemu -device virtio-serial \
               -chardev socket,path=/tmp/vs0.sock,server,nowait,id=qga0 \
               -device virtserialport,chardev=qga0,name=org.qemu.quest_agent.0
               ...
      
          echo "{'execute':'guest-info'}" | socat stdio unix-connect:/tmp/qga0.sock
      
        guest:
          qemu-ga -m virtio-serial -p /dev/virtio-ports/org.qemu.guest_agent.0 \
                  -p /var/run/qemu-guest-agent.pid -d
      Signed-off-by: NMichael Roth <mdroth@linux.vnet.ibm.com>
      Signed-off-by: NLuiz Capitulino <lcapitulino@gmail.com>
      e3d4d252