diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-11-27 20:24:15 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-12-03 14:42:05 -0500 |
commit | ce47f3a79e36fba34b7596e6d2497cb00b32f135 (patch) | |
tree | 5f2e527b36b1467488320b4a759a1ca3965f2179 /src/ioq.c | |
parent | cf197cada461d1d442458cbebdd2bb8ba314692e (diff) | |
download | bfs-ce47f3a79e36fba34b7596e6d2497cb00b32f135.tar.xz |
ioq: Add a hash function between slots and monitors
This helps avoid situations where multiple waiters block on different
slots using the same monitor, which happened more often than expected
due to correlations caused by batching.
Diffstat (limited to 'src/ioq.c')
-rw-r--r-- | src/ioq.c | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -260,7 +260,17 @@ static struct ioqq *ioqq_create(size_t size) { /** Get the monitor associated with a slot. */ static struct ioq_monitor *ioq_slot_monitor(struct ioqq *ioqq, ioq_slot *slot) { - size_t i = slot - ioqq->slots; + uint32_t i = slot - ioqq->slots; + + // Hash the index to de-correlate waiters + // https://nullprogram.com/blog/2018/07/31/ + // https://github.com/skeeto/hash-prospector/issues/19#issuecomment-1120105785 + i ^= i >> 16; + i *= UINT32_C(0x21f0aaad); + i ^= i >> 15; + i *= UINT32_C(0x735a2d97); + i ^= i >> 15; + return &ioqq->monitors[i & ioqq->monitor_mask]; } |