Re: [PATCH] drm/etnaviv: add missing failure path to destroy suballoc

2019-06-27 Thread Fabio Estevam
Hi Lucas, On Thu, Jun 27, 2019 at 11:44 AM Lucas Stach wrote: > > When something goes wrong in the GPU init after the cmdbuf suballocator > has been constructed, we fail to destory it properly. This causes havok s/destory/destroy > later when the GPU is unbound due to a module unload or

Re: [PATCH] drm/etnaviv: add missing failure path to destroy suballoc

2019-06-27 Thread Russell King - ARM Linux admin
On Thu, Jun 27, 2019 at 04:44:38PM +0200, Lucas Stach wrote: > When something goes wrong in the GPU init after the cmdbuf suballocator > has been constructed, we fail to destory it properly. This causes havok > later when the GPU is unbound due to a module unload or similar. > > Signed-off-by:

[PATCH] drm/etnaviv: add missing failure path to destroy suballoc

2019-06-27 Thread Lucas Stach
When something goes wrong in the GPU init after the cmdbuf suballocator has been constructed, we fail to destory it properly. This causes havok later when the GPU is unbound due to a module unload or similar. Signed-off-by: Lucas Stach --- drivers/gpu/drm/etnaviv/etnaviv_gpu.c | 7 +-- 1