Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DAOS-16238 utils: Add valgrind suppressions for Go runtime #14823

Merged
merged 1 commit into from
Jul 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 37 additions & 8 deletions src/cart/utils/memcheck-cart.supp
Original file line number Diff line number Diff line change
Expand Up @@ -583,13 +583,19 @@
fun:racecall
}
{
go 1.22.3 race
__tsan_go_atomic64_load
Memcheck:Addr8
fun:__tsan_go_atomic64_load
fun:racecall
}
{
go 1.22.3 race
__tsan_go_atomic64_store
Memcheck:Addr8
fun:__tsan_go_atomic64_store
fun:racecall
}
{
__tsan_go_atomic64_compare_exchange
Memcheck:Addr8
fun:__tsan_go_atomic64_compare_exchange
fun:racecall
Expand All @@ -605,11 +611,17 @@
fun:runtime.persistentalloc
}
{
go 1.22.3 race
__tsan_write_pc
Memcheck:Value8
fun:__tsan_write_pc
fun:racecall
}
{
__tsan_read_pc
Memcheck:Value8
fun:__tsan_read_pc
fun:racecall
}
{
go 1.22.3 race
Memcheck:Value8
Expand All @@ -623,31 +635,48 @@
fun:racecall
}
{
go 1.22.3 race
__tsan_read
Memcheck:Value8
fun:__tsan_read
fun:racecall
}
{
go 1.22.3 race
__tsan_write
Memcheck:Value8
fun:__tsan_write
fun:racecall
}
{
racecallatomic
Memcheck:Addr8
fun:racecallatomic
}
{
go 1.22.3 race
racecalladdr
Memcheck:Addr8
fun:racecalladdr
}
{
Syscall6 param
Memcheck:Param
read(buf)
fun:runtime/internal/syscall.Syscall6
}
{
go 1.22.3 race
__tsan_go_atomic32_load
Memcheck:Addr4
fun:__tsan_go_atomic32_load
fun:racecall
}
{
go 1.22.3 race
__tsan_go_atomic32_store
Memcheck:Addr4
fun:__tsan_go_atomic32_store
fun:racecall
}
{
__tsan_go_atomic32_compare_exchange
Memcheck:Addr4
fun:__tsan_go_atomic32_compare_exchange
fun:racecall
}
Loading