/qemu/tests/qemu-iotests/ |
H A D | 077 | 70 resume A 89 resume A 102 resume A 104 resume B 116 resume B 118 resume A 130 resume A 132 resume B 144 resume B 146 resume A [all …]
|
H A D | 219.out | 10 Pause/resume in RUNNING 11 === Testing block-job-pause/block-job-resume === 18 === Testing block-job-pause/job-resume === 25 === Testing job-pause/block-job-resume === 32 === Testing job-pause/job-resume === 51 Pause/resume in READY 52 === Testing block-job-pause/block-job-resume === 59 === Testing block-job-pause/job-resume === 66 === Testing job-pause/block-job-resume === 73 === Testing job-pause/job-resume === [all …]
|
H A D | 046 | 90 resume A 101 resume A 111 resume A 123 resume A 139 resume A 154 resume A 164 resume A 174 resume A 184 resume A
|
H A D | 219 | 37 # Test that block-job-pause/resume and job-pause/resume can be mixed 41 for resume_cmd, resume_arg in [('block-job-resume', 'device'), 42 ('job-resume', 'id')]: 97 # pause/resume should work, complete/finalize/dismiss should error out 99 iotests.log('Pause/resume in RUNNING') 120 # pause/resume/complete should work, finalize/dismiss should error out 122 iotests.log('Pause/resume in READY')
|
H A D | 055 | 74 event = self.cancel_and_wait(resume=True) 101 self.vm.cmd('block-job-resume', device='drive0') 231 event = self.cancel_and_wait(resume=True) 243 event = self.cancel_and_wait(resume=True) 268 event = self.cancel_and_wait(resume=True) 343 self.vm.cmd('block-job-resume', device='drive0') 535 event = self.cancel_and_wait(resume=True) 568 self.vm.cmd('block-job-resume', device='drive0')
|
H A D | 248 | 4 # Test resume mirror after auto pause on ENOSPC 68 vm.qmp_log('block-job-resume', device='drive0')
|
H A D | 248.out | 7 {"execute": "block-job-resume", "arguments": {"device": "drive0"}}
|
H A D | 030 | 108 self.vm.cmd('block-job-resume', device='drive0') 749 self.vm.cmd('block-job-resume', device='drive0') 842 self.vm.cmd('block-job-resume', device='drive0') 895 self.cancel_and_wait(resume=True) 946 self.cancel_and_wait(resume=True) 956 self.cancel_and_wait(resume=True) 972 self.cancel_and_wait(resume=True)
|
H A D | 280.out | 36 === Resume the VM and simulate a write request ===
|
/qemu/qapi/ |
H A D | job.json | 98 # @resume: see @job-resume 113 'data': ['cancel', 'pause', 'resume', 'set-speed', 'complete', 'dismiss', 152 # @job-resume: 154 # Resume a paused job. 166 { 'command': 'job-resume', 'data': { 'id': 'str' } }
|
/qemu/backends/ |
H A D | dbus-vmstate1.xml | 31 ``-incoming`` argument for example), and it may resume on success. 41 @data: state data to save for later resume.
|
/qemu/docs/ |
H A D | COLO-FT.txt | 245 if you want to resume the replication, follow "Primary resume replication" 248 if you want to resume the replication, follow "Secondary resume replication" 251 The Secondary died, resume on the Primary 263 The Primary died, resume on the Secondary and prepare to become the new Primary 280 == Primary resume replication == 281 Resume replication after new Secondary is up. 307 == Secondary resume replication == 308 Become Primary and resume replication after new Secondary is up. Note
|
/qemu/hw/tpm/ |
H A D | trace-events | 37 tpm_spapr_post_load(void) "Delivering TPM response after resume" 38 tpm_spapr_caught_response(uint32_t v) "Caught response to deliver after resume: %u bytes"
|
/qemu/monitor/ |
H A D | qmp.c | 121 * space again. We just emptied it; resume the monitor. in monitor_qmp_cleanup_queue_and_resume() 292 * We need to resume the monitor if handle_qmp_command() in monitor_qmp_dispatcher_co() 295 * Resume right away, so that OOB commands can get executed while in monitor_qmp_dispatcher_co() 298 * Resume only after we're done processing the request, in monitor_qmp_dispatcher_co() 405 * monitor_qmp_cleanup_queue_and_resume() will resume it. in handle_qmp_command()
|
/qemu/docs/devel/testing/ |
H A D | blkdebug.rst | 165 Suspend and resume 176 See the ``qemu-io(1)`` ``break``, ``resume``, ``remove_break``, and ``wait_break``
|
/qemu/include/qemu/ |
H A D | job.h | 127 * block-job-resume QMP command. 237 void coroutine_fn (*resume)(Job *job); member 248 * false). .user_resume is called before .resume. 574 * Do not allow a resume until a matching call to job_user_resume. 586 * Resume the specified @job.
|
/qemu/migration/ |
H A D | migration.c | 92 MIG_RP_MSG_RESUME_ACK, /* tell source that we are ready to resume */ 2053 static bool migrate_prepare(MigrationState *s, bool resume, Error **errp) in migrate_prepare() argument 2055 if (resume) { in migrate_prepare() 2057 error_setg(errp, "Cannot resume if there is no " in migrate_prepare() 2083 /* This is a resume, skip init status */ in migrate_prepare() 2185 bool has_resume, bool resume, Error **errp) in qmp_migrate() argument 2240 resume_requested = has_resume && resume; in qmp_migrate() 3138 * ready for the migration resume. in postcopy_do_resume() 3149 * we do it after resume prepare to make sure the main channel will be in postcopy_do_resume() 3162 * Last handshake with destination on the resume (destination will in postcopy_do_resume() [all …]
|
/qemu/include/hw/vfio/ |
H A D | vfio-platform.h | 62 QEMUTimer *mmap_timer; /* allows fast-path resume after IRQ hit */
|
/qemu/python/qemu/qmp/ |
H A D | events.py | 41 with qmp.listener(('STOP', 'RESUME')) as listener: 48 assert event['event'] == 'RESUME' 233 assert event['event'] == 'RESUME' 255 assert qmp.events.history[1]['event'] == 'RESUME'
|
/qemu/tests/qemu-iotests/tests/ |
H A D | migrate-bitmaps-postcopy-test | 119 """ Run migration until RESUME event on target. Return this event. """ 167 event_resume = self.vm_b.event_wait('RESUME')
|
H A D | migrate-during-backup | 80 self.vm.cmd('job-resume', id='drive0')
|
/qemu/linux-headers/linux/ |
H A D | vhost.h | 208 /* Resume a device so it can resume processing virtqueue requests
|
/qemu/tests/qtest/migration/ |
H A D | framework.c | 59 * but on the destination we won't have the A (unless we enabled suspend/resume) 602 * resume later, where it shouldn't reach RECOVER stage at all. in postcopy_recover_fail() 608 migrate_qmp(from, to, "fd:fd-mig", NULL, "{'resume': true}"); in postcopy_recover_fail() 728 * Try to rebuild the migration channel using the resume flag and in test_postcopy_recovery_common() 731 migrate_qmp(from, to, uri, NULL, "{'resume': true}"); in test_postcopy_recovery_common()
|
/qemu/include/block/ |
H A D | block-copy.h | 92 * cancel + <run block_copy with same parameters> to emulate pause/resume.
|
/qemu/tests/qtest/ |
H A D | npcm7xx_watchdog_timer-test.c | 257 /* Check a watchdog can pause and resume by setting WTE bits */ 284 /* Resume the watchdog */ in test_pause()
|