1. 02 10月, 2009 2 次提交
  2. 28 8月, 2009 1 次提交
    • G
      qdev: add return value to init() callbacks. · 81a322d4
      Gerd Hoffmann 提交于
      Sorry folks, but it has to be.  One more of these invasive qdev patches.
      
      We have a serious design bug in the qdev interface:  device init
      callbacks can't signal failure because the init() callback has no
      return value.  This patch fixes it.
      
      We have already one case in-tree where this is needed:
      Try -device virtio-blk-pci (without drive= specified) and watch qemu
      segfault.  This patch fixes it.
      
      With usb+scsi being converted to qdev we'll get more devices where the
      init callback can fail for various reasons.
      Signed-off-by: NGerd Hoffmann <kraxel@redhat.com>
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      81a322d4
  3. 26 8月, 2009 1 次提交
  4. 17 7月, 2009 1 次提交
    • G
      qdev: rework device properties. · ee6847d1
      Gerd Hoffmann 提交于
      This patch is a major overhaul of the device properties.  The properties
      are saved directly in the device state struct now, the linked list of
      property values is gone.
      
      Advantages:
        * We don't have to maintain the list with the property values.
        * The value in the property list and the value actually used by
          the device can't go out of sync any more (used to happen for
          the pci.devfn == -1 case) because there is only one place where
          the value is stored.
        * A record describing the property is required now, you can't set
          random properties any more.
      
      There are bus-specific and device-specific properties.  The former
      should be used for properties common to all bus drivers.  Typical
      use case is bus addressing, i.e. pci.devfn and i2c.address.
      
      Properties have a PropertyInfo struct attached with name, size and
      function pointers to parse and print properties.  A few common property
      types have PropertyInfos defined in qdev-properties.c.  Drivers are free
      to implement their own very special property parsers if needed.
      
      Properties can have default values.  If unset they are zero-filled.
      Signed-off-by: NGerd Hoffmann <kraxel@redhat.com>
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      ee6847d1
  5. 17 6月, 2009 1 次提交
  6. 09 6月, 2009 4 次提交
  7. 15 5月, 2009 1 次提交
  8. 08 5月, 2009 1 次提交
  9. 18 4月, 2009 1 次提交
  10. 14 1月, 2009 1 次提交
  11. 08 1月, 2009 3 次提交
  12. 02 12月, 2008 1 次提交
  13. 18 11月, 2007 1 次提交
  14. 11 11月, 2007 1 次提交
  15. 17 9月, 2007 2 次提交
  16. 08 4月, 2007 1 次提交
  17. 02 4月, 2007 1 次提交
  18. 22 12月, 2006 1 次提交
  19. 08 12月, 2006 1 次提交
  20. 05 2月, 2006 1 次提交
  21. 19 12月, 2005 1 次提交
  22. 05 12月, 2005 1 次提交