Re: Strange failure in LWLock on skink in REL9_5_STABLE
Thomas Munro <thomas.munro@enterprisedb.com>
From: Thomas Munro <thomas.munro@enterprisedb.com>
To: Tom Lane <tgl@sss.pgh.pa.us>
Cc: Andres Freund <andres@anarazel.de>,
Pg Hackers <pgsql-hackers@postgresql.org>
Date: 2018-09-21T04:36:06Z
Lists: pgsql-hackers
On Fri, Sep 21, 2018 at 4:06 PM Tom Lane <tgl@sss.pgh.pa.us> wrote: > Thomas Munro <thomas.munro@enterprisedb.com> writes: > > ... There may be ways to fix the dsm_resize() path > > based on the observation that you don't need to fallocate() if you > > made the mapping smaller, and if you made it bigger then you could > > always undo that on error (or not) and you haven't thrown away any > > data. Hmm... I note that there are actually no callers of > > dsm_resize(), and it's not implemented on Windows or SystemV. Erm, actually you probably only need to do ftruncate() *or* posix_fallocate(), depending on the direction of the resize. Doing both is redundant and introduces this theoretical hazard (in practice I'd be surprised if fallocate() really can fail after you shrank a file that was already fully allocated). > Why would we fix it rather than just removing it? I assumed we wouldn't remove an extern C function extension code somewhere might use. Though admittedly I'd be surprised if anyone used this one. -- Thomas Munro http://www.enterprisedb.com
Commits
-
Remove some remaining traces of dsm_resize().
- 9e12fb02b7ec 12.0 landed
-
Remove dsm_resize() and dsm_remap().
- 3c60d0fa231f 12.0 landed
-
Allow DSM allocation to be interrupted.
- fb389498be5c 9.5.15 cited