mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-08 14:23:19 +00:00
mm: hugetlbfs: change remove_from_page_cache
This patch series changes remove_from_page_cache()'s page ref counting rule. Page cache ref count is decreased in delete_from_page_cache(). So we don't need to decrease the page reference in callers. Signed-off-by: Minchan Kim <minchan.kim@gmail.com> Cc: William Irwin <wli@holomorphy.com> Acked-by: Hugh Dickins <hughd@google.com> Acked-by: Mel Gorman <mel@csn.ul.ie> Reviewed-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com> Reviewed-by: Johannes Weiner <hannes@cmpxchg.org> Reviewed-by: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
97cecb5a25
commit
bd65cb86c9
@ -332,8 +332,7 @@ static void truncate_huge_page(struct page *page)
|
||||
{
|
||||
cancel_dirty_page(page, /* No IO accounting for huge pages? */0);
|
||||
ClearPageUptodate(page);
|
||||
remove_from_page_cache(page);
|
||||
put_page(page);
|
||||
delete_from_page_cache(page);
|
||||
}
|
||||
|
||||
static void truncate_hugepages(struct inode *inode, loff_t lstart)
|
||||
|
Loading…
Reference in New Issue
Block a user