1. 13 3月, 2019 1 次提交
  2. 20 2月, 2019 1 次提交
    • C
      qemu_process: Enter QMP command mode when starting QEMU Process · 5b13da5c
      Chris Venteicher 提交于
      qemuProcessQMPStart starts a QEMU process and monitor connection that
      can be used by multiple functions possibly for multiple QMP commands.
      
      The QMP exchange to exit capabilities negotiation mode and enter command
      mode can only be performed once after the monitor connection is
      established.
      
      Move responsibility for entering QMP command mode into the
      qemuProcessQMP code so multiple functions can issue QMP commands in
      arbitrary orders.
      
      This also simplifies the functions using the connection provided by
      qemuProcessQMPStart to issue QMP commands.
      
      Test code now needs to call qemuMonitorSetCapabilities to send the
      message to switch to command mode because the test code does not use the
      qemuProcessQMP command that internally calls qemuMonitorSetCapabilities.
      Signed-off-by: NChris Venteicher <cventeic@redhat.com>
      Signed-off-by: NJiri Denemark <jdenemar@redhat.com>
      Reviewed-by: NJán Tomko <jtomko@redhat.com>
      5b13da5c
  3. 08 2月, 2019 1 次提交
  4. 01 2月, 2019 1 次提交
  5. 22 1月, 2019 1 次提交
  6. 14 12月, 2018 1 次提交
  7. 29 11月, 2018 1 次提交
  8. 28 11月, 2018 1 次提交
  9. 21 9月, 2018 1 次提交
  10. 17 9月, 2018 1 次提交
  11. 24 8月, 2018 1 次提交
  12. 13 8月, 2018 2 次提交
  13. 18 7月, 2018 2 次提交
  14. 17 7月, 2018 1 次提交
  15. 10 7月, 2018 1 次提交
  16. 26 6月, 2018 1 次提交
  17. 12 6月, 2018 2 次提交
  18. 11 5月, 2018 1 次提交
  19. 10 4月, 2018 1 次提交
  20. 24 3月, 2018 1 次提交
    • A
      tests: qemucapabilities: Drop mostly duplicated data · 7dd5b0c5
      Andrea Bolognani 提交于
      When GIC support was introduced (QEMU 2.6 timeframe) we needed
      to make sure both GICv2 hardware and GICv3 hardware were handled
      correctly, and that was achieved by having separate capabilities
      data for each.
      
      Now that we have capabilities data for several QEMU versions we
      can stop storing data for GICv2 and GICv3 hardware separately,
      and instead have GICv2 data for QEMU <= 2.10 and GICv3 data for
      QEMU >= 2.12, without losing any coverage.
      Signed-off-by: NAndrea Bolognani <abologna@redhat.com>
      7dd5b0c5
  21. 22 3月, 2018 1 次提交
  22. 06 3月, 2018 1 次提交
  23. 02 3月, 2018 1 次提交
  24. 04 1月, 2018 1 次提交
  25. 08 11月, 2017 4 次提交
  26. 03 11月, 2017 1 次提交
    • A
      Remove backslash alignment attempts · 3e7db8d3
      Andrea Bolognani 提交于
      Right-aligning backslashes when defining macros or using complex
      commands in Makefiles looks cute, but as soon as any changes is
      required to the code you end up with either distractingly broken
      alignment or unnecessarily big diffs where most of the changes
      are just pushing all backslashes a few characters to one side.
      
      Generated using
      
        $ git grep -El '[[:blank:]][[:blank:]]\\$' | \
          grep -E '*\.([chx]|am|mk)$$' | \
          while read f; do \
            sed -Ei 's/[[:blank:]]*[[:blank:]]\\$/ \\/g' "$f"; \
          done
      Signed-off-by: NAndrea Bolognani <abologna@redhat.com>
      3e7db8d3
  27. 22 9月, 2017 1 次提交
  28. 14 9月, 2017 1 次提交
    • J
      qemu: Add QEMU 2.10 x86_64 the generated capabilities · 3358bfb2
      John Ferlan 提交于
      For reference, these were generated by updating a local qemu git
      repository to the latest upstream, making sure the latest dependencies
      were met via "dnf builddep qemu" from my sufficiently privileged root
      account, checking out the v2.10.0 tag, and building in order to generate
      an "x86_64-softmmu/qemu-system-x86_64" image.
      
      Then using a clean libvirt tree updated to master and built, the image
      was then provided as input:
      
          tests/qemucapsprobe /path/to/x86_64-softmmu/qemu-system-x86_64 > \
             tests/qemucapabilitiesdata/caps_2.10.0.x86_64.replies
      
      With the .replies file in place and the DO_TEST line added and build,
      then running the following commands:
      
          touch tests/qemucapabilitiesdata/caps_2.10.0.x86_64.xml
          VIR_TEST_REGENERATE_OUTPUT=1 ./tests/qemucapabilitiestest
      
      to generate tests/qemucapabilitiesdata/caps_2.10.0.x86_64.xml and both
      were added to the commit.
      Signed-off-by: NJohn Ferlan <jferlan@redhat.com>
      Reviewed-by: NPavel Hrdina <phrdina@redhat.com>
      3358bfb2
  29. 21 7月, 2017 1 次提交
  30. 20 7月, 2017 1 次提交
  31. 18 7月, 2017 1 次提交
  32. 04 4月, 2017 1 次提交
  33. 23 3月, 2017 1 次提交
  34. 20 2月, 2017 1 次提交