From 7c36c4f0a4184d2e3f60b009b979efcf34268088 Mon Sep 17 00:00:00 2001 From: Gert Wollny Date: Tue, 9 Apr 2024 13:19:19 +0200 Subject: [PATCH] tsan-blacklist: ignore race when reading lp_fence signalled status Signed-off-by: Gert Wollny Part-of: --- tsan-blacklist.txt | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/tsan-blacklist.txt b/tsan-blacklist.txt index 48f2c5552df..5047cd37497 100644 --- a/tsan-blacklist.txt +++ b/tsan-blacklist.txt @@ -1 +1,12 @@ -# Placeholder file, will be filled with surpressions for TSAN +# For performance reasons we don't use a lock here and reading +# a stale value is of no consequence +fun:util_queue_fence_is_signalled +# We also have to blacklist this function, because otherwise tsan will +# still report the unlocked read above +fun:util_queue_fence_signal + +# lavapipe: +# Same as above for perf reasons the fence signal value is is read without +# lock +fun:lp_fence_signalled +fun:lp_fence_signal