mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-21 14:11:20 +00:00
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>
This commit is contained in:
parent
0ee930e6ca
commit
d9f7979c92
9 changed files with 23 additions and 63 deletions
|
@ -191,8 +191,6 @@ static int __init cma_debugfs_init(void)
|
|||
int i;
|
||||
|
||||
cma_debugfs_root = debugfs_create_dir("cma", NULL);
|
||||
if (!cma_debugfs_root)
|
||||
return -ENOMEM;
|
||||
|
||||
for (i = 0; i < cma_area_count; i++)
|
||||
cma_debugfs_add_one(&cma_areas[i], i);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue