Loading hw/block/pflash_cfi01.c +6 −6 Original line number Diff line number Diff line Loading @@ -413,11 +413,11 @@ static void pflash_update(pflash_t *pfl, int offset, int offset_end; if (pfl->blk) { offset_end = offset + size; /* round to sectors */ offset = offset >> 9; offset_end = (offset_end + 511) >> 9; blk_write(pfl->blk, offset, pfl->storage + (offset << 9), offset_end - offset); /* widen to sector boundaries */ offset = QEMU_ALIGN_DOWN(offset, BDRV_SECTOR_SIZE); offset_end = QEMU_ALIGN_UP(offset_end, BDRV_SECTOR_SIZE); blk_pwrite(pfl->blk, offset, pfl->storage + offset, offset_end - offset, 0); } } Loading Loading @@ -739,7 +739,7 @@ static void pflash_cfi01_realize(DeviceState *dev, Error **errp) if (pfl->blk) { /* read the initial flash content */ ret = blk_read(pfl->blk, 0, pfl->storage, total_len >> 9); ret = blk_pread(pfl->blk, 0, pfl->storage, total_len); if (ret < 0) { vmstate_unregister_ram(&pfl->mem, DEVICE(pfl)); Loading hw/block/pflash_cfi02.c +6 −6 Original line number Diff line number Diff line Loading @@ -253,11 +253,11 @@ static void pflash_update(pflash_t *pfl, int offset, int offset_end; if (pfl->blk) { offset_end = offset + size; /* round to sectors */ offset = offset >> 9; offset_end = (offset_end + 511) >> 9; blk_write(pfl->blk, offset, pfl->storage + (offset << 9), offset_end - offset); /* widen to sector boundaries */ offset = QEMU_ALIGN_DOWN(offset, BDRV_SECTOR_SIZE); offset_end = QEMU_ALIGN_UP(offset_end, BDRV_SECTOR_SIZE); blk_pwrite(pfl->blk, offset, pfl->storage + offset, offset_end - offset, 0); } } Loading Loading @@ -622,7 +622,7 @@ static void pflash_cfi02_realize(DeviceState *dev, Error **errp) pfl->chip_len = chip_len; if (pfl->blk) { /* read the initial flash content */ ret = blk_read(pfl->blk, 0, pfl->storage, chip_len >> 9); ret = blk_pread(pfl->blk, 0, pfl->storage, chip_len); if (ret < 0) { vmstate_unregister_ram(&pfl->orig_mem, DEVICE(pfl)); error_setg(errp, "failed to read the initial flash content"); Loading Loading
hw/block/pflash_cfi01.c +6 −6 Original line number Diff line number Diff line Loading @@ -413,11 +413,11 @@ static void pflash_update(pflash_t *pfl, int offset, int offset_end; if (pfl->blk) { offset_end = offset + size; /* round to sectors */ offset = offset >> 9; offset_end = (offset_end + 511) >> 9; blk_write(pfl->blk, offset, pfl->storage + (offset << 9), offset_end - offset); /* widen to sector boundaries */ offset = QEMU_ALIGN_DOWN(offset, BDRV_SECTOR_SIZE); offset_end = QEMU_ALIGN_UP(offset_end, BDRV_SECTOR_SIZE); blk_pwrite(pfl->blk, offset, pfl->storage + offset, offset_end - offset, 0); } } Loading Loading @@ -739,7 +739,7 @@ static void pflash_cfi01_realize(DeviceState *dev, Error **errp) if (pfl->blk) { /* read the initial flash content */ ret = blk_read(pfl->blk, 0, pfl->storage, total_len >> 9); ret = blk_pread(pfl->blk, 0, pfl->storage, total_len); if (ret < 0) { vmstate_unregister_ram(&pfl->mem, DEVICE(pfl)); Loading
hw/block/pflash_cfi02.c +6 −6 Original line number Diff line number Diff line Loading @@ -253,11 +253,11 @@ static void pflash_update(pflash_t *pfl, int offset, int offset_end; if (pfl->blk) { offset_end = offset + size; /* round to sectors */ offset = offset >> 9; offset_end = (offset_end + 511) >> 9; blk_write(pfl->blk, offset, pfl->storage + (offset << 9), offset_end - offset); /* widen to sector boundaries */ offset = QEMU_ALIGN_DOWN(offset, BDRV_SECTOR_SIZE); offset_end = QEMU_ALIGN_UP(offset_end, BDRV_SECTOR_SIZE); blk_pwrite(pfl->blk, offset, pfl->storage + offset, offset_end - offset, 0); } } Loading Loading @@ -622,7 +622,7 @@ static void pflash_cfi02_realize(DeviceState *dev, Error **errp) pfl->chip_len = chip_len; if (pfl->blk) { /* read the initial flash content */ ret = blk_read(pfl->blk, 0, pfl->storage, chip_len >> 9); ret = blk_pread(pfl->blk, 0, pfl->storage, chip_len); if (ret < 0) { vmstate_unregister_ram(&pfl->orig_mem, DEVICE(pfl)); error_setg(errp, "failed to read the initial flash content"); Loading