]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
ppc/hugetlbfs: Replace ACCESS_ONCE with READ_ONCE
authorChristian Borntraeger <borntraeger@de.ibm.com>
Tue, 6 Jan 2015 21:47:41 +0000 (22:47 +0100)
committerChristian Borntraeger <borntraeger@de.ibm.com>
Mon, 19 Jan 2015 13:14:19 +0000 (14:14 +0100)
commitda1a288d8562739aa8ba0273d4fb6b73b856c0d3
tree80d57ed776241fbcc48339d1ef1012cd39a5cf69
parent5ee07612e9e20817bb99256ab6cf1400fd5aa270
ppc/hugetlbfs: Replace ACCESS_ONCE with READ_ONCE

ACCESS_ONCE does not work reliably on non-scalar types. For
example gcc 4.6 and 4.7 might remove the volatile tag for such
accesses during the SRA (scalar replacement of aggregates) step
(https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58145)

Change the ppc/hugetlbfs code to replace ACCESS_ONCE with READ_ONCE.

Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
arch/powerpc/mm/hugetlbpage.c