aboutsummaryrefslogtreecommitdiff
path: root/block/file-posix.c
diff options
context:
space:
mode:
authorFam Zheng <famz@redhat.com>2018-07-10 14:31:15 +0800
committerKevin Wolf <kwolf@redhat.com>2018-07-10 16:01:51 +0200
commitf8a30874ca4dd6560b5827433f07877e60960946 (patch)
treed92c167bbbe30e090b9d9998d495e12614149bb2 /block/file-posix.c
parent6703db131f832d6af58fa629be11c5efa5a6adb8 (diff)
downloadqemu-f8a30874ca4dd6560b5827433f07877e60960946.zip
qemu-f8a30874ca4dd6560b5827433f07877e60960946.tar.gz
qemu-f8a30874ca4dd6560b5827433f07877e60960946.tar.bz2
block: Prefix file driver trace points with "file_"
With in one module, trace points usually have a common prefix named after the module name. paio_submit and paio_submit_co are the only two trace points so far in the two file protocol drivers. As we are adding more, having a common prefix here is better so that trace points can be enabled with a glob. Rename them. Suggested-by: Kevin Wolf <kwolf@redhat.com> Signed-off-by: Fam Zheng <famz@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'block/file-posix.c')
-rw-r--r--block/file-posix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/block/file-posix.c b/block/file-posix.c
index 4fec8cb..1185c7c 100644
--- a/block/file-posix.c
+++ b/block/file-posix.c
@@ -1743,7 +1743,7 @@ static int paio_submit_co_full(BlockDriverState *bs, int fd,
assert(qiov->size == bytes);
}
- trace_paio_submit_co(offset, bytes, type);
+ trace_file_paio_submit_co(offset, bytes, type);
pool = aio_get_thread_pool(bdrv_get_aio_context(bs));
return thread_pool_submit_co(pool, aio_worker, acb);
}