linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/1] mm: Convert to DEFINE_DEBUGFS_ATTRIBUTE
@ 2017-05-28 14:59 Yevgen Pronenko
  0 siblings, 0 replies; only message in thread
From: Yevgen Pronenko @ 2017-05-28 14:59 UTC (permalink / raw)
  To: Andrew Morton, Kirill A . Shutemov, Jan Kara, linux-mm; +Cc: Yevgen Pronenko

The preffered strategy to define debugfs attributes is to use
DEFINE_DEBUGFS_ATTRIBUTE() macro and debugfs_create_file_unsafe()
function.

Signed-off-by: Yevgen Pronenko <y.pronenko@gmail.com>
---
 mm/memory.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mm/memory.c b/mm/memory.c
index 206902395512..b1b97b490791 100644
--- a/mm/memory.c
+++ b/mm/memory.c
@@ -3300,14 +3300,14 @@ static int fault_around_bytes_set(void *data, u64 val)
 		fault_around_bytes = PAGE_SIZE; /* rounddown_pow_of_two(0) is undefined */
 	return 0;
 }
-DEFINE_SIMPLE_ATTRIBUTE(fault_around_bytes_fops,
+DEFINE_DEBUGFS_ATTRIBUTE(fault_around_bytes_fops,
 		fault_around_bytes_get, fault_around_bytes_set, "%llu\n");
 
 static int __init fault_around_debugfs(void)
 {
 	void *ret;
 
-	ret = debugfs_create_file("fault_around_bytes", 0644, NULL, NULL,
+	ret = debugfs_create_file_unsafe("fault_around_bytes", 0644, NULL, NULL,
 			&fault_around_bytes_fops);
 	if (!ret)
 		pr_warn("Failed to create fault_around_bytes in debugfs");
-- 
2.11.0

--
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: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2017-05-28 14:59 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-28 14:59 [PATCH 1/1] mm: Convert to DEFINE_DEBUGFS_ATTRIBUTE Yevgen Pronenko

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).