[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1460743805-2560-1-git-send-email-yang.shi@linaro.org>
Date: Fri, 15 Apr 2016 11:10:05 -0700
From: Yang Shi <yang.shi@...aro.org>
To: akpm@...ux-foundation.org, kirill.shutemov@...ux.intel.com,
aarcange@...hat.com, hughd@...gle.com, mgorman@...e.de
Cc: linux-kernel@...r.kernel.org, linux-mm@...ck.org,
linaro-kernel@...ts.linaro.org, yang.shi@...aro.org
Subject: [PATCH] mm: thp: correct split_huge_pages file permission
split_huge_pages doesn't support get method at all, so the read permission
sounds confusing, change the permission to write only.
And, add "\n" to the output of set method to make it more readable.
Signed-off-by: Yang Shi <yang.shi@...aro.org>
---
mm/huge_memory.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/mm/huge_memory.c b/mm/huge_memory.c
index 86f9f8b..8adf3c2 100644
--- a/mm/huge_memory.c
+++ b/mm/huge_memory.c
@@ -3454,7 +3454,7 @@ next:
}
}
- pr_info("%lu of %lu THP split", split, total);
+ pr_info("%lu of %lu THP split\n", split, total);
return 0;
}
@@ -3465,7 +3465,7 @@ static int __init split_huge_pages_debugfs(void)
{
void *ret;
- ret = debugfs_create_file("split_huge_pages", 0644, NULL, NULL,
+ ret = debugfs_create_file("split_huge_pages", 0200, NULL, NULL,
&split_huge_pages_fops);
if (!ret)
pr_warn("Failed to create split_huge_pages in debugfs");
--
2.0.2
Powered by blists - more mailing lists