diff options
author | Christian König <christian.koenig@amd.com> | 2020-10-08 12:57:32 +0200 |
---|---|---|
committer | Christian König <christian.koenig@amd.com> | 2020-11-30 15:00:45 +0100 |
commit | c67e62790f5c156705fb162da840c6d89d0af6e0 (patch) | |
tree | 019349d0d65f0d149288c29f23c89502667c0e86 /drivers/gpu/drm/xen | |
parent | 18f7608a67fca8b8305b3557e2c00bca54785acd (diff) | |
download | lwn-c67e62790f5c156705fb162da840c6d89d0af6e0.tar.gz lwn-c67e62790f5c156705fb162da840c6d89d0af6e0.zip |
drm/prime: split array import functions v4
Mapping the imported pages of a DMA-buf into an userspace process
doesn't work as expected.
But we have reoccurring requests on this approach, so split the
functions for this and document that dma_buf_mmap() needs to be used
instead.
v2: split it into two functions
v3: rebased on latest changes
v4: update commit message a bit
Signed-off-by: Christian König <christian.koenig@amd.com>
Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/403838/
Diffstat (limited to 'drivers/gpu/drm/xen')
-rw-r--r-- | drivers/gpu/drm/xen/xen_drm_front_gem.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/xen/xen_drm_front_gem.c b/drivers/gpu/drm/xen/xen_drm_front_gem.c index 74db5a840bed..b293c67230ef 100644 --- a/drivers/gpu/drm/xen/xen_drm_front_gem.c +++ b/drivers/gpu/drm/xen/xen_drm_front_gem.c @@ -220,8 +220,8 @@ xen_drm_front_gem_import_sg_table(struct drm_device *dev, xen_obj->sgt_imported = sgt; - ret = drm_prime_sg_to_page_addr_arrays(sgt, xen_obj->pages, - NULL, xen_obj->num_pages); + ret = drm_prime_sg_to_page_array(sgt, xen_obj->pages, + xen_obj->num_pages); if (ret < 0) return ERR_PTR(ret); |