diff options
author | Andrey Shinkevich | 2020-12-16 07:16:54 +0100 |
---|---|---|
committer | Max Reitz | 2021-01-26 11:26:54 +0100 |
commit | 880747a887a3c2ee022b7f610e54e08b84deb1af (patch) | |
tree | 03471fa0e68ce0f3d11526f4912c604b40131a8f /include/block | |
parent | copy-on-read: add filter drop function (diff) | |
download | qemu-880747a887a3c2ee022b7f610e54e08b84deb1af.tar.gz qemu-880747a887a3c2ee022b7f610e54e08b84deb1af.tar.xz qemu-880747a887a3c2ee022b7f610e54e08b84deb1af.zip |
qapi: add filter-node-name to block-stream
Provide the possibility to pass the 'filter-node-name' parameter to the
block-stream job as it is done for the commit block job.
Signed-off-by: Andrey Shinkevich <andrey.shinkevich@virtuozzo.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
[vsementsov: comment indentation, s/Since: 5.2/Since: 6.0/]
Reviewed-by: Max Reitz <mreitz@redhat.com>
Message-Id: <20201216061703.70908-5-vsementsov@virtuozzo.com>
[mreitz: s/commit/stream/]
Signed-off-by: Max Reitz <mreitz@redhat.com>
Diffstat (limited to 'include/block')
-rw-r--r-- | include/block/block_int.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/block/block_int.h b/include/block/block_int.h index b9ef61fe4d..f3d0a0e60a 100644 --- a/include/block/block_int.h +++ b/include/block/block_int.h @@ -1143,6 +1143,9 @@ int is_windows_drive(const char *filename); * See @BlockJobCreateFlags * @speed: The maximum speed, in bytes per second, or 0 for unlimited. * @on_error: The action to take upon error. + * @filter_node_name: The node name that should be assigned to the filter + * driver that the stream job inserts into the graph above + * @bs. NULL means that a node name should be autogenerated. * @errp: Error object. * * Start a streaming operation on @bs. Clusters that are unallocated @@ -1155,7 +1158,9 @@ int is_windows_drive(const char *filename); void stream_start(const char *job_id, BlockDriverState *bs, BlockDriverState *base, const char *backing_file_str, int creation_flags, int64_t speed, - BlockdevOnError on_error, Error **errp); + BlockdevOnError on_error, + const char *filter_node_name, + Error **errp); /** * commit_start: |