[ 
https://issues.apache.org/jira/browse/HDFS-4029?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Eli Collins updated HDFS-4029:
------------------------------

          Resolution: Fixed
       Fix Version/s: 2.0.3-alpha
    Target Version/s:   (was: 2.0.3-alpha)
        Hadoop Flags: Reviewed
              Status: Resolved  (was: Patch Available)

I've committed this. Thanks for the review Todd.
                
> GenerationStamp should use an AtomicLong 
> -----------------------------------------
>
>                 Key: HDFS-4029
>                 URL: https://issues.apache.org/jira/browse/HDFS-4029
>             Project: Hadoop HDFS
>          Issue Type: Sub-task
>          Components: name-node
>    Affects Versions: 2.0.0-alpha
>            Reporter: Eli Collins
>            Assignee: Eli Collins
>             Fix For: 2.0.3-alpha
>
>         Attachments: hdfs-4029.txt
>
>
> GenerationStamp#genstamp is a volatile long. Incrementing volatiles is not 
> thread safe, which is currently not an issue because the only increment is 
> done in nextStamp which is synchronized (theoretically setStamp could race 
> with nextStamp though that wouldn't happen given the current code). It would 
> be cleaner to use an AtomicLong so that genstamp itself is atomic and we 
> don't have to synchronize the various accesses to it.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to