Closed
Bug 1132519
Opened 10 years ago
Closed 5 years ago
TSan: multiple data races from libglib/libdbus/etc.
Categories
(Core :: General, defect)
Tracking
()
RESOLVED
FIXED
People
(Reporter: froydnj, Assigned: decoder)
References
(Blocks 1 open bug)
Details
(Whiteboard: [tsan])
Attachments
(1 file, 1 obsolete file)
26.38 KB,
text/plain
|
Details |
[cribbing from decoder's script, hopefully he won't mind]
The attached logfile shows a thread/data race detected by TSan (ThreadSanitizer).
Typically, races reported by TSan are not false positives, but it is possible that the race is benign. Even in this case though, we should try to come up with a fix unless this would cause unacceptable performance issues. Also note that seemingly benign races can possibly be harmful (also depending on the compiler and the architecture) [1].
If the bug cannot be fixed, then this bug should be used to either make a compile-time annotation for blacklisting or add an entry to the runtime blacklist.
The stacks in the report obviously aren't helpful. This is running on a Debian 7.0 system, so it's possibly that the races have been fixed in more recent versions of the libraries, but I'm not holding my breath. Blacklisting these is probably the most reasonable thing to do.
[1] http://software.intel.com/en-us/blogs/2013/01/06/benign-data-races-what-could-possibly-go-wrong
Assignee | ||
Comment 1•5 years ago
|
||
ThreadSanitizer now offers runtime suppressions for calls originating from certain libraries (e.g. if they are uninstrumented). It is reasonable to add the libraries mentioned here to our suppression list. This is also strictly required if you want to run a TSan build locally and actually get useful output. I will make a patch.
Assignee | ||
Comment 2•5 years ago
|
||
Assignee | ||
Comment 3•5 years ago
|
||
I'm skipping the patch here in favor of the patch in bug 1587463. That patch adds the libraries, but also switches things to use the builtin suppression list, which is a lot more robust for CI and automation in general. We should close this bug as FIXED once bug 1587463 landed.
Updated•5 years ago
|
Attachment #9099540 -
Attachment is obsolete: true
Assignee | ||
Comment 4•5 years ago
|
||
This should be fixed now from the combination of having the builtin suppression list and the use of the new called_from_lib
feature in TSan.
Status: ASSIGNED → RESOLVED
Closed: 5 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•