<p dir="ltr">Hi Mikael,</p>
<p dir="ltr">The duplicate store of dirty would only happen if cache coherence hasn't caught up yet, which is of course timing dependent but the window is fairly small on x86 (which is what this CR targets) IME.  It's also not necessarily the case that the involved cacheline will falsely share with any other thread.  So, this seems like a benign data race.  Also, isn't this already the case with the current code? A mutator may not observe another mutator already marking the card dirty and will smash a "duplicate" in there.</p>
<p dir="ltr">Having said that, you guys are in better position to make the call.  If nothing else, I think this change should be highlighted in whichever release(s) it appears in as people should be on the lookout for possible perf regressions associated with this.</p>
<p dir="ltr">sent from my phone</p>
<div class="gmail_quote">On May 6, 2015 9:52 AM, "Mikael Gerdin" <<a href="mailto:mikael.gerdin@oracle.com">mikael.gerdin@oracle.com</a>> wrote:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Vitaly,<br>
<br>
On 2015-05-06 14:41, Vitaly Davidovich wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Mikael's suggestion was to make mutator check for !clean and then mark<br>
dirty.  If it sees stale dirty, it will write dirty again no?  Today's code<br>
would have this problem because it's checking for !dirty, but I thought the<br>
suggested change would prevent that.<br>
</blockquote>
<br>
Unfortunately I don't think my suggestion would solve anything.<br>
<br>
If the conditional card mark would write dirty again if it sees a stale dirty it's not really solving the false sharing problem.<br>
<br>
The problem is not the value that the precleaner writes to the card entry, it's that the mutator may see the old "dirty" value which was overwritten as part of precleaning but not necessarily visible to the mutator thread.<br>
<br>
/Mikael<br>
<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
sent from my phone<br>
On May 6, 2015 4:53 AM, "Andrew Haley" <<a href="mailto:aph@redhat.com" target="_blank">aph@redhat.com</a>> wrote:<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
On 05/05/15 20:51, Vitaly Davidovich wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
If mutator doesn't see "clean" due to staleness, won't it just mark it<br>
dirty "unnecessarily" using Mikael's suggestion?<br>
</blockquote>
<br>
No.  The mutator may see a stale "dirty" and not write anything.  At least<br>
I haven't seen anything which certainly will prevent that from happening.<br>
<br>
Andrew.<br>
<br>
<br>
<br>
</blockquote></blockquote>
</blockquote></div>