pgsql: Use LWSYNC in place of SYNC/ISYNC in PPC spinlocks, where possib

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Use LWSYNC in place of SYNC/ISYNC in PPC spinlocks, where possib
Date: 2012-01-02 05:02:14
Message-ID: E1Rha2I-0007L8-7I@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Use LWSYNC in place of SYNC/ISYNC in PPC spinlocks, where possible.

This is allegedly a win, at least on some PPC implementations, according
to the PPC ISA documents. However, as with LWARX hints, some PPC
platforms give an illegal-instruction failure. Use the same trick as
before of assuming that PPC64 platforms will accept it; we might need to
refine that based on experience, but there are other projects doing
likewise according to google.

I did not add an assembler compatibility test because LWSYNC has been
around much longer than hint bits, and it seems unlikely that any
toolchains currently in use don't recognize it.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/631beeac3598a73dee2c2afa38fa2e734148031b

Modified Files
--------------
src/include/pg_config_manual.h | 11 +++++++++++
src/include/storage/s_lock.h | 19 ++++++++++++++++++-
2 files changed, 29 insertions(+), 1 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Bruce Momjian 2012-01-02 13:49:14 pgsql: Add comment about skipping binary files for copyright changes.
Previous Message Bruce Momjian 2012-01-02 03:27:46 pgsql: Update copyright git skip comment.