Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755468AbcCUNm0 (ORCPT ); Mon, 21 Mar 2016 09:42:26 -0400 Received: from mx2.suse.de ([195.135.220.15]:53476 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754861AbcCUNmW (ORCPT ); Mon, 21 Mar 2016 09:42:22 -0400 Date: Mon, 21 Mar 2016 14:41:51 +0100 From: David Sterba To: "Kirill A. Shutemov" Cc: Andrew Morton , Linus Torvalds , Alexander Viro , Chris Mason , Josef Bacik , linux-mm@kvack.org, Christoph Lameter , Matthew Wilcox , linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 22/71] btrfs: get rid of PAGE_CACHE_* and page_cache_{get,release} macros Message-ID: <20160321134151.GI21722@suse.cz> Reply-To: dsterba@suse.cz Mail-Followup-To: dsterba@suse.cz, "Kirill A. Shutemov" , Andrew Morton , Linus Torvalds , Alexander Viro , Chris Mason , Josef Bacik , linux-mm@kvack.org, Christoph Lameter , Matthew Wilcox , linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org References: <1458499278-1516-1-git-send-email-kirill.shutemov@linux.intel.com> <1458499278-1516-23-git-send-email-kirill.shutemov@linux.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1458499278-1516-23-git-send-email-kirill.shutemov@linux.intel.com> User-Agent: Mutt/1.5.23.1 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1221 Lines: 33 On Sun, Mar 20, 2016 at 09:40:29PM +0300, Kirill A. Shutemov wrote: > PAGE_CACHE_{SIZE,SHIFT,MASK,ALIGN} macros were introduced *long* time ago > with promise that one day it will be possible to implement page cache with > bigger chunks than PAGE_SIZE. > > This promise never materialized. And unlikely will. > > We have many places where PAGE_CACHE_SIZE assumed to be equal to > PAGE_SIZE. And it's constant source of confusion on whether PAGE_CACHE_* > or PAGE_* constant should be used in a particular case, especially on the > border between fs and mm. > > Global switching to PAGE_CACHE_SIZE != PAGE_SIZE would cause to much > breakage to be doable. > > Let's stop pretending that pages in page cache are special. They are not. > > The changes are pretty straight-forward: > > - << (PAGE_CACHE_SHIFT - PAGE_SHIFT) -> ; > > - PAGE_CACHE_{SIZE,SHIFT,MASK,ALIGN} -> PAGE_{SIZE,SHIFT,MASK,ALIGN}; > > - page_cache_get() -> get_page(); > > - page_cache_release() -> put_page(); > > Signed-off-by: Kirill A. Shutemov > Cc: Chris Mason > Cc: Josef Bacik > Cc: David Sterba Acked-by: David Sterba