summaryrefslogtreecommitdiffstats
path: root/mm/memblock.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/memblock.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/memblock.c')
-rw-r--r--mm/memblock.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/mm/memblock.c b/mm/memblock.c
index ea31045ba704..470601115892 100644
--- a/mm/memblock.c
+++ b/mm/memblock.c
@@ -2005,8 +2005,7 @@ DEFINE_SHOW_ATTRIBUTE(memblock_debug);
2005static int __init memblock_init_debugfs(void) 2005static int __init memblock_init_debugfs(void)
2006{ 2006{
2007 struct dentry *root = debugfs_create_dir("memblock", NULL); 2007 struct dentry *root = debugfs_create_dir("memblock", NULL);
2008 if (!root) 2008
2009 return -ENXIO;
2010 debugfs_create_file("memory", 0444, root, 2009 debugfs_create_file("memory", 0444, root,
2011 &memblock.memory, &memblock_debug_fops); 2010 &memblock.memory, &memblock_debug_fops);
2012 debugfs_create_file("reserved", 0444, root, 2011 debugfs_create_file("reserved", 0444, root,