From mboxrd@z Thu Jan 1 00:00:00 1970 From: akpm@linux-foundation.org Subject: [merged] mm-page_alloc-fix-comment-is-__get_free_pages.patch removed from -mm tree Date: Thu, 01 Feb 2018 11:31:16 -0800 Message-ID: <20180201193116.dZWbiqGFl%akpm@linux-foundation.org> Reply-To: linux-kernel@vger.kernel.org Return-path: Received: from mail.linuxfoundation.org ([140.211.169.12]:57478 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753012AbeBATbR (ORCPT ); Thu, 1 Feb 2018 14:31:17 -0500 Sender: mm-commits-owner@vger.kernel.org List-Id: mm-commits@vger.kernel.org To: chenjiankang1@huawei.com, guohanjun@huawei.com, hannes@cmpxchg.org, mgorman@techsingularity.net, mhocko@suse.com, mm-commits@vger.kernel.org, wangkefeng.wang@huawei.com, xieyisheng1@huawei.com The patch titled Subject: mm/page_alloc.c: fix comment in __get_free_pages() has been removed from the -mm tree. Its filename was mm-page_alloc-fix-comment-is-__get_free_pages.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Jiankang Chen Subject: mm/page_alloc.c: fix comment in __get_free_pages() __get_free_pages() will return a virtual address, but it is not just a 32-bit address, for example on a 64-bit system. And this comment really confuses new readers of mm. Link: http://lkml.kernel.org/r/1511780964-64864-1-git-send-email-chenjiankang1@huawei.com Signed-off-by: Jiankang Chen Reported-by: Hanjun Guo Cc: Mel Gorman Cc: Johannes Weiner Cc: Yisheng Xie Cc: Kefeng Wang Cc: Michal Hocko Signed-off-by: Andrew Morton --- mm/page_alloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN mm/page_alloc.c~mm-page_alloc-fix-comment-is-__get_free_pages mm/page_alloc.c --- a/mm/page_alloc.c~mm-page_alloc-fix-comment-is-__get_free_pages +++ a/mm/page_alloc.c @@ -4278,7 +4278,7 @@ unsigned long __get_free_pages(gfp_t gfp struct page *page; /* - * __get_free_pages() returns a 32-bit address, which cannot represent + * __get_free_pages() returns a virtual address, which cannot represent * a highmem page */ VM_BUG_ON((gfp_mask & __GFP_HIGHMEM) != 0); _ Patches currently in -mm which might be from chenjiankang1@huawei.com are