From: Julian Brown Date: Fri, 24 Sep 2021 11:18:40 +0000 (-0700) Subject: libgomp: Release device lock on cbuf error path X-Git-Tag: basepoints/gcc-13~3961 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ccfcf08e66c741a1b24a7851a530cf47aa5e704f;p=thirdparty%2Fgcc.git libgomp: Release device lock on cbuf error path This patch releases the device lock on a sanity-checking error path in transfer combining (cbuf) handling in libgomp:target.c. This shouldn't happen when handling well-formed mapping clauses, but erroneous clauses can currently cause a hang if the condition triggers. 2021-12-10 Julian Brown libgomp/ * target.c (gomp_copy_host2dev): Release device lock on cbuf error path. --- diff --git a/libgomp/target.c b/libgomp/target.c index 67fcf41cc2e6..196dba4f08cc 100644 --- a/libgomp/target.c +++ b/libgomp/target.c @@ -385,7 +385,10 @@ gomp_copy_host2dev (struct gomp_device_descr *devicep, else if (cbuf->chunks[middle].start <= doff) { if (doff + sz > cbuf->chunks[middle].end) - gomp_fatal ("internal libgomp cbuf error"); + { + gomp_mutex_unlock (&devicep->lock); + gomp_fatal ("internal libgomp cbuf error"); + } memcpy ((char *) cbuf->buf + (doff - cbuf->chunks[0].start), h, sz); return;