Module Name:    src
Committed By:   martin
Date:           Wed Jul  5 16:15:37 UTC 2023

Modified Files:
        src/lib/libc/dlfcn [netbsd-8]: dlfcn_elf.c

Log Message:
Pull up following revision(s) (requested by riastradh in ticket #1849):

        lib/libc/dlfcn/dlfcn_elf.c: revision 1.17

libc: Fix missing membar_consumer in dl_iterate_phdr.

Pairs with the existing membar_producer.


To generate a diff of this commit:
cvs rdiff -u -r1.13.24.1 -r1.13.24.2 src/lib/libc/dlfcn/dlfcn_elf.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/libc/dlfcn/dlfcn_elf.c
diff -u src/lib/libc/dlfcn/dlfcn_elf.c:1.13.24.1 src/lib/libc/dlfcn/dlfcn_elf.c:1.13.24.2
--- src/lib/libc/dlfcn/dlfcn_elf.c:1.13.24.1	Tue Aug 29 09:43:18 2017
+++ src/lib/libc/dlfcn/dlfcn_elf.c	Wed Jul  5 16:15:37 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: dlfcn_elf.c,v 1.13.24.1 2017/08/29 09:43:18 bouyer Exp $	*/
+/*	$NetBSD: dlfcn_elf.c,v 1.13.24.2 2023/07/05 16:15:37 martin Exp $	*/
 
 /*
  * Copyright (c) 2000 Takuya SHIOZAKI
@@ -27,7 +27,7 @@
 
 #include <sys/cdefs.h>
 #if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: dlfcn_elf.c,v 1.13.24.1 2017/08/29 09:43:18 bouyer Exp $");
+__RCSID("$NetBSD: dlfcn_elf.c,v 1.13.24.2 2023/07/05 16:15:37 martin Exp $");
 #endif /* LIBC_SCCS and not lint */
 
 #include "namespace.h"
@@ -195,6 +195,7 @@ dl_iterate_phdr(int (*callback)(struct d
 		membar_producer();
 		setup_done = true;
 	}
+	membar_consumer();
 
 	memset(&phdr_info, 0, sizeof(phdr_info));
 	phdr_info.dlpi_addr = dlpi_addr;

Reply via email to