summaryrefslogtreecommitdiff
path: root/tsan-blacklist.txt
diff options
context:
space:
mode:
authorGert Wollny <gert.wollny@collabora.com>2024-04-09 14:03:44 +0200
committerMarge Bot <emma+marge@anholt.net>2024-04-11 13:52:36 +0000
commit6cc119522e010c5666b5a3822f69f9ff32853ea3 (patch)
tree6057e260b2af17efae377f35c2f59fd2e7f7cf6a /tsan-blacklist.txt
parentccff97f7baf82fefd41dd6dde4e6aea7ddc9d60c (diff)
tsan-blacklist: surpress two race conditions in TC
They are both of no consequence v2: fix comment Signed-off-by: Gert Wollny <gert.wollny@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/28650>
Diffstat (limited to 'tsan-blacklist.txt')
-rw-r--r--tsan-blacklist.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/tsan-blacklist.txt b/tsan-blacklist.txt
index 03010a2cd29..cd40fd559c3 100644
--- a/tsan-blacklist.txt
+++ b/tsan-blacklist.txt
@@ -11,6 +11,16 @@ fun:util_queue_fence_signal
fun:lp_fence_signalled
fun:lp_fence_signal
+# gallium/tc
+# Keeping track of tc->last_completed is an optimization and it is of no
+# consequence to read a stale value there, so surpress the warning about the
+# race condition
+fun:tc_batch_execute
+# This is a debug feature and ATM it is simpler to surpress the race warning
+fun:tc_set_driver_thread
+
+# vulkan/runtime
# Even with the data race the returned value is always the same
fun:get_max_abs_timeout_ns
+