On Tue, 2019-08-06 at 18:11 +0200, Greg Kroah-Hartman wrote: > 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. > > This cleans up a lot of unneeded code and logic around the debugfs > files, making all of this much simpler and easier to understand as we > don't need to keep the dentries saved anymore. > > Cc: Saeed Mahameed <sae...@mellanox.com> > Cc: Leon Romanovsky <l...@kernel.org> > Cc: netdev@vger.kernel.org > Signed-off-by: Greg Kroah-Hartman <gre...@linuxfoundation.org>
Acked-by: Saeed Mahameed <sae...@mellanox.com> Some unexpected/undefined driver behavior might occur if some of the debug_fs_* calls should fail in this driver, I will follow up with a patch to address this. Thanks, Saeed.