vdpa_sim: Use iova_shift() for the size passed to alloc_iova()
authorXie Yongji <xieyongji@bytedance.com>
Mon, 9 Aug 2021 10:09:23 +0000 (18:09 +0800)
committerMichael S. Tsirkin <mst@redhat.com>
Sun, 5 Sep 2021 20:23:08 +0000 (16:23 -0400)
commit0d8c9e7d4b403f10f5c277efefd787244198a00c
tree1516b93df3fb0fac37843d7367974936d923ce98
parent23b228cb89fdad2140b6b73254ecaf5fb05de5fe
vdpa_sim: Use iova_shift() for the size passed to alloc_iova()

The size passed to alloc_iova() should be the size of page frames.
Now we use byte granularity for the iova domain, so it's safe to
pass the size in bytes to alloc_iova(). But it would be better to use
iova_shift() for the size to avoid future bugs if we change granularity.

Signed-off-by: Xie Yongji <xieyongji@bytedance.com>
Reviewed-by: Stefano Garzarella <sgarzare@redhat.com>
Link: https://lore.kernel.org/r/20210809100923.38-1-xieyongji@bytedance.com
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Acked-by: Jason Wang <jasowang@redhat.com>
drivers/vdpa/vdpa_sim/vdpa_sim.c