diff options
author | Maxim Levitsky <mlevitsk@redhat.com> | 2020-03-08 11:24:40 +0200 |
---|---|---|
committer | Dr. David Alan Gilbert <dgilbert@redhat.com> | 2020-03-09 18:20:22 +0000 |
commit | 89802d5ae72817fdbaeab6d0b5b3af4765f75d4d (patch) | |
tree | 164a29c49c484fa834002085e2efc2256cc27ef9 /include/block/block_int.h | |
parent | 2bcad73c4b9b26005afa28d91c3c814083a3c741 (diff) | |
download | qemu-89802d5ae72817fdbaeab6d0b5b3af4765f75d4d.zip qemu-89802d5ae72817fdbaeab6d0b5b3af4765f75d4d.tar.gz qemu-89802d5ae72817fdbaeab6d0b5b3af4765f75d4d.tar.bz2 |
monitor/hmp: Move hmp_drive_add_node to block-hmp-cmds.c
Signed-off-by: Maxim Levitsky <mlevitsk@redhat.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Message-Id: <20200308092440.23564-12-mlevitsk@redhat.com>
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Diffstat (limited to 'include/block/block_int.h')
-rw-r--r-- | include/block/block_int.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/block/block_int.h b/include/block/block_int.h index f422c0b..3f70a98 100644 --- a/include/block/block_int.h +++ b/include/block/block_int.h @@ -1216,8 +1216,6 @@ BlockJob *backup_job_create(const char *job_id, BlockDriverState *bs, BlockCompletionFunc *cb, void *opaque, JobTxn *txn, Error **errp); -void hmp_drive_add_node(Monitor *mon, const char *optstr); - BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs, const char *child_name, const BdrvChildRole *child_role, @@ -1322,4 +1320,7 @@ int coroutine_fn bdrv_co_copy_range_to(BdrvChild *src, uint64_t src_offset, int refresh_total_sectors(BlockDriverState *bs, int64_t hint); +void bdrv_set_monitor_owned(BlockDriverState *bs); +BlockDriverState *bds_tree_init(QDict *bs_opts, Error **errp); + #endif /* BLOCK_INT_H */ |