aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnder Conselvan de Oliveira <ander.conselvan.de.oliveira@intel.com>2015-03-30 03:41:19 -0400
committerDaniel Vetter <daniel.vetter@ffwll.ch>2015-03-30 05:39:30 -0400
commit8a5c0bde54ca0354ae8b7e9d37d17bc514aa6c42 (patch)
treed1aeadd849f84f077a05c8c30e283b3d9da03ee6
parent7ef5f82b100716b23de7d2da6ff602b0842e5804 (diff)
drm/atomic: Clear crtcs, connectors and planes when clearing state
Users of the atomic state assume that if the pointer to a crtc, plane or connector is not NULL in the respective object vector, than the state for that object in *_states vector also won't be NULL. That assumption was broken by drm_atomic_state_clear(), which would clear the state pointer but leave the pointer to the object still set. This fixes a NULL pointer dereference in i915 caused by the use of drm_atomic_state_clear(). Cc: dri-devel@lists.freedesktop.org Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan.de.oliveira@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
-rw-r--r--drivers/gpu/drm/drm_atomic.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/gpu/drm/drm_atomic.c b/drivers/gpu/drm/drm_atomic.c
index 5d3abe3904f0..00ea88151c01 100644
--- a/drivers/gpu/drm/drm_atomic.c
+++ b/drivers/gpu/drm/drm_atomic.c
@@ -134,6 +134,7 @@ void drm_atomic_state_clear(struct drm_atomic_state *state)
134 134
135 connector->funcs->atomic_destroy_state(connector, 135 connector->funcs->atomic_destroy_state(connector,
136 state->connector_states[i]); 136 state->connector_states[i]);
137 state->connectors[i] = NULL;
137 state->connector_states[i] = NULL; 138 state->connector_states[i] = NULL;
138 } 139 }
139 140
@@ -145,6 +146,7 @@ void drm_atomic_state_clear(struct drm_atomic_state *state)
145 146
146 crtc->funcs->atomic_destroy_state(crtc, 147 crtc->funcs->atomic_destroy_state(crtc,
147 state->crtc_states[i]); 148 state->crtc_states[i]);
149 state->crtcs[i] = NULL;
148 state->crtc_states[i] = NULL; 150 state->crtc_states[i] = NULL;
149 } 151 }
150 152
@@ -156,6 +158,7 @@ void drm_atomic_state_clear(struct drm_atomic_state *state)
156 158
157 plane->funcs->atomic_destroy_state(plane, 159 plane->funcs->atomic_destroy_state(plane,
158 state->plane_states[i]); 160 state->plane_states[i]);
161 state->planes[i] = NULL;
159 state->plane_states[i] = NULL; 162 state->plane_states[i] = NULL;
160 } 163 }
161} 164}