]> Git Repo - linux.git/commit
debugfs: return error values, not NULL
authorGreg Kroah-Hartman <[email protected]>
Wed, 23 Jan 2019 10:28:14 +0000 (11:28 +0100)
committerGreg Kroah-Hartman <[email protected]>
Tue, 29 Jan 2019 20:28:35 +0000 (21:28 +0100)
commitff9fb72bc07705c00795ca48631f7fffe24d2c6b
tree843e8ed33a99d526773470109426188e50aed3c9
parentd88c93f090f708c18195553b352b9f205e65418f
debugfs: return error values, not NULL

When an error happens, debugfs should return an error pointer value, not
NULL.  This will prevent the totally theoretical error where a debugfs
call fails due to lack of memory, returning NULL, and that dentry value
is then passed to another debugfs call, which would end up succeeding,
creating a file at the root of the debugfs tree, but would then be
impossible to remove (because you can not remove the directory NULL).

So, to make everyone happy, always return errors, this makes the users
of debugfs much simpler (they do not have to ever check the return
value), and everyone can rest easy.

Reported-by: Gary R Hook <[email protected]>
Reported-by: Heiko Carstens <[email protected]>
Reported-by: Masami Hiramatsu <[email protected]>
Reported-by: Michal Hocko <[email protected]>
Reported-by: Sebastian Andrzej Siewior <[email protected]>
Reported-by: Ulf Hansson <[email protected]>
Reviewed-by: Masami Hiramatsu <[email protected]>
Reviewed-by: Sebastian Andrzej Siewior <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
fs/debugfs/inode.c
This page took 0.058189 seconds and 4 git commands to generate.