1. 09 4月, 2013 1 次提交
  2. 27 3月, 2013 2 次提交
  3. 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
  4. 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
  5. 09 1月, 2013 1 次提交
  6. 19 12月, 2012 1 次提交
  7. 17 12月, 2012 2 次提交
  8. 04 7月, 2012 1 次提交
  9. 12 6月, 2012 1 次提交
  10. 07 6月, 2012 1 次提交
  11. 16 3月, 2012 1 次提交
    • M
      pci: add standard bridge device · 4eb812f7
      Michael S. Tsirkin 提交于
      This adds support for a standard pci to pci bridge,
      enabling support for more than 32 PCI devices in the system.
      Device hotplug is supported by means of SHPC controller.
      For guests with an SHPC driver, this allows robust hotplug
      and even hotplug of nested bridges, up to 31 devices
      per bridge.
      Signed-off-by: NMichael S. Tsirkin <mst@redhat.com>
      4eb812f7