mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 02:50:53 +07:00
sample/mdev/mbochs: add mbochs_kunmap_dmabuf
There is no default implementation for dma_buf_ops->unmap. So add a function unmapping the page, otherwise we'll leak them. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
This commit is contained in:
parent
2203d8a76e
commit
7733e05b34
@ -811,11 +811,18 @@ static void *mbochs_kmap_dmabuf(struct dma_buf *buf, unsigned long page_num)
|
||||
return kmap(page);
|
||||
}
|
||||
|
||||
static void mbochs_kunmap_dmabuf(struct dma_buf *buf, unsigned long page_num,
|
||||
void *vaddr)
|
||||
{
|
||||
kunmap(vaddr);
|
||||
}
|
||||
|
||||
static struct dma_buf_ops mbochs_dmabuf_ops = {
|
||||
.map_dma_buf = mbochs_map_dmabuf,
|
||||
.unmap_dma_buf = mbochs_unmap_dmabuf,
|
||||
.release = mbochs_release_dmabuf,
|
||||
.map = mbochs_kmap_dmabuf,
|
||||
.unmap = mbochs_kunmap_dmabuf,
|
||||
.mmap = mbochs_mmap_dmabuf,
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user