diff options
author | Maxim Levitsky | 2020-03-08 10:24:36 +0100 |
---|---|---|
committer | Dr. David Alan Gilbert | 2020-03-09 19:07:50 +0100 |
commit | fce2b91fdfe2a187750742e2b511f6da84dbde40 (patch) | |
tree | a59e8ea8aefb9cfaa51e2cbf8a3b07f8c8250e6a /include/block | |
parent | monitor/hmp: move hmp_block_job* to block-hmp-cmds.c (diff) | |
download | qemu-fce2b91fdfe2a187750742e2b511f6da84dbde40.tar.gz qemu-fce2b91fdfe2a187750742e2b511f6da84dbde40.tar.xz qemu-fce2b91fdfe2a187750742e2b511f6da84dbde40.zip |
monitor/hmp: move hmp_snapshot_* to block-hmp-cmds.c
hmp_snapshot_blkdev is from GPLv2 version of the hmp-cmds.c thus
have to change the licence to GPLv2
Signed-off-by: Maxim Levitsky <mlevitsk@redhat.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Message-Id: <20200308092440.23564-8-mlevitsk@redhat.com>
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Diffstat (limited to 'include/block')
-rw-r--r-- | include/block/block-hmp-cmds.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/block/block-hmp-cmds.h b/include/block/block-hmp-cmds.h index fcdf1eec48..cc81779c7c 100644 --- a/include/block/block-hmp-cmds.h +++ b/include/block/block-hmp-cmds.h @@ -29,4 +29,8 @@ void hmp_block_job_pause(Monitor *mon, const QDict *qdict); void hmp_block_job_resume(Monitor *mon, const QDict *qdict); void hmp_block_job_complete(Monitor *mon, const QDict *qdict); +void hmp_snapshot_blkdev(Monitor *mon, const QDict *qdict); +void hmp_snapshot_blkdev_internal(Monitor *mon, const QDict *qdict); +void hmp_snapshot_delete_blkdev_internal(Monitor *mon, const QDict *qdict); + #endif |