drm/msm/gpu: Don't allow zero fence_id
Elsewhere we treat zero as "no fence" and __msm_gem_submit_destroy()
skips removal from fence_idr. We could alternately change this to use
negative values for "no fence" but I think it is more clear to not allow
zero as a valid fence_id.
Signed-off-by: Rob Clark <robdclark@chromium.org>
Fixes: a61acbbe9c ("drm/msm: Track "seqno" fences by idr")
Link: https://lore.kernel.org/r/20211129182344.292609-1-robdclark@gmail.com
Signed-off-by: Rob Clark <robdclark@chromium.org>
This commit is contained in:
@@ -881,7 +881,7 @@ int msm_ioctl_gem_submit(struct drm_device *dev, void *data,
|
|||||||
* to the underlying fence.
|
* to the underlying fence.
|
||||||
*/
|
*/
|
||||||
submit->fence_id = idr_alloc_cyclic(&queue->fence_idr,
|
submit->fence_id = idr_alloc_cyclic(&queue->fence_idr,
|
||||||
submit->user_fence, 0, INT_MAX, GFP_KERNEL);
|
submit->user_fence, 1, INT_MAX, GFP_KERNEL);
|
||||||
if (submit->fence_id < 0) {
|
if (submit->fence_id < 0) {
|
||||||
ret = submit->fence_id = 0;
|
ret = submit->fence_id = 0;
|
||||||
submit->fence_id = 0;
|
submit->fence_id = 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user