Re: Remove last traces of HPPA support
Thomas Munro <thomas.munro@gmail.com>
From: Thomas Munro <thomas.munro@gmail.com>
To: Andres Freund <andres@anarazel.de>
Cc: Tom Lane <tgl@sss.pgh.pa.us>, Noah Misch <noah@leadboat.com>, pgsql-hackers@lists.postgresql.org
Date: 2024-07-31T22:09:07Z
Lists: pgsql-hackers
Attachments
- v2-0001-Use-atomics-API-to-implement-spinlocks.patch (text/x-patch) patch v2-0001
- v2-0002-Add-some-assertions-to-spinlocks.patch (text/x-patch) patch v2-0002
On Thu, Aug 1, 2024 at 7:07 AM Andres Freund <andres@anarazel.de> wrote: > Note that I would like to add a user for S_LOCK_FREE(), to detect repeated > SpinLockRelease(): > https://postgr.es/m/20240729182952.hua325647e2ggbsy%40awork3.anarazel.de What about adding a "magic" member in assertion builds? Here is my attempt at that, in 0002. I also realised that we might as well skip the trivial S_XXX macros and delete s_lock.h. In this version of 0001 we retain just spin.h, but s_lock.c still exists to hold the slow path.
Commits
-
Require memory barrier support.
- 83aadbeb96f0 18.0 landed
-
Require compiler barrier support.
- a011dc399cc8 18.0 landed
-
Remove --disable-atomics, require 32 bit atomics.
- 813852613629 18.0 landed
-
Remove --disable-spinlocks.
- e25626677f80 18.0 landed
-
Remove support for HPPA (a/k/a PA-RISC) architecture.
- edadeb0710e8 18.0 landed
-
Add a basic atomic ops API abstracting away platform/architecture details.
- b64d92f1a560 9.5.0 cited