mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-05 10:31:46 +09:00
drm/msm: Disallow submit with fence id 0
[ Upstream commit1b5d0ddcb3] A fence id of zero is expected to be invalid, and is not removed from the fence_idr table. If userspace is requesting to specify the fence id with the FENCE_SN_IN flag, we need to reject a zero fence id value. Fixes:17154addc5("drm/msm: Add MSM_SUBMIT_FENCE_SN_IN") Signed-off-by: Rob Clark <robdclark@chromium.org> Patchwork: https://patchwork.freedesktop.org/patch/549180/ Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
3398e8b283
commit
a39bf13f86
@@ -875,7 +875,7 @@ int msm_ioctl_gem_submit(struct drm_device *dev, void *data,
|
|||||||
* after the job is armed
|
* after the job is armed
|
||||||
*/
|
*/
|
||||||
if ((args->flags & MSM_SUBMIT_FENCE_SN_IN) &&
|
if ((args->flags & MSM_SUBMIT_FENCE_SN_IN) &&
|
||||||
idr_find(&queue->fence_idr, args->fence)) {
|
(!args->fence || idr_find(&queue->fence_idr, args->fence))) {
|
||||||
spin_unlock(&queue->idr_lock);
|
spin_unlock(&queue->idr_lock);
|
||||||
ret = -EINVAL;
|
ret = -EINVAL;
|
||||||
goto out;
|
goto out;
|
||||||
|
|||||||
Reference in New Issue
Block a user