From 9198d4e022e45fdaaa49ea7ae5974da7d06a721b Mon Sep 17 00:00:00 2001 From: Stewart Smith Date: Tue, 15 Aug 2017 14:38:46 +1000 Subject: NPU2: fix missing unlock Found by coccinelle using a slightly modified http://coccinelle.lip6.fr/rules/mut.html spatch Signed-off-by: Stewart Smith Reviewed-by: Andrew Donnellan Signed-off-by: Stewart Smith --- hw/npu2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/npu2.c b/hw/npu2.c index 74e3325..0eb787c 100644 --- a/hw/npu2.c +++ b/hw/npu2.c @@ -1865,8 +1865,8 @@ static int opal_npu_destroy_context(uint64_t phb_id, uint64_t pid, uint64_t bdf) /* And zero the entry */ npu2_write(p, NPU2_XTS_PID_MAP + id*0x20, 0); - unlock(&p->lock); out: + unlock(&p->lock); return rc; } opal_call(OPAL_NPU_DESTROY_CONTEXT, opal_npu_destroy_context, 3); -- cgit v1.1