Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752271AbdIMKLB (ORCPT ); Wed, 13 Sep 2017 06:11:01 -0400 Received: from mail-wr0-f193.google.com ([209.85.128.193]:36346 "EHLO mail-wr0-f193.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752233AbdIMKK4 (ORCPT ); Wed, 13 Sep 2017 06:10:56 -0400 X-Google-Smtp-Source: ADKCNb7kF5Z5l00ZARfXxTJW1mRschUVIJ2cvdkfA4zAHI+IFQgkiVXQP6Sbiy0zNr2eiNexqiQ5Xg== Date: Wed, 13 Sep 2017 12:10:47 +0200 From: Alexandru Moise <00moses.alexander00@gmail.com> To: akpm@linux-foundation.org, mhocko@suse.com, aneesh.kumar@linux.vnet.ibm.com, n-horiguchi@ah.jp.nec.com, mike.kravetz@oracle.com, khandual@linux.vnet.ibm.com, punit.agrawal@arm.com, gerald.schaefer@de.ibm.com, linux-kernel@vger.kernel.org Subject: [PATCH] mm/madvise: enable soft offline of HugeTLB pages at PUD level Message-ID: <20170913101047.GA13026@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.9.0 (2017-09-02) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 901 Lines: 26 since 94310cb we've been able to soft offline 1G hugepages at the PGD level, however x86_64 gigantic hugepages are at the PUD level so we should add an extra check to account for hstate order at PUD level. I'm not sure if this also applies to 5 level page tables on x86_64 however. Tested with 4 level pagetable. Signed-off-by: Alexandru Moise <00moses.alexander00@gmail.com> --- include/linux/hugetlb.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/linux/hugetlb.h b/include/linux/hugetlb.h index 8bbbd37ab105..86c3f3d9da0a 100644 --- a/include/linux/hugetlb.h +++ b/include/linux/hugetlb.h @@ -480,6 +480,7 @@ static inline bool hugepage_migration_supported(struct hstate *h) { #ifdef CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION if ((huge_page_shift(h) == PMD_SHIFT) || + (huge_page_shift(h) == PUD_SHIFT) || (huge_page_shift(h) == PGDIR_SHIFT)) return true; else -- 2.14.1