]> git.ipfire.org Git - people/ms/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)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 6 Mar 2015 22:57:43 +0000 (14:57 -0800)
commit2a806d27573f9a2df193e5a374fe8e452be9c6c7
treeedc6bbe0cadd6aecf0e97daa947c0cd42e15d6a1
parentdd4c10858bb00704df476ef17a0b3037b909e4f5
ppc/hugetlbfs: Replace ACCESS_ONCE with READ_ONCE

commit da1a288d8562739aa8ba0273d4fb6b73b856c0d3 upstream.

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>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
arch/powerpc/mm/hugetlbpage.c