block: Do not export bdrv_first
The bdrv_first linked list of BlockDriverStates is currently extern so that block migration can iterate the list. However, since there is already a bdrv_iterate() function there is no need to expose bdrv_first. Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
parent
763b6084ba
commit
b66460e4e9
@ -230,26 +230,16 @@ static void set_dirty_tracking(int enable)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void init_blk_migration(Monitor *mon, QEMUFile *f)
|
static void init_blk_migration_it(void *opaque, BlockDriverState *bs)
|
||||||
{
|
{
|
||||||
|
Monitor *mon = opaque;
|
||||||
BlkMigDevState *bmds;
|
BlkMigDevState *bmds;
|
||||||
BlockDriverState *bs;
|
|
||||||
int64_t sectors;
|
int64_t sectors;
|
||||||
|
|
||||||
block_mig_state.submitted = 0;
|
|
||||||
block_mig_state.read_done = 0;
|
|
||||||
block_mig_state.transferred = 0;
|
|
||||||
block_mig_state.total_sector_sum = 0;
|
|
||||||
block_mig_state.prev_progress = -1;
|
|
||||||
block_mig_state.bulk_completed = 0;
|
|
||||||
block_mig_state.total_time = 0;
|
|
||||||
block_mig_state.reads = 0;
|
|
||||||
|
|
||||||
for (bs = bdrv_first; bs != NULL; bs = bs->next) {
|
|
||||||
if (bs->type == BDRV_TYPE_HD) {
|
if (bs->type == BDRV_TYPE_HD) {
|
||||||
sectors = bdrv_getlength(bs) >> BDRV_SECTOR_BITS;
|
sectors = bdrv_getlength(bs) >> BDRV_SECTOR_BITS;
|
||||||
if (sectors == 0) {
|
if (sectors == 0) {
|
||||||
continue;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
bmds = qemu_mallocz(sizeof(BlkMigDevState));
|
bmds = qemu_mallocz(sizeof(BlkMigDevState));
|
||||||
@ -272,7 +262,20 @@ static void init_blk_migration(Monitor *mon, QEMUFile *f)
|
|||||||
|
|
||||||
QSIMPLEQ_INSERT_TAIL(&block_mig_state.bmds_list, bmds, entry);
|
QSIMPLEQ_INSERT_TAIL(&block_mig_state.bmds_list, bmds, entry);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void init_blk_migration(Monitor *mon, QEMUFile *f)
|
||||||
|
{
|
||||||
|
block_mig_state.submitted = 0;
|
||||||
|
block_mig_state.read_done = 0;
|
||||||
|
block_mig_state.transferred = 0;
|
||||||
|
block_mig_state.total_sector_sum = 0;
|
||||||
|
block_mig_state.prev_progress = -1;
|
||||||
|
block_mig_state.bulk_completed = 0;
|
||||||
|
block_mig_state.total_time = 0;
|
||||||
|
block_mig_state.reads = 0;
|
||||||
|
|
||||||
|
bdrv_iterate(init_blk_migration_it, mon);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int blk_mig_save_bulked_block(Monitor *mon, QEMUFile *f)
|
static int blk_mig_save_bulked_block(Monitor *mon, QEMUFile *f)
|
||||||
|
2
block.c
2
block.c
@ -55,7 +55,7 @@ static int bdrv_read_em(BlockDriverState *bs, int64_t sector_num,
|
|||||||
static int bdrv_write_em(BlockDriverState *bs, int64_t sector_num,
|
static int bdrv_write_em(BlockDriverState *bs, int64_t sector_num,
|
||||||
const uint8_t *buf, int nb_sectors);
|
const uint8_t *buf, int nb_sectors);
|
||||||
|
|
||||||
BlockDriverState *bdrv_first;
|
static BlockDriverState *bdrv_first;
|
||||||
|
|
||||||
static BlockDriver *first_drv;
|
static BlockDriver *first_drv;
|
||||||
|
|
||||||
|
@ -200,8 +200,6 @@ void qemu_aio_release(void *p);
|
|||||||
|
|
||||||
void *qemu_blockalign(BlockDriverState *bs, size_t size);
|
void *qemu_blockalign(BlockDriverState *bs, size_t size);
|
||||||
|
|
||||||
extern BlockDriverState *bdrv_first;
|
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
int is_windows_drive(const char *filename);
|
int is_windows_drive(const char *filename);
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user