1. 30 5月, 2019 1 次提交
  2. 06 11月, 2018 1 次提交
  3. 09 2月, 2018 2 次提交
  4. 15 10月, 2017 2 次提交
  5. 04 7月, 2017 1 次提交
  6. 25 1月, 2017 1 次提交
    • D
      PCI/migration merge vmstate_pci_device and vmstate_pcie_device · 20daa90a
      Dr. David Alan Gilbert 提交于
      The vmstate_pci_device and vmstate_pcie_devices differ
      just in the size of one buffer; combine the two using a _TEST
      macro.
      
      I think this is safe as long as everywhere which currently
      uses either of these two uses the right type.
      
      One thing that concerns me is that some places use pci_device_load/save
      which does some irq mangling, but others just use the VMSTATE_PCI_DEVICE
      macro - how are they getting the same irq mangling?
      
      This passes a smoke test migrate of:
      ./x86_64-softmmu/qemu-system-x86_64 -M pc,accel=kvm -m 1024
      ./littlefed20.img -device e1000e -device virtio-net -device
      e1000 -device virtio-rng -device megasas -device megasas-gen2 -device
      ioh3420 -device nec-usb-xhci
      
      to an unmodified qemu.
      Signed-off-by: NDr. David Alan Gilbert <dgilbert@redhat.com>
      Message-Id: <20161214195829.18241-1-dgilbert@redhat.com>
      Reviewed-by: NMichael S. Tsirkin <mst@redhat.com>
      Signed-off-by: NDr. David Alan Gilbert <dgilbert@redhat.com>
      20daa90a
  7. 10 1月, 2017 2 次提交
  8. 12 7月, 2016 1 次提交
  9. 05 7月, 2016 1 次提交
  10. 17 6月, 2016 1 次提交
  11. 20 2月, 2016 1 次提交
  12. 16 2月, 2016 1 次提交
  13. 29 1月, 2016 1 次提交
    • P
      pci: Clean up includes · 97d5408f
      Peter Maydell 提交于
      Clean up includes so that osdep.h is included first and headers
      which it implies are not included manually.
      
      This commit was created with scripts/clean-includes.
      Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
      Message-id: 1453832250-766-23-git-send-email-peter.maydell@linaro.org
      97d5408f
  14. 25 8月, 2014 1 次提交
  15. 23 6月, 2014 1 次提交
  16. 16 6月, 2014 1 次提交
  17. 30 7月, 2013 2 次提交
  18. 29 7月, 2013 1 次提交
  19. 09 4月, 2013 3 次提交
  20. 27 3月, 2013 2 次提交
  21. 01 3月, 2013 1 次提交
    • P
      hw: include hw header files with full paths · 83c9f4ca
      Paolo Bonzini 提交于
      Done with this script:
      
      cd hw
      for i in `find . -name '*.h' | sed 's/^..//'`; do
        echo '\,^#.*include.*["<]'$i'[">], s,'$i',hw/&,'
      done | sed -i -f - `find . -type f`
      
      This is so that paths remain valid as files are moved.
      
      Instead, files in hw/dataplane are referenced with the relative path.
      We know they are not going to move to include/, and they are the only
      include files that are in subdirectories _and_ move.
      Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
      83c9f4ca
  22. 11 1月, 2013 1 次提交
    • A
      Make all static TypeInfos const · 8c43a6f0
      Andreas Färber 提交于
      Since 39bffca2 (qdev: register all
      types natively through QEMU Object Model), TypeInfo as used in
      the common, non-iterative pattern is no longer amended with information
      and should therefore be const.
      
      Fix the documented QOM examples:
      
       sed -i 's/static TypeInfo/static const TypeInfo/g' include/qom/object.h
      
      Since frequently the wrong examples are being copied by contributors of
      new devices, fix all types in the tree:
      
       sed -i 's/^static TypeInfo/static const TypeInfo/g' */*.c
       sed -i 's/^static TypeInfo/static const TypeInfo/g' */*/*.c
      
      This also avoids to piggy-back these changes onto real functional
      changes or other refactorings.
      Signed-off-by: NAndreas Färber <afaerber@suse.de>
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      8c43a6f0
  23. 17 12月, 2012 1 次提交
  24. 04 7月, 2012 1 次提交
  25. 07 6月, 2012 2 次提交
  26. 15 2月, 2012 1 次提交
  27. 04 2月, 2012 1 次提交
    • A
      qdev: register all types natively through QEMU Object Model · 39bffca2
      Anthony Liguori 提交于
      This was done in a mostly automated fashion.  I did it in three steps and then
      rebased it into a single step which avoids repeatedly touching every file in
      the tree.
      
      The first step was a sed-based addition of the parent type to the subclass
      registration functions.
      
      The second step was another sed-based removal of subclass registration functions
      while also adding virtual functions from the base class into a class_init
      function as appropriate.
      
      Finally, a python script was used to convert the DeviceInfo structures and
      qdev_register_subclass functions to TypeInfo structures, class_init functions,
      and type_register_static calls.
      
      We are almost fully converted to QOM after this commit.
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      39bffca2
  28. 28 1月, 2012 1 次提交
  29. 12 6月, 2011 1 次提交
  30. 22 12月, 2010 1 次提交
  31. 22 11月, 2010 1 次提交
  32. 28 10月, 2010 1 次提交