Re: BUG #14897: Segfault on statitics SQL request
Tom Lane <tgl@sss.pgh.pa.us>
From: Tom Lane <tgl@sss.pgh.pa.us>
To: Andres Freund <andres@anarazel.de>
Cc: Dmitry Dolgov <9erthalion6@gmail.com>,
Michael Paquier <michael.paquier@gmail.com>,
Vincent Lachenal <vincent.lachenal@gmail.com>,
PostgreSQL mailing lists <pgsql-bugs@postgresql.org>
Date: 2017-11-11T19:31:47Z
Lists: pgsql-bugs
Andres Freund <andres@anarazel.de> writes: > On 2017-11-11 12:54:29 -0500, Tom Lane wrote: >> I think that would be better served by a flag like >> MCXT_ALLOC_ALIGN_CACHELINE than by having the callers demand a >> specific numeric alignment value --- it'd be a lot easier to make the >> alignment match actual hardware requirements if it were being inserted >> at one specific place. > Specifying MCXT_ALLOC_ALIGN_CACHELINE rather than CACHELINE_ALIGNMENT > doesn't seem to make it meaningfully harder to adjust. Or are you > thinking of probing the hardware? Yeah, the latter. The two approaches seem pretty much equivalent if you're assuming compile-time decisions, but if we ever wanted a run- time decision, I think having a flag bit that's interpreted inside MemoryContextAllocExtended would be easier to deal with. regards, tom lane
Commits
-
Prevent int128 from requiring more than MAXALIGN alignment.
- d4e38489f98a 9.5.11 landed
- 619a8c47da72 10.2 landed
- 4a15f87d2277 9.6.7 landed
- 7518049980be 11.0 landed
-
Rearrange c.h to create a "compiler characteristics" section.
- cfc157078f2e 9.5.11 landed
- a8910506757c 10.2 landed
- 6c35b3aa465e 9.6.7 landed
- 91aec93e6089 11.0 landed