Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(141)

Issue 1412123007: Suppress duplicate write race for the same value. (Closed)

Created:
5 years, 2 months ago by DaleCurtis
Modified:
5 years, 2 months ago
Reviewers:
dvyukov
CC:
chromium-reviews, eugenis
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Suppress duplicate write race for the same value. All calls into the fft end up rerunning the same piece of cosine table initialization; i.e. they all write the same values to the same place before any fft functions can be used. Modifying upstream and then adding a lazy instance / global lock to downstream seems overkill to resolve this, so just suppress the benign race. BUG=508425 TEST=none

Patch Set 1 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+3 lines, -0 lines) Patch
M build/sanitizers/tsan_suppressions.cc View 1 chunk +3 lines, -0 lines 0 comments Download

Messages

Total messages: 9 (3 generated)
DaleCurtis
WDYT eugenis? I know we normally frown on suppressions, but the overhead of working around ...
5 years, 2 months ago (2015-10-22 18:29:44 UTC) #2
Evgeniy Stepanov
On 2015/10/22 18:29:44, DaleCurtis wrote: > WDYT eugenis? I know we normally frown on suppressions, ...
5 years, 2 months ago (2015-10-22 18:42:47 UTC) #5
DaleCurtis
That idea is only half baked, it doesn't address how partial initialization would be handled, ...
5 years, 2 months ago (2015-10-22 18:46:09 UTC) #6
Dmitry Vyukov
On 2015/10/22 18:46:09, DaleCurtis wrote: > That idea is only half baked, it doesn't address ...
5 years, 2 months ago (2015-10-23 04:07:19 UTC) #7
DaleCurtis
Thanks Dmitry, that's a great explanation and sorry I missed the w32 pthread once. It's ...
5 years, 2 months ago (2015-10-23 04:38:39 UTC) #8
DaleCurtis
5 years, 2 months ago (2015-10-24 00:51:26 UTC) #9

Powered by Google App Engine
This is Rietveld 408576698