Linux PCI Non-Transparent Bridge framework and drivers
 help / color / mirror / Atom feed
* [PATCH v2] ntb:Fix an NULL vs IS_ERR() bug for debugfs_create_dir() in tool_setup_dbgfs()
@ 2023-07-12 12:39 Wang Ming
  2023-07-12 13:50 ` Dan Carpenter
  0 siblings, 1 reply; 5+ messages in thread
From: Wang Ming @ 2023-07-12 12:39 UTC (permalink / raw)
  To: Jon Mason, Dave Jiang, Allen Hubbe, Serge Semin, Dan Carpenter,
	Jiasheng Jiang, Wang Ming, ntb, linux-kernel
  Cc: opensource.kernel

The debugfs_create_dir() function returns error pointers.
It never returns NULL. Most incorrect error checks were fixed,
but the one in tool_setup_dbgfs() was forgotten.

Fix the remaining error check.

Signed-off-by: Wang Ming <machel@vivo.com>
---
 drivers/ntb/test/ntb_tool.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/ntb/test/ntb_tool.c b/drivers/ntb/test/ntb_tool.c
index eeeb4b1c97d2..4fa69ea4331d 100644
--- a/drivers/ntb/test/ntb_tool.c
+++ b/drivers/ntb/test/ntb_tool.c
@@ -1495,7 +1495,7 @@ static void tool_setup_dbgfs(struct tool_ctx *tc)
 
 	tc->dbgfs_dir = debugfs_create_dir(dev_name(&tc->ntb->dev),
 					   tool_dbgfs_topdir);
-	if (!tc->dbgfs_dir)
+	if (IS_ERR(tc->dbgfs_dir))
 		return;
 
 	debugfs_create_file("port", 0600, tc->dbgfs_dir,
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-07-13  7:23 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-12 12:39 [PATCH v2] ntb:Fix an NULL vs IS_ERR() bug for debugfs_create_dir() in tool_setup_dbgfs() Wang Ming
2023-07-12 13:50 ` Dan Carpenter
2023-07-13  2:13   ` 回复: " 王明-软件底层技术部
2023-07-13  6:00     ` Dan Carpenter
2023-07-13  7:23       ` 回复: " 王明-软件底层技术部

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox