From ccff97f7baf82fefd41dd6dde4e6aea7ddc9d60c Mon Sep 17 00:00:00 2001 From: Gert Wollny Date: Tue, 9 Apr 2024 13:45:09 +0200 Subject: [PATCH] tsan-blacklist: Ignore race in get_max_abs_timeout_ns The returned value is independent of the race, so surpress it. Signed-off-by: Gert Wollny Part-of: --- tsan-blacklist.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tsan-blacklist.txt b/tsan-blacklist.txt index 5047cd37497..03010a2cd29 100644 --- a/tsan-blacklist.txt +++ b/tsan-blacklist.txt @@ -10,3 +10,7 @@ fun:util_queue_fence_signal # lock fun:lp_fence_signalled fun:lp_fence_signal + + +# Even with the data race the returned value is always the same +fun:get_max_abs_timeout_ns