drm: delete unconsumed pending event list in drm_events_release 20/32820/2
authorYoungJun Cho <yj44.cho@samsung.com>
Tue, 29 Oct 2013 11:30:26 +0000 (20:30 +0900)
committerChanho Park <chanho61.park@samsung.com>
Mon, 5 Jan 2015 04:49:43 +0000 (20:49 -0800)
commit942d62204e43fa8280f702e4bed9f65aa3cde745
treea6a304e704142795a99a05957484c69e9bdb59be
parent490141d1f70f8a7f6cec16b510541e70020eaf96
drm: delete unconsumed pending event list in drm_events_release

When there are unconsumed pending events, the events are
destroyed by calling destroy callback, but the events list
are remained, because there is no list_del().

It is possible that the page flip request is handled after
drm_events_release() is called and before drm_fb_release().
In this case a drm_pending_event is remained not freed.
So exynos driver checks again to remove it in its post
close routine. But the file_priv->event_list contains
undeleted ones, this can make oops for accessing invalid
memory.

Signed-off-by: YoungJun Cho <yj44.cho@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Change-Id: I25a471f4f4929150542eb6273c7673b9f44936b6
[back-ported from mainline to fix use after free issue]
Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
drivers/gpu/drm/drm_fops.c