diff options
author | Kevin Wolf | 2011-11-24 12:15:28 +0100 |
---|---|---|
committer | Kevin Wolf | 2011-12-05 14:51:38 +0100 |
commit | c57c465800a9d193f9b41c97dbbbb6cd4fb08ff6 (patch) | |
tree | 727a83dbfe34beff4c41c1e11a3b9cd97b39377e /trace-events | |
parent | cow: use bdrv_co_is_allocated() (diff) | |
download | qemu-c57c465800a9d193f9b41c97dbbbb6cd4fb08ff6.tar.gz qemu-c57c465800a9d193f9b41c97dbbbb6cd4fb08ff6.tar.xz qemu-c57c465800a9d193f9b41c97dbbbb6cd4fb08ff6.zip |
dma-helpers: Add trace events
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Diffstat (limited to 'trace-events')
-rw-r--r-- | trace-events | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/trace-events b/trace-events index 518b76b137..bf1cf57032 100644 --- a/trace-events +++ b/trace-events @@ -632,3 +632,10 @@ win_helper_no_switch_pstate(uint32_t new_pstate_regs) "change_pstate: regs new=% win_helper_wrpil(uint32_t psrpil, uint32_t new_pil) "old=%x new=%x" win_helper_done(uint32_t tl) "tl=%d" win_helper_retry(uint32_t tl) "tl=%d" + +# dma-helpers.c +dma_bdrv_io(void *dbs, void *bs, int64_t sector_num, bool to_dev) "dbs=%p bs=%p sector_num=%" PRId64 " to_dev=%d" +dma_aio_cancel(void *dbs) "dbs=%p" +dma_complete(void *dbs, int ret, void *cb) "dbs=%p ret=%d cb=%p" +dma_bdrv_cb(void *dbs, int ret) "dbs=%p ret=%d" +dma_map_wait(void *dbs) "dbs=%p" |