From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f50.google.com (mail-wm0-f50.google.com [74.125.82.50]) by kanga.kvack.org (Postfix) with ESMTP id 089706B0256 for ; Tue, 1 Mar 2016 08:44:32 -0500 (EST) Received: by mail-wm0-f50.google.com with SMTP id p65so35964755wmp.1 for ; Tue, 01 Mar 2016 05:44:31 -0800 (PST) Received: from outbound-smtp09.blacknight.com (outbound-smtp09.blacknight.com. [46.22.139.14]) by mx.google.com with ESMTPS id t126si25609702wmf.12.2016.03.01.05.44.30 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 01 Mar 2016 05:44:31 -0800 (PST) Received: from mail.blacknight.com (pemlinmail05.blacknight.ie [81.17.254.26]) by outbound-smtp09.blacknight.com (Postfix) with ESMTPS id A100E1C1CED for ; Tue, 1 Mar 2016 13:44:30 +0000 (GMT) Date: Tue, 1 Mar 2016 13:44:28 +0000 From: Mel Gorman Subject: [PATCH] mm: thp: Set THP defrag by default to madvise and add a stall-free defrag option -fix Message-ID: <20160301134428.GH2854@techsingularity.net> References: <1456503359-4910-1-git-send-email-mgorman@techsingularity.net> <56D58E1E.5090708@suse.cz> <20160301133102.GG2854@techsingularity.net> <56D59AC7.1020104@suse.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline In-Reply-To: <56D59AC7.1020104@suse.cz> Sender: owner-linux-mm@kvack.org List-ID: To: Andrew Morton Cc: Vlastimil Babka , Rik van Riel , Johannes Weiner , Andrea Arcangeli , Linux-MM , LKML The following is a fix to the patch mm-thp-set-thp-defrag-by-default-to-madvise-and-add-a-stall-free-defrag-option.patch based on feedback from Vlastimil Babka. It removes an unnecessary VM_BUG_ON for tidyness, clarifies documentation and adds a check forbidding someone writing "defer" to the enable knob for transparent huge pages. The ack from Vlastimil applies for the original patch plus this fix combined. Signed-off-by: Mel Gorman Acked-by: Vlastimil Babka --- Documentation/vm/transhuge.txt | 2 +- mm/huge_memory.c | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Documentation/vm/transhuge.txt b/Documentation/vm/transhuge.txt index a19b173cbc57..1943fe051a36 100644 --- a/Documentation/vm/transhuge.txt +++ b/Documentation/vm/transhuge.txt @@ -129,7 +129,7 @@ available in the near future. It's the responsibility of khugepaged to then install the THP pages later. "madvise" will enter direct reclaim like "always" but only for regions -that are have used madvise(). This is the default behaviour. +that are have used madvise(MADV_HUGEPAGE). This is the default behaviour. "never" should be self-explanatory. diff --git a/mm/huge_memory.c b/mm/huge_memory.c index 206f35f06d83..9161b3a83720 100644 --- a/mm/huge_memory.c +++ b/mm/huge_memory.c @@ -246,6 +246,8 @@ static ssize_t triple_flag_store(struct kobject *kobj, { if (!memcmp("defer", buf, min(sizeof("defer")-1, count))) { + if (enabled == deferred) + return -EINVAL; clear_bit(enabled, &transparent_hugepage_flags); clear_bit(req_madv, &transparent_hugepage_flags); set_bit(deferred, &transparent_hugepage_flags); @@ -273,10 +275,9 @@ static ssize_t triple_flag_store(struct kobject *kobj, static ssize_t enabled_show(struct kobject *kobj, struct kobj_attribute *attr, char *buf) { - if (test_bit(TRANSPARENT_HUGEPAGE_FLAG, &transparent_hugepage_flags)) { - VM_BUG_ON(test_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG, &transparent_hugepage_flags)); + if (test_bit(TRANSPARENT_HUGEPAGE_FLAG, &transparent_hugepage_flags)) return sprintf(buf, "[always] madvise never\n"); - } else if (test_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG, &transparent_hugepage_flags)) + else if (test_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG, &transparent_hugepage_flags)) return sprintf(buf, "always [madvise] never\n"); else return sprintf(buf, "always madvise [never]\n"); -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org