<p>Ok sounds like storestore is sufficient given your explanation - you don't care whether the task is immediately visible to gc threads after it's enqueued, you just want to make sure that once it is visible (might be delayed due to store bufferring) that all fields are consistent.</p>

<p>I'm obviously not on the hotspot dev team (just a curious bystander :)) but perhaps you can change the code comment to indicate that you want ordered writes but not necessarily immediately global visibility. </p>
<p>Thanks for the explanation,</p>
<p>Vitaly</p>
<div class="gmail_quote">On Dec 9, 2011 3:49 PM, "Jon Masamitsu" <<a href="mailto:jon.masamitsu@oracle.com">jon.masamitsu@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">
Vitaly,<br>
<br>
This is what happens.<br>
<br>
1) create the barrier task<br>
2) enqueue the barrier task to a list of tasks<br>
3) make the tasks visible to the GC workers by added them to<br>
queue from which workers take tasks<br>
<br>
At 3) a GC worker can take and execute the barrier task.<br>
I want all the fields in the barrier task to be in main memory<br>
and thus visible to the GC worker task when it starts to<br>
execute the barrier task.  So by the time 3) happens<br>
(tasks are visible in the queue for the GC workers to<br>
take) the stores at 1) to be visible so that when the GC<br>
worker reads the barrier task, it is getting all the right<br>
values.<br>
<br>
I think that's what the storestore does for me.   Do I<br>
need something stronger?  And thank you for thinking<br>
about this for me.<br>
<br>
Jon<br>
<br>
On 12/9/2011 9:48 AM, Vitaly Davidovich wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi Jon,<br>
<br>
Are you sure your comment for the OrderAccess::storestore() matches this<br>
barrier? Your comment mentions that you want global visibility but does<br>
this need immediate visibility or you just want order for when it does<br>
become visible? StoreStore is just the latter, but maybe that's what you<br>
meant.<br>
<br>
Regards,<br>
<br>
Vitaly<br>
On Dec 9, 2011 12:15 PM, "Jon Masamitsu"<<a href="mailto:jon.masamitsu@oracle.com" target="_blank">jon.masamitsu@<u></u>oracle.com</a>>  wrote:<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
7119584: UseParallelGC barrier task can be overwritten.<br>
<br>
Just a few changed lines.  The comments around the changes<br>
give an explanation in context so are a better explanation than<br>
I can summarize here.<br>
<br>
<a href="http://cr.openjdk.java.net/~**jmasa/7119584/webrev.00/" target="_blank">http://cr.openjdk.java.net/~**<u></u>jmasa/7119584/webrev.00/</a><<a href="http://cr.openjdk.java.net/~jmasa/7119584/webrev.00/" target="_blank">http:<u></u>//cr.openjdk.java.net/~jmasa/<u></u>7119584/webrev.00/</a>><br>

<br>
Thanks.<br>
<br>
</blockquote></blockquote>
</blockquote></div>