1. 29 7月, 2014 3 次提交
  2. 14 7月, 2014 1 次提交
  3. 18 6月, 2014 1 次提交
  4. 16 6月, 2014 1 次提交
  5. 16 5月, 2014 1 次提交
  6. 08 5月, 2014 1 次提交
  7. 02 4月, 2014 1 次提交
  8. 14 3月, 2014 1 次提交
  9. 22 2月, 2014 2 次提交
  10. 16 1月, 2014 1 次提交
    • P
      scsi: Support TEST UNIT READY in the dummy LUN0 · 1cb27d92
      Paolo Bonzini 提交于
      SeaBIOS waits for LUN0 to respond to the TEST UNIT READY command
      in order to decide whether it should part of the boot sequence.
      If LUN0 does not respond to the command, boot is delayed by up
      to 5 seconds.  This currently happens when there is no LUN0 on
      a target.  Fix that by adding a trivial implementation of the
      command.
      
      Cc: qemu-stable@nongnu.org
      Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
      1cb27d92
  11. 09 12月, 2013 1 次提交
  12. 26 11月, 2013 1 次提交
  13. 06 11月, 2013 1 次提交
  14. 09 10月, 2013 1 次提交
  15. 12 9月, 2013 1 次提交
    • M
      scsi: Fix scsi_bus_legacy_add_drive() scsi-generic with serial · c24e7517
      Markus Armbruster 提交于
      scsi_bus_legacy_add_drive() creates either a scsi-disk or a
      scsi-generic device.  It sets property "serial" to argument serial
      unless null.  Crashes with scsi-generic, because it doesn't have such
      the property.
      
      Only usb_msd_initfn_storage() passes non-null serial.  Reproducer:
      
          $ qemu-system-x86_64 -nodefaults -display none -S -usb \
          -drive if=none,file=/dev/sg1,id=usb-drv0 \
          -device usb-storage,id=usb-msd0,drive=usb-drv0,serial=123
          qemu-system-x86_64: -device usb-storage,id=usb-msd0,drive=usb-drv0,serial=123: Property '.serial' not found
          Aborted (core dumped)
      
      Fix by handling exactly like "removable": set the property only when
      it exists.
      
      Cc: qemu-stable@nongnu.org
      Reviewed-by: NAndreas Färber <afaerber@suse.de>
      Signed-off-by: NMarkus Armbruster <armbru@redhat.com>
      Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
      c24e7517
  16. 31 8月, 2013 2 次提交
  17. 29 7月, 2013 1 次提交
  18. 23 7月, 2013 1 次提交
  19. 04 7月, 2013 1 次提交
  20. 04 5月, 2013 1 次提交
  21. 09 4月, 2013 2 次提交
  22. 06 4月, 2013 1 次提交
  23. 06 3月, 2013 1 次提交
  24. 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
  25. 22 1月, 2013 1 次提交
  26. 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
  27. 19 12月, 2012 2 次提交
  28. 05 10月, 2012 1 次提交
  29. 21 9月, 2012 1 次提交
  30. 18 8月, 2012 1 次提交
  31. 10 8月, 2012 1 次提交
  32. 04 8月, 2012 1 次提交
  33. 03 8月, 2012 1 次提交
  34. 27 7月, 2012 1 次提交