Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Merge branch 'etnaviv/next' of https://git.pengutronix.de/git/lst/linux into drm-next

single etnaviv fix for an error path.

Signed-off-by: Dave Airlie <airlied@redhat.com>
From: Lucas Stach <l.stach@pengutronix.de>
Link: https://patchwork.freedesktop.org/patch/msgid/4ae00cfb47c8e6fffca5dbb45ae9370cd4e5eaf4.camel@pengutronix.de

+3 -1
+3 -1
drivers/gpu/drm/etnaviv/etnaviv_iommu.c
··· 140 140 } 141 141 142 142 v1_context = kzalloc(sizeof(*v1_context), GFP_KERNEL); 143 - if (!v1_context) 143 + if (!v1_context) { 144 + mutex_unlock(&global->lock); 144 145 return NULL; 146 + } 145 147 146 148 v1_context->pgtable_cpu = dma_alloc_wc(global->dev, PT_SIZE, 147 149 &v1_context->pgtable_dma,