From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752633AbbCXOcu (ORCPT ); Tue, 24 Mar 2015 10:32:50 -0400 Received: from cantor2.suse.de ([195.135.220.15]:56549 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751917AbbCXOct (ORCPT ); Tue, 24 Mar 2015 10:32:49 -0400 Message-ID: <1427207543.2412.14.camel@stgolabs.net> Subject: Re: [PATCH] mm: Remove usages of ACCESS_ONCE From: Davidlohr Bueso To: Jason Low Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org, cgroups@vger.kernel.org, Johannes Weiner , Michal Hocko , Christoph Lameter , Linus Torvalds , David Rientjes , Joonsoo Kim , Andrew Morton , "Kirill A. Shutemov" , Aswin Chandramouleeswaran , Christian Borntraeger , Mel Gorman , Hugh Dickins , Minchan Kim , Rik van Riel Date: Tue, 24 Mar 2015 07:32:23 -0700 In-Reply-To: <1427150680.2515.36.camel@j-VirtualBox> References: <1427150680.2515.36.camel@j-VirtualBox> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.12.9 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, 2015-03-23 at 15:44 -0700, Jason Low wrote: > Commit 38c5ce936a08 converted ACCESS_ONCE usage in gup_pmd_range() to > READ_ONCE, since ACCESS_ONCE doesn't work reliably on non-scalar types. > > This patch removes the rest of the usages of ACCESS_ONCE, and use > READ_ONCE for the read accesses. This also makes things cleaner, > instead of using separate/multiple sets of APIs. > > Signed-off-by: Jason Low Acked-by: Davidlohr Bueso