mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
mirror: limit niov to IOV_MAX elements, again
During the refactor of mirror_iteration ine5b43573
, we regressed the fix introduced incae98cb8
. This patch re-adds IOV_MAX checking to cases where we aren't checking alignment (and size) already. Signed-off-by: John Snow <jsnow@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Fam Zheng <famz@redhat.com> Message-id: 1466625064-11280-3-git-send-email-jsnow@redhat.com Signed-off-by: Jeff Cody <jcody@redhat.com>
This commit is contained in:
parent
176129552f
commit
e4808881cb
1 changed files with 3 additions and 0 deletions
|
@ -231,11 +231,14 @@ static int mirror_do_read(MirrorBlockJob *s, int64_t sector_num,
|
||||||
int sectors_per_chunk, nb_chunks;
|
int sectors_per_chunk, nb_chunks;
|
||||||
int ret;
|
int ret;
|
||||||
MirrorOp *op;
|
MirrorOp *op;
|
||||||
|
int max_sectors;
|
||||||
|
|
||||||
sectors_per_chunk = s->granularity >> BDRV_SECTOR_BITS;
|
sectors_per_chunk = s->granularity >> BDRV_SECTOR_BITS;
|
||||||
|
max_sectors = sectors_per_chunk * s->max_iov;
|
||||||
|
|
||||||
/* We can only handle as much as buf_size at a time. */
|
/* We can only handle as much as buf_size at a time. */
|
||||||
nb_sectors = MIN(s->buf_size >> BDRV_SECTOR_BITS, nb_sectors);
|
nb_sectors = MIN(s->buf_size >> BDRV_SECTOR_BITS, nb_sectors);
|
||||||
|
nb_sectors = MIN(max_sectors, nb_sectors);
|
||||||
assert(nb_sectors);
|
assert(nb_sectors);
|
||||||
ret = nb_sectors;
|
ret = nb_sectors;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue