diff options
Diffstat (limited to 'block-cow.c')
-rw-r--r-- | block-cow.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/block-cow.c b/block-cow.c index 17e3292258..94b3549389 100644 --- a/block-cow.c +++ b/block-cow.c @@ -24,6 +24,7 @@ #ifndef _WIN32 #include "qemu-common.h" #include "block_int.h" +#include "module.h" #include <sys/mman.h> /**************************************************************/ @@ -252,7 +253,7 @@ static void cow_flush(BlockDriverState *bs) fsync(s->fd); } -BlockDriver bdrv_cow = { +static BlockDriver bdrv_cow = { .format_name = "cow", .instance_size = sizeof(BDRVCowState), .bdrv_probe = cow_probe, @@ -264,4 +265,11 @@ BlockDriver bdrv_cow = { .bdrv_flush = cow_flush, .bdrv_is_allocated = cow_is_allocated, }; + +static void bdrv_cow_init(void) +{ + bdrv_register(&bdrv_cow); +} + +block_init(bdrv_cow_init); #endif |