提交 92b30744 编写于 作者: K Kevin Wolf 提交者: Blue Swirl

qcow2: Remove static forward declaration

OpenBSDs gcc is said to generate warnings for this declaration, so don't
reference bdrv_qcow2 directly, but look it up using bdrv_find_format.
Signed-off-by: NKevin Wolf <kwolf@redhat.com>
Signed-off-by: NBlue Swirl <blauwirbel@gmail.com>
上级 de5f3f40
...@@ -52,8 +52,6 @@ typedef struct { ...@@ -52,8 +52,6 @@ typedef struct {
#define QCOW_EXT_MAGIC_END 0 #define QCOW_EXT_MAGIC_END 0
#define QCOW_EXT_MAGIC_BACKING_FORMAT 0xE2792ACA #define QCOW_EXT_MAGIC_BACKING_FORMAT 0xE2792ACA
static BlockDriver bdrv_qcow2;
static int qcow_probe(const uint8_t *buf, int buf_size, const char *filename) static int qcow_probe(const uint8_t *buf, int buf_size, const char *filename)
{ {
const QCowHeader *cow_header = (const void *)buf; const QCowHeader *cow_header = (const void *)buf;
...@@ -1018,8 +1016,9 @@ exit: ...@@ -1018,8 +1016,9 @@ exit:
/* Preallocate metadata */ /* Preallocate metadata */
if (ret == 0 && prealloc) { if (ret == 0 && prealloc) {
BlockDriverState *bs; BlockDriverState *bs;
BlockDriver *drv = bdrv_find_format("qcow2");
bs = bdrv_new(""); bs = bdrv_new("");
bdrv_open(bs, filename, BDRV_O_CACHE_WB | BDRV_O_RDWR, &bdrv_qcow2); bdrv_open(bs, filename, BDRV_O_CACHE_WB | BDRV_O_RDWR, drv);
preallocate(bs); preallocate(bs);
bdrv_close(bs); bdrv_close(bs);
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册