diff options
author | Marcelo Tosatti <mtosatti@redhat.com> | 2012-01-18 14:40:53 +0000 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2012-01-26 14:49:18 +0100 |
commit | c8c3080f4a6fbbf3c9c5d6efd1b49e7ca6479d1e (patch) | |
tree | b034c08322e2c0f1d7bcbf752ff8c123b7a68213 /block_int.h | |
parent | 019b8cbf76fc3126d300c401acca3102c69e7876 (diff) |
block: add support for partial streaming
Add support for streaming data from an intermediate section of the
image chain (see patch and documentation for details).
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'block_int.h')
-rw-r--r-- | block_int.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/block_int.h b/block_int.h index 4f638705e0..7be2988ca7 100644 --- a/block_int.h +++ b/block_int.h @@ -328,6 +328,7 @@ void block_job_cancel(BlockJob *job); bool block_job_is_cancelled(BlockJob *job); int stream_start(BlockDriverState *bs, BlockDriverState *base, - BlockDriverCompletionFunc *cb, void *opaque); + const char *base_id, BlockDriverCompletionFunc *cb, + void *opaque); #endif /* BLOCK_INT_H */ |