Date: Sat, 16 May 2009 20:05:24 +0300 From: Mikolaj Golub <to.my.trociny@gmail.com> To: Marius =?iso-8859-1?Q?N=FCnnerich?= <marius@nuenneri.ch> Cc: freebsd-hackers@freebsd.org, Mikolaj Golub <to.my.trociny@gmail.com> Subject: Re: Memory leak on thread removal Message-ID: <86k54hvuzv.fsf@kopusha.onet> In-Reply-To: <b649e5e0905150448m52d0a802h50c298e529031825@mail.gmail.com> ("Marius =?iso-8859-1?Q?N=FCnnerich=22's?= message of "Fri\, 15 May 2009 13\:48\:51 %2B0200") References: <814ovqn8dp.fsf@zhuzha.ua1> <b649e5e0905150448m52d0a802h50c298e529031825@mail.gmail.com>
next in thread | previous in thread | raw e-mail | index | archive | help
On Fri, 15 May 2009 13:48:51 +0200 Marius N=FCnnerich wrote: MN> On Tue, May 12, 2009 at 08:27, Mikolaj Golub <to.my.trociny@gmail.com>= wrote: >> Hi, >> >> The code below is compiled with -fopenmp and run on FreeBSD6/7 (i386, a= md64): >> >> #include <omp.h> >> #include <unistd.h> >> >> int n =3D 4, m =3D 2; >> >> int main () { >> =A0 =A0 =A0 =A0for (;;) { >> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0int i; >> >> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0//sleep(2); >> #pragma omp parallel for num_threads(m) >> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0for(i =3D 0; i < 1; i++) {} >> >> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0//sleep(2); >> #pragma omp parallel for num_threads(n) >> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0for(i =3D 0; i < 1; i++) {} >> >> =A0 =A0 =A0 =A0} >> >> =A0 =A0 =A0 =A0return 0; >> } >> >> During the run the program's virtual memory usage constantly grows. The= growth >> is observed only when n !=3D m. When running the program with uncomment= ed >> sleep() and observing the number of threads with 'top -H' I see in turn= 2 or 4 >> threads. So it looks like memory leak when thread is removed. Should I = fill >> PR? It looks like I have found the leak. The problem is in libgomp/team.c. gomp_thread_start() does sem_init() but sem_destroy() is never called. This patch solves the problem for me: --- contrib/gcclibs/libgomp/team.c.orig 2009-05-16 17:32:57.000000000 +0300 +++ contrib/gcclibs/libgomp/team.c 2009-05-16 19:16:37.000000000 +0300 @@ -164,9 +164,12 @@ new_team (unsigned nthreads, struct gomp static void free_team (struct gomp_team *team) { + int i; free (team->work_shares); gomp_mutex_destroy (&team->work_share_lock); gomp_barrier_destroy (&team->barrier); + for(i =3D 1; i < team->nthreads; i++) + gomp_sem_destroy (team->ordered_release[i]); gomp_sem_destroy (&team->master_release); free (team); } I am going to fill PR to gcc mainstream, but should I also register this in FreeBSD bugtrack as gcc is part of the base? BTW, the problem is not observed under Linux. I have not looked in Linux co= de but it looks like sem_init() implementation for Linux does not do memory allocation. The memory for the test program below grows under FreeBSD and d= oes not under Linux. #include <semaphore.h> int main(int argc, char *argv[]) { sem_t sem; for(;;) { sem_init(&sem, 0, 0);} return 0; } MN> I can confirm this. I briefly looked through the libgomp code but MN> didn't see the leak. Anybody knows good tools how to investigate this? http://freshmeat.net/projects/lmdbg This is a small memory leak debugger. It does not provide all functionality you can find in more sophisticated tools but is lightweight, portable and simple in use. It was very useful when I traced this bug. --=20 Mikolaj Golub
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?86k54hvuzv.fsf>