]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
fix: dev: Use CMM_{STORE,LOAD}_SHARED to store/load glue in gluelist
authorOndřej Surý <ondrej@isc.org>
Wed, 25 Dec 2024 15:06:09 +0000 (15:06 +0000)
committerOndřej Surý <ondrej@isc.org>
Wed, 25 Dec 2024 15:06:09 +0000 (15:06 +0000)
ThreadSanitizer has trouble understanding that gluelist->glue is
constant after it is assigned to the slabheader with cmpxchg.  Help
ThreadSanitizer to understand the code by using CMM_STORE_SHARED and
CMM_LOAD_SHARED on gluelist->glue.

Merge branch 'ondrej/hint-tsan-in-addglue' into 'main'

See merge request isc-projects/bind9!9929


Trivial merge