summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Hajnoczi <stefanha@redhat.com>2014-06-17 14:32:04 +0800
committerKevin Wolf <kwolf@redhat.com>2014-06-27 18:19:57 +0200
commitac46821f2c6eb0617ac911daff111cbc30a4c40c (patch)
tree15e3dcf00f0a031265bb946a3e7aa25255efe7e5
parentee17e84830e2e7030d57db5b415719e9022573cd (diff)
downloadqemu-ac46821f2c6eb0617ac911daff111cbc30a4c40c.tar.gz
block: make bdrv_query_stats() static
This function is only called from block/qapi.c. There is no need to keep it public. Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> Signed-off-by: Fam Zheng <famz@redhat.com> Tested-by: Paolo Bonzini <pbonzini@redhat.com> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
-rw-r--r--block/qapi.c2
-rw-r--r--include/block/qapi.h1
2 files changed, 1 insertions, 2 deletions
diff --git a/block/qapi.c b/block/qapi.c
index 97e16418ef..aeabaaf85c 100644
--- a/block/qapi.c
+++ b/block/qapi.c
@@ -293,7 +293,7 @@ void bdrv_query_info(BlockDriverState *bs,
qapi_free_BlockInfo(info);
}
-BlockStats *bdrv_query_stats(const BlockDriverState *bs)
+static BlockStats *bdrv_query_stats(const BlockDriverState *bs)
{
BlockStats *s;
diff --git a/include/block/qapi.h b/include/block/qapi.h
index e92c00daf6..03745464d6 100644
--- a/include/block/qapi.h
+++ b/include/block/qapi.h
@@ -39,7 +39,6 @@ void bdrv_query_image_info(BlockDriverState *bs,
void bdrv_query_info(BlockDriverState *bs,
BlockInfo **p_info,
Error **errp);
-BlockStats *bdrv_query_stats(const BlockDriverState *bs);
void bdrv_snapshot_dump(fprintf_function func_fprintf, void *f,
QEMUSnapshotInfo *sn);