diff options
author | Rob Clark <robdclark@chromium.org> | 2021-09-30 20:43:20 +0300 |
---|---|---|
committer | Rob Clark <robdclark@chromium.org> | 2021-10-01 23:10:20 +0300 |
commit | 14eb0cb4e9a7323c8735cf6c681ed8423ce6ae06 (patch) | |
tree | 8acd1a8f32cb4abbd00c26a1a286cf60cda46ee9 /drivers/gpu/drm/msm/msm_drv.h | |
parent | f6f59072e821901d96c791864a07d57d8ec8d312 (diff) | |
download | linux-14eb0cb4e9a7323c8735cf6c681ed8423ce6ae06.tar.xz |
drm/msm/a6xx: Track current ctx by seqno
In theory a context can be destroyed and a new one allocated at the same
address, making the pointer comparision to detect when we don't need to
update the current pagetables invalid. Instead assign a sequence number
to each context on creation, and use this for the check.
Fixes: 84c31ee16f90 ("drm/msm/a6xx: Add support for per-instance pagetables")
Signed-off-by: Rob Clark <robdclark@chromium.org>
Diffstat (limited to 'drivers/gpu/drm/msm/msm_drv.h')
-rw-r--r-- | drivers/gpu/drm/msm/msm_drv.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/msm/msm_drv.h b/drivers/gpu/drm/msm/msm_drv.h index 8b005d1ac899..a0340607984a 100644 --- a/drivers/gpu/drm/msm/msm_drv.h +++ b/drivers/gpu/drm/msm/msm_drv.h @@ -59,6 +59,7 @@ struct msm_file_private { int queueid; struct msm_gem_address_space *aspace; struct kref ref; + int seqno; }; enum msm_mdp_plane_property { |