Re: memory-related bugs
Noah Misch <noah@leadboat.com>
From: Noah Misch <noah@leadboat.com>
To: Greg Stark <gsstark@mit.edu>
Cc: pgsql-hackers@postgresql.org
Date: 2011-03-13T09:09:49Z
Lists: pgsql-hackers
On Sat, Mar 12, 2011 at 04:08:23PM +0000, Greg Stark wrote: > On Sat, Mar 12, 2011 at 1:32 PM, Noah Misch <noah@leadboat.com> wrote: > > A suitably-instrumented run of "make installcheck-world" under valgrind turned > > up a handful of memory-related bugs: > > > Nice work. How did you instrument things so valgrind knew about palloc > et al? I remember trying this in the past and running into problems. I peppered aset.c and mcxt.c with various calls to the valgrind hook macros. I believe the set of hooks has grown recently (I use valgrind 3.6.0), so it may be that the right facilities didn't exist at that time. > I > think the biggest one was that we write out structs to disk including > padding so trigger lots of reads of uninitialized data warnings. I used suppressions for call sites that write WAL or pgstat structures. Tuples are, with limited exceptions, fully-initialized, so I did validate those.