提交 3dab1551 编写于 作者: P Peter Lieven 提交者: Stefan Hajnoczi

block/iscsi: use sector_limits_lun2qemu throughout iscsi_refresh_limits

As Max pointed out there is a hidden cast from int64_t to int for all
limits. So use the newly introduced sector_limits_lun2qemu for all
limits received from the target.
Signed-off-by: NPeter Lieven <pl@kamp.de>
Reviewed-by: NMax Reitz <mreitz@redhat.com>
Signed-off-by: NStefan Hajnoczi <stefanha@redhat.com>
上级 6c5a42ac
...@@ -1468,23 +1468,23 @@ static void iscsi_refresh_limits(BlockDriverState *bs, Error **errp) ...@@ -1468,23 +1468,23 @@ static void iscsi_refresh_limits(BlockDriverState *bs, Error **errp)
if (iscsilun->lbp.lbpu) { if (iscsilun->lbp.lbpu) {
if (iscsilun->bl.max_unmap < 0xffffffff) { if (iscsilun->bl.max_unmap < 0xffffffff) {
bs->bl.max_discard = sector_lun2qemu(iscsilun->bl.max_unmap, bs->bl.max_discard =
iscsilun); sector_limits_lun2qemu(iscsilun->bl.max_unmap, iscsilun);
} }
bs->bl.discard_alignment = sector_lun2qemu(iscsilun->bl.opt_unmap_gran, bs->bl.discard_alignment =
iscsilun); sector_limits_lun2qemu(iscsilun->bl.opt_unmap_gran, iscsilun);
} }
if (iscsilun->bl.max_ws_len < 0xffffffff) { if (iscsilun->bl.max_ws_len < 0xffffffff) {
bs->bl.max_write_zeroes = sector_lun2qemu(iscsilun->bl.max_ws_len, bs->bl.max_write_zeroes =
iscsilun); sector_limits_lun2qemu(iscsilun->bl.max_ws_len, iscsilun);
} }
if (iscsilun->lbp.lbpws) { if (iscsilun->lbp.lbpws) {
bs->bl.write_zeroes_alignment = sector_lun2qemu(iscsilun->bl.opt_unmap_gran, bs->bl.write_zeroes_alignment =
iscsilun); sector_limits_lun2qemu(iscsilun->bl.opt_unmap_gran, iscsilun);
} }
bs->bl.opt_transfer_length = sector_lun2qemu(iscsilun->bl.opt_xfer_len, bs->bl.opt_transfer_length =
iscsilun); sector_limits_lun2qemu(iscsilun->bl.opt_xfer_len, iscsilun);
} }
/* Since iscsi_open() ignores bdrv_flags, there is nothing to do here in /* Since iscsi_open() ignores bdrv_flags, there is nothing to do here in
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册