]> granicus.if.org Git - postgresql/commitdiff
Rename CACHE_LINE_SIZE to PG_CACHE_LINE_SIZE.
authorAndres Freund <andres@anarazel.de>
Wed, 1 Oct 2014 09:54:05 +0000 (11:54 +0200)
committerAndres Freund <andres@anarazel.de>
Wed, 1 Oct 2014 10:17:03 +0000 (12:17 +0200)
As noted in http://bugs.debian.org/763098 there is a conflict between
postgres' definition of CACHE_LINE_SIZE and the definition by various
*bsd platforms. It's debatable who has the right to define such a
name, but postgres' use was only introduced in 375d8526f290 (9.4), so
it seems like a good idea to rename it.

Discussion: 20140930195756.GC27407@msg.df7cb.de

Per complaint of Christoph Berg in the above email, although he's not
the original bug reporter.

Backpatch to 9.4 where the define was introduced.

src/backend/access/transam/xlog.c
src/include/pg_config_manual.h

index 46eef5f21bab2bb9cb59ee9f6388c9059bb5499a..981d4e552749a01ba76eb6c13a06859b50d95f82 100644 (file)
@@ -409,7 +409,7 @@ typedef struct
 typedef union WALInsertLockPadded
 {
        WALInsertLock l;
-       char            pad[CACHE_LINE_SIZE];
+       char            pad[PG_CACHE_LINE_SIZE];
 } WALInsertLockPadded;
 
 /*
@@ -436,7 +436,7 @@ typedef struct XLogCtlInsert
         * read on every WAL insertion, but updated rarely, and we don't want
         * those reads to steal the cache line containing Curr/PrevBytePos.
         */
-       char            pad[CACHE_LINE_SIZE];
+       char            pad[PG_CACHE_LINE_SIZE];
 
        /*
         * fullPageWrites is the master copy used by all backends to determine
index 195fb262811ad45404d5cd0586c0a196d7105930..9e25ce0fbb879056c9364b973f23d5d62bfa6d6e 100644 (file)
  * bytes of wasted memory. The default is 128, which should be large enough
  * for all supported platforms.
  */
-#define CACHE_LINE_SIZE                128
+#define PG_CACHE_LINE_SIZE             128
 
 /*
  *------------------------------------------------------------------------