diff options
author | Bruce Momjian <bruce@momjian.us> | 2020-09-04 13:27:52 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2020-09-04 13:27:52 -0400 |
commit | 226fd0c518bb17e0433422a161b948feef5601d1 (patch) | |
tree | cdd3f9af721cd343f0d723bde7d4b1801e44d843 /src | |
parent | 3738651f5b8278a0a5748133667339434bd24139 (diff) |
C comment: correct use of 64-"byte" cache line size
Reported-by: Kelly Min
Discussion: https://postgr.es/m/CAPSbxatOiQO90LYpSC3+svAU9-sHgDfEP4oFhcEUt_X=DqFA9g@mail.gmail.com
Backpatch-through: 9.5
Diffstat (limited to 'src')
-rw-r--r-- | src/include/storage/buf_internals.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/storage/buf_internals.h b/src/include/storage/buf_internals.h index ecbcf392bc5..a8278f61d09 100644 --- a/src/include/storage/buf_internals.h +++ b/src/include/storage/buf_internals.h @@ -166,7 +166,7 @@ typedef struct BufferDesc * Note that local buffer descriptors aren't forced to be aligned - as there's * no concurrent access to those it's unlikely to be beneficial. * - * We use 64bit as the cache line size here, because that's the most common + * We use a 64-byte cache line size here, because that's the most common * size. Making it bigger would be a waste of memory. Even if running on a * platform with either 32 or 128 byte line sizes, it's good to align to * boundaries and avoid false sharing. |