drm/vc4: Fix double destroy of the BO cache on teardown.
authorEric Anholt <eric@anholt.net>
Wed, 2 Aug 2017 19:48:04 +0000 (12:48 -0700)
committerpopcornmix <popcornmix@gmail.com>
Tue, 22 Aug 2017 13:01:52 +0000 (14:01 +0100)
commitc1a1f8491edad37a8cb00f9f547e497aeec435da
tree65cebe6cddb8914fca4eaabbad377fc2ae51997f
parentc2def2a218a4dd04a5605e1e50e786177076da63
drm/vc4: Fix double destroy of the BO cache on teardown.

It's also destroyed from the top level vc4_drv.c initialization, which
is where the cache was actually initialized from.

This used to just involve duplicate del_timer() and cancel_work_sync()
being called, but it started causing kmalloc issues once we
double-freed the new BO label array.

Fixes: 1908a876f909 ("drm/vc4: Add an ioctl for labeling GEM BOs for summary stats")
Signed-off-by: Eric Anholt <eric@anholt.net>
drivers/gpu/drm/vc4/vc4_gem.c