1. 04 2月, 2012 2 次提交
    • A
      qdev: kill off DeviceInfo · d307af79
      Anthony Liguori 提交于
      It is no longer used in the tree since everything is done natively through
      QEMU Object Model.
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      d307af79
    • 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
  2. 28 1月, 2012 1 次提交
  3. 22 11月, 2011 2 次提交
  4. 18 11月, 2011 4 次提交
  5. 29 10月, 2011 12 次提交
  6. 20 9月, 2011 1 次提交
  7. 12 9月, 2011 1 次提交
  8. 10 9月, 2011 1 次提交
    • B
      scsi-bus: remove duplicate table entries · 48bb9f53
      Blue Swirl 提交于
      Remove duplicate entries from SCSI command table, spotted by
      clang analyzer:
      /src/qemu/hw/scsi-bus.c:979:40: warning: initializer overrides prior initialization of this subobject
              [ ERASE_16                 ] = "ERASE_16",
      /src/qemu/hw/scsi-bus.c:978:40: note: previous initialization is here
              [ WRITE_SAME_16            ] = "WRITE_SAME_16",
      /src/qemu/hw/scsi-bus.c:984:40: warning: initializer overrides prior initialization of this subobject
              [ MAINTENANCE_IN           ] = "MAINTENANCE_IN",
      /src/qemu/hw/scsi-bus.c:917:40: note: previous initialization is here
              [ MAINTENANCE_IN           ] = "MAINTENANCE_IN",
      /src/qemu/hw/scsi-bus.c:985:40: warning: initializer overrides prior initialization of this subobject
              [ MAINTENANCE_OUT          ] = "MAINTENANCE_OUT",
      /src/qemu/hw/scsi-bus.c:918:40: note: previous initialization is here
              [ MAINTENANCE_OUT          ] = "MAINTENANCE_OUT",
      Signed-off-by: NBlue Swirl <blauwirbel@gmail.com>
      48bb9f53
  9. 06 9月, 2011 2 次提交
  10. 21 8月, 2011 1 次提交
  11. 17 8月, 2011 1 次提交
  12. 15 8月, 2011 1 次提交
  13. 12 8月, 2011 11 次提交