diff options
author | Maxim Levitsky <mlevitsk@redhat.com> | 2020-03-08 11:24:33 +0200 |
---|---|---|
committer | Dr. David Alan Gilbert <dgilbert@redhat.com> | 2020-03-09 18:05:33 +0000 |
commit | a1edae276ad4ac7fb33791ce2f1daa68b1608dcd (patch) | |
tree | 69b7984f190394b31586bec363bff24eed106671 /include/block/block-hmp-cmds.h | |
parent | a2dde2f2210edd4b962035fcb379aeddc11b0273 (diff) |
monitor/hmp: move hmp_drive_del and hmp_commit 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-5-mlevitsk@redhat.com>
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Diffstat (limited to 'include/block/block-hmp-cmds.h')
-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 0db8a889a1..30b0f56415 100644 --- a/include/block/block-hmp-cmds.h +++ b/include/block/block-hmp-cmds.h @@ -1,6 +1,7 @@ /* * HMP commands related to the block layer * + * Copyright (c) 2003-2008 Fabrice Bellard * Copyright (c) 2020 Red Hat, Inc. * * This work is licensed under the terms of the GNU GPL, version 2. @@ -13,4 +14,7 @@ void hmp_drive_add(Monitor *mon, const QDict *qdict); +void hmp_commit(Monitor *mon, const QDict *qdict); +void hmp_drive_del(Monitor *mon, const QDict *qdict); + #endif |