1. 18 1月, 2012 4 次提交
  2. 04 1月, 2012 1 次提交
  3. 06 12月, 2011 13 次提交
  4. 05 12月, 2011 2 次提交
  5. 27 10月, 2011 1 次提交
  6. 25 10月, 2011 1 次提交
    • Y
      spice: turn client_migrate_info to async · edc5cb1a
      Yonit Halperin 提交于
      RHBZ 737921
      Spice client is required to connect to the migration target before/as migration
      starts. Since after migration starts, the target qemu is blocked and cannot accept new spice client
      we trigger the connection to the target upon client_migrate_info command.
      client_migrate_info completion cb will be called after spice client has been
      connected to the target (or a timeout). See following patches and spice patches.
      Signed-off-by: NYonit Halperin <yhalperi@redhat.com>
      Signed-off-by: NGerd Hoffmann <kraxel@redhat.com>
      edc5cb1a
  7. 06 10月, 2011 1 次提交
  8. 04 10月, 2011 4 次提交
  9. 03 10月, 2011 1 次提交
  10. 01 9月, 2011 3 次提交
  11. 03 8月, 2011 1 次提交
  12. 22 7月, 2011 1 次提交
  13. 01 6月, 2011 1 次提交
    • L
      HMP: Use QMP inject nmi implementation · e9b4b432
      Luiz Capitulino 提交于
      This **CHANGES** the human monitor "nmi" command behavior.
      
      Currently it accepts an CPU argument which, when provided, will send
      the NMI to the specified CPU. This feature is of discussable value
      though and HMP shouldn't have more features than QMP, so let's use
      QMP's instead (it's also simpler).
      Signed-off-by: NLuiz Capitulino <lcapitulino@redhat.com>
      e9b4b432
  14. 11 3月, 2011 1 次提交
  15. 10 2月, 2011 1 次提交
  16. 31 1月, 2011 1 次提交
    • C
      block: add block_resize monitor command · 6d4a2b3a
      Christoph Hellwig 提交于
      Add a monitor command that allows resizing of block devices while
      qemu is running.  It uses the existing bdrv_truncate method already
      used by qemu-img to do it's work.  Compared to qemu-img the size
      parsing is very simplicistic, but I think having a properly numering
      object is more useful for non-humand monitor users than having
      the units and relative resize parsing.
      
      For SCSI devices the new size can be updated in Linux guests by
      doing the following shell command:
      
      	echo > /sys/class/scsi_device/0:0:0:0/device/rescan
      
      For ATA devices I don't know of a way to update the block device
      size in Linux system, and for virtio-blk the next two patches
      will provide an automatic update of the size when this command
      is issued on the host.
      Signed-off-by: NChristoph Hellwig <hch@lst.de>
      Signed-off-by: NKevin Wolf <kwolf@redhat.com>
      6d4a2b3a
  17. 24 1月, 2011 1 次提交
    • G
      spice/vnc: client migration. · e866e239
      Gerd Hoffmann 提交于
      Handle spice client migration, i.e. inform a spice client connected
      about the new host and connection parameters, so it can move over the
      connection automatically.
      
      The monitor command has a not-yet used protocol argument simliar to
      set_password and expire_password commands.  This allows to add a simliar
      feature to vnc in the future.  Daniel Berrange plans to work on this.
      Signed-off-by: NGerd Hoffmann <kraxel@redhat.com>
      e866e239
  18. 22 1月, 2011 1 次提交
    • J
      Add "broadcast" option for mce command · 31ce5e0c
      Jin Dongming 提交于
      When the following test case is injected with mce command, maybe user could not
      get the expected result.
          DATA
                     command cpu bank status             mcg_status  addr   misc
              (qemu) mce     1   1    0xbd00000000000000 0x05        0x1234 0x8c
      
          Expected Result
                 panic type: "Fatal Machine check"
      
      That is because each mce command can only inject the given cpu and could not
      inject mce interrupt to other cpus. So user will get the following result:
          panic type: "Fatal machine check on current CPU"
      
      "broadcast" option is used for injecting dummy data into other cpus. Injecting
      mce with this option the expected result could be gotten.
      
      Usage:
          Broadcast[on]
                 command broadcast cpu bank status             mcg_status  addr   misc
          (qemu) mce     -b        1   1    0xbd00000000000000 0x05        0x1234 0x8c
      
          Broadcast[off]
                 command cpu bank status             mcg_status  addr   misc
          (qemu) mce     1   1    0xbd00000000000000 0x05        0x1234 0x8c
      Signed-off-by: NJin Dongming <jin.dongming@np.css.fujitsu.com>
      Signed-off-by: NMarcelo Tosatti <mtosatti@redhat.com>
      31ce5e0c
  19. 24 12月, 2010 1 次提交