]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
infiniband: ipoib: no need to check return value of debugfs_create functions
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 22 Jan 2019 15:18:00 +0000 (16:18 +0100)
committerJason Gunthorpe <jgg@mellanox.com>
Thu, 24 Jan 2019 16:22:30 +0000 (09:22 -0700)
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.

Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
drivers/infiniband/ulp/ipoib/ipoib.h
drivers/infiniband/ulp/ipoib/ipoib_fs.c
drivers/infiniband/ulp/ipoib/ipoib_main.c

index 1da119d901a90784fb083be135fde36ffcf0c71f..5941d660add14cd977a251f7593cfabf64e012e1 100644 (file)
@@ -781,12 +781,12 @@ static inline void ipoib_cm_handle_tx_wc(struct net_device *dev, struct ib_wc *w
 #ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
 void ipoib_create_debug_files(struct net_device *dev);
 void ipoib_delete_debug_files(struct net_device *dev);
-int ipoib_register_debugfs(void);
+void ipoib_register_debugfs(void);
 void ipoib_unregister_debugfs(void);
 #else
 static inline void ipoib_create_debug_files(struct net_device *dev) { }
 static inline void ipoib_delete_debug_files(struct net_device *dev) { }
-static inline int ipoib_register_debugfs(void) { return 0; }
+static inline void ipoib_register_debugfs(void) { }
 static inline void ipoib_unregister_debugfs(void) { }
 #endif
 
index 178488028734bb08a60a3af24f86e5a409a42af5..64c19f6fa93167c6c8cd6ac054a589190954ce14 100644 (file)
@@ -267,14 +267,10 @@ void ipoib_create_debug_files(struct net_device *dev)
        snprintf(name, sizeof(name), "%s_mcg", dev->name);
        priv->mcg_dentry = debugfs_create_file(name, S_IFREG | S_IRUGO,
                                               ipoib_root, dev, &ipoib_mcg_fops);
-       if (!priv->mcg_dentry)
-               ipoib_warn(priv, "failed to create mcg debug file\n");
 
        snprintf(name, sizeof(name), "%s_path", dev->name);
        priv->path_dentry = debugfs_create_file(name, S_IFREG | S_IRUGO,
                                                ipoib_root, dev, &ipoib_path_fops);
-       if (!priv->path_dentry)
-               ipoib_warn(priv, "failed to create path debug file\n");
 }
 
 void ipoib_delete_debug_files(struct net_device *dev)
@@ -286,10 +282,9 @@ void ipoib_delete_debug_files(struct net_device *dev)
        priv->mcg_dentry = priv->path_dentry = NULL;
 }
 
-int ipoib_register_debugfs(void)
+void ipoib_register_debugfs(void)
 {
        ipoib_root = debugfs_create_dir("ipoib", NULL);
-       return ipoib_root ? 0 : -ENOMEM;
 }
 
 void ipoib_unregister_debugfs(void)
index d932f99201d1ead6a48d65ee3e429d348d7a12bc..45ef3b0f03c51ec102057125ce0f3db20b252d28 100644 (file)
@@ -2577,9 +2577,7 @@ static int __init ipoib_init_module(void)
         */
        BUILD_BUG_ON(IPOIB_CM_COPYBREAK > IPOIB_CM_HEAD_SIZE);
 
-       ret = ipoib_register_debugfs();
-       if (ret)
-               return ret;
+       ipoib_register_debugfs();
 
        /*
         * We create a global workqueue here that is used for all flush