Skip to content

Commit 6511e78

Browse files
riptlripatel-fd
authored andcommitted
tango: fix bug in FD_MCACHE_WAIT_REG macro
1 parent ddb6bee commit 6511e78

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/tango/mcache/fd_mcache.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -607,7 +607,7 @@ fd_mcache_publish_avx( fd_frag_meta_t * mcache, /* Assumed a current local joi
607607
/* FD_MCACHE_WAIT_REG: similar to FD_MCACHE_WAIT but uses (nominally)
608608
registers to hold the metadata instead of a local buffer. */
609609

610-
#define FD_MCACHE_WAIT_REG( sig, chunk, sz, ctl, tsorig, tspub, mline, seq_found, seq_diff, poll_max, \
610+
#define FD_MCACHE_WAIT_REG( _sig, _chunk, _sz, _ctl, _tsorig, _tspub, mline, seq_found, seq_diff, poll_max, \
611611
mcache, depth, seq_expected ) do { \
612612
ulong _fd_mcache_wait_seq_expected = (seq_expected); \
613613
fd_frag_meta_t const * _fd_mcache_wait_mline = (mcache) \
@@ -641,12 +641,12 @@ fd_mcache_publish_avx( fd_frag_meta_t * mcache, /* Assumed a current local joi
641641
if( FD_LIKELY( _fd_mcache_wait_done ) ) break; /* opt for exit, single exit to help spin_pause cpu hinting */ \
642642
FD_SPIN_PAUSE(); \
643643
} \
644-
(sig) = _fd_mcache_wait_sig; \
645-
(chunk) = _fd_mcache_wait_chunk; \
646-
(sz) = _fd_mcache_wait_sz; \
647-
(ctl) = _fd_mcache_wait_ctl; \
648-
(tsorig) = _fd_mcache_wait_tsorig; \
649-
(tspub) = _fd_mcache_wait_tspub; \
644+
(_sig) = _fd_mcache_wait_sig; \
645+
(_chunk) = _fd_mcache_wait_chunk; \
646+
(_sz) = _fd_mcache_wait_sz; \
647+
(_ctl) = _fd_mcache_wait_ctl; \
648+
(_tsorig) = _fd_mcache_wait_tsorig; \
649+
(_tspub) = _fd_mcache_wait_tspub; \
650650
(mline) = _fd_mcache_wait_mline; \
651651
(seq_found) = _fd_mcache_wait_seq_found; \
652652
(seq_diff) = _fd_mcache_wait_seq_diff; \

0 commit comments

Comments
 (0)