Re: Something fishy happening on frogmouth - Mailing list pgsql-hackers

From Tom Lane
Subject Re: Something fishy happening on frogmouth
Date
Msg-id 8400.1383182791@sss.pgh.pa.us
Whole thread Raw
In response to Re: Something fishy happening on frogmouth  (Robert Haas <robertmhaas@gmail.com>)
Responses Re: Something fishy happening on frogmouth  (Robert Haas <robertmhaas@gmail.com>)
List pgsql-hackers
Robert Haas <robertmhaas@gmail.com> writes:
> On Wed, Oct 30, 2013 at 9:49 AM, Tom Lane <tgl@sss.pgh.pa.us> wrote:
>> If it *isn't* about the main memory segment, what the hell are we doing
>> creating random addon segments during bootstrap?  None of the DSM code
>> should even get control at this point, IMO.

> Here's a short summary of what I posted back in August: at system
> startup time, the postmaster creates one dynamic shared segment,
> called the control segment.

Well, as I've pointed out already in this thread, the postmaster does not
execute during bootstrap, which makes me think this code is getting called
from the wrong place.  What possible reason is there to create add-on shm
segments in bootstrap mode?  I'm even dubious that we should create them
in standalone backends, because there will be no other process to share
them with.

I'm inclined to think this initialization should be moved to the actual
postmaster (and I mean postmaster.c) from wherever it is now.  That might
fix the not-so-random name choice in itself, but if it doesn't, then we
could consider where to move the random-seed-initialization step to.
        regards, tom lane



pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: How can I build OSSP UUID support on Windows to avoid duplicate UUIDs?
Next
From: Robert Haas
Date:
Subject: Re: Something fishy happening on frogmouth