diff options
author | Stefan Hajnoczi | 2012-01-18 15:40:44 +0100 |
---|---|---|
committer | Kevin Wolf | 2012-01-26 11:45:26 +0100 |
commit | 4f1043b4ffdd6f130cab7c1d8d59d833a475adac (patch) | |
tree | 58d7bc833f826790a307dc58ed7aedb2c3257ee3 /trace-events | |
parent | block: add BlockJob interface for long-running operations (diff) | |
download | qemu-4f1043b4ffdd6f130cab7c1d8d59d833a475adac.tar.gz qemu-4f1043b4ffdd6f130cab7c1d8d59d833a475adac.tar.xz qemu-4f1043b4ffdd6f130cab7c1d8d59d833a475adac.zip |
block: add image streaming block job
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'trace-events')
-rw-r--r-- | trace-events | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/trace-events b/trace-events index 035d08fe7c..f6a3cd1aaf 100644 --- a/trace-events +++ b/trace-events @@ -70,6 +70,10 @@ bdrv_co_writev(void *bs, int64_t sector_num, int nb_sector) "bs %p sector_num %" bdrv_co_io_em(void *bs, int64_t sector_num, int nb_sectors, int is_write, void *acb) "bs %p sector_num %"PRId64" nb_sectors %d is_write %d acb %p" bdrv_co_do_copy_on_readv(void *bs, int64_t sector_num, int nb_sectors, int64_t cluster_sector_num, int cluster_nb_sectors) "bs %p sector_num %"PRId64" nb_sectors %d cluster_sector_num %"PRId64" cluster_nb_sectors %d" +# block/stream.c +stream_one_iteration(void *s, int64_t sector_num, int nb_sectors, int is_allocated) "s %p sector_num %"PRId64" nb_sectors %d is_allocated %d" +stream_start(void *bs, void *base, void *s, void *co, void *opaque) "bs %p base %p s %p co %p opaque %p" + # hw/virtio-blk.c virtio_blk_req_complete(void *req, int status) "req %p status %d" virtio_blk_rw_complete(void *req, int ret) "req %p ret %d" |