mirror of https://gitee.com/openkylin/linux.git
drm/armada: plug leak in dumb_map_offset
We need to drop the gem bo reference if it's an imported one. Signed-off-by: Daniel Vetter <daniel.vetter@intel.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
parent
7a6f7133c5
commit
8d6185b55c
|
@ -285,7 +285,7 @@ int armada_gem_dumb_map_offset(struct drm_file *file, struct drm_device *dev,
|
||||||
/* Don't allow imported objects to be mapped */
|
/* Don't allow imported objects to be mapped */
|
||||||
if (obj->obj.import_attach) {
|
if (obj->obj.import_attach) {
|
||||||
ret = -EINVAL;
|
ret = -EINVAL;
|
||||||
goto err_unlock;
|
goto err_unref;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = drm_gem_create_mmap_offset(&obj->obj);
|
ret = drm_gem_create_mmap_offset(&obj->obj);
|
||||||
|
@ -294,6 +294,7 @@ int armada_gem_dumb_map_offset(struct drm_file *file, struct drm_device *dev,
|
||||||
DRM_DEBUG_DRIVER("handle %#x offset %llx\n", handle, *offset);
|
DRM_DEBUG_DRIVER("handle %#x offset %llx\n", handle, *offset);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
err_unref:
|
||||||
drm_gem_object_unreference(&obj->obj);
|
drm_gem_object_unreference(&obj->obj);
|
||||||
err_unlock:
|
err_unlock:
|
||||||
mutex_unlock(&dev->struct_mutex);
|
mutex_unlock(&dev->struct_mutex);
|
||||||
|
|
Loading…
Reference in New Issue