]> git.baikalelectronics.ru Git - kernel.git/commit
xen/virtio: Handle cases when page offset > PAGE_SIZE properly
authorOleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
Sat, 8 Oct 2022 15:10:12 +0000 (18:10 +0300)
committerJuergen Gross <jgross@suse.com>
Fri, 14 Oct 2022 12:22:20 +0000 (14:22 +0200)
commit2f9b7a01b3a33f4e422fe5f35b9676ac8ed3cdeb
treebd219826e3687b16045296fda09db78400cf248e
parent4590dd142d027dfdada052686909c0db0c53c9c4
xen/virtio: Handle cases when page offset > PAGE_SIZE properly

Passed to xen_grant_dma_map_page() offset in the page
can be > PAGE_SIZE even if the guest uses the same page granularity
as Xen (4KB).

Before current patch, if such case happened we ended up providing
grants for the whole region in xen_grant_dma_map_page() which
was really unnecessary. The more, we ended up not releasing all
grants which represented that region in xen_grant_dma_unmap_page().

Current patch updates the code to be able to deal with such cases.

Signed-off-by: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>
Reviewed-by: Xenia Ragiadakou <burzalodowa@gmail.com>
Link: https://lore.kernel.org/r/20221008151013.2537826-2-olekstysh@gmail.com
Signed-off-by: Juergen Gross <jgross@suse.com>
drivers/xen/grant-dma-ops.c