summaryrefslogtreecommitdiffstats
path: root/mm/memory.c
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-03-05 18:46:09 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2019-03-06 00:07:17 -0500
commitd9f7979c92f7b34469c1ca5d1f3add6681fd567c (patch)
treead8b342028e101065d752fe1fe18199766e289e3 /mm/memory.c
parent0ee930e6cafa048c1925893d0ca89918b2814f2c (diff)
mm: no need to check return value of debugfs_create functions
When calling debugfs functions, there is no need to ever check the return value. The function can work or not, but the code logic should never do something different based on this. Link: http://lkml.kernel.org/r/20190122152151.16139-14-gregkh@linuxfoundation.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Cc: Michal Hocko <mhocko@suse.com> Cc: Vlastimil Babka <vbabka@suse.cz> Cc: David Rientjes <rientjes@google.com> Cc: Laura Abbott <labbott@redhat.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/memory.c')
-rw-r--r--mm/memory.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/mm/memory.c b/mm/memory.c
index 79e0173a7d70..6aff43171a7b 100644
--- a/mm/memory.c
+++ b/mm/memory.c
@@ -3334,12 +3334,8 @@ DEFINE_DEBUGFS_ATTRIBUTE(fault_around_bytes_fops,
3334 3334
3335static int __init fault_around_debugfs(void) 3335static int __init fault_around_debugfs(void)
3336{ 3336{
3337 void *ret; 3337 debugfs_create_file_unsafe("fault_around_bytes", 0644, NULL, NULL,
3338 3338 &fault_around_bytes_fops);
3339 ret = debugfs_create_file_unsafe("fault_around_bytes", 0644, NULL, NULL,
3340 &fault_around_bytes_fops);
3341 if (!ret)
3342 pr_warn("Failed to create fault_around_bytes in debugfs");
3343 return 0; 3339 return 0;
3344} 3340}
3345late_initcall(fault_around_debugfs); 3341late_initcall(fault_around_debugfs);