mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
Suppress FreeBSD-specific TSAN false-positive data race
TSAN reports a data race in FreeBSD's memset(), called by its
__crt_calloc() memory allocation function. There is a very similar
bug report [1] in FreeBSD bug tracker, and an existing code-review [2]
that tries to address an issue, the description of which is very
similar to what we are seeing.
Suppress this report by adding its signature to '.tsan-suppress'.
[1] https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=282794
[2] https://reviews.freebsd.org/D28536?id=86694
(cherry picked from commit 40a91f51d7)
This commit is contained in:
parent
2796beb797
commit
7495e64f87
1 changed files with 3 additions and 0 deletions
|
|
@ -1,2 +1,5 @@
|
|||
# Uninstrumented library.
|
||||
called_from_lib:libfstrm.so
|
||||
|
||||
# FreeBSD false-positive, see GL#5267
|
||||
race:libexec/rtld-elf/rtld_malloc.c
|
||||
|
|
|
|||
Loading…
Reference in a new issue