On Tue, Apr 02, 2013 at 03:33:58PM -0700, David Rientjes wrote: > On Tue, 2 Apr 2013, Jan Stancek wrote: > > > find_vma() can be called by multiple threads with read lock > > held on mm->mmap_sem and any of them can update mm->mmap_cache. > > Prevent compiler from re-fetching mm->mmap_cache, because other > > readers could update it in the meantime: > > > > FWIW, ACCESS_ONCE() does not guarantee that the compiler will not refetch > mm->mmap_cache whatsoever; there is nothing that prevents this either in > the C standard. You'll be relying solely on gcc's implementation of how > it dereferences volatile-qualified pointers. FYI, the volatile access can be also unnecessarily pessimizing, other projects like glibc use a friendlier alternative to the kernel's ACCESS_ONCE. In glibc it is: # define atomic_forced_read(x) \ ({ __typeof (x) __x; __asm ("" : "=r" (__x) : "0" (x)); __x; }) (could as well use "=g" instead). This isn't volatile, so it can be scheduled freely but if you store the result of it in a local variable and use only that local variable everywhere in the function (and don't modify it), there is a guarantee that you'll always see the same value. The above should work fine with any GCC versions that can be used to compile kernel. Or of course, starting with GCC 4.7 you have also the alternative to use # define ATOMIC_ONCE(x) __atomic_load_n (&x, __ATOMIC_RELAXED) Jakub -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>