lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite for Android: free password hash cracker in your pocket
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:	Mon, 16 Mar 2015 02:01:25 +0800
From:	kbuild test robot <fengguang.wu@...el.com>
To:	Hadar Hen Zion <hadarh@...lanox.com>
Cc:	kbuild-all@...org, Poli <a@...om>, netdev@...r.kernel.org,
	linux-kernel@...r.kernel.org
Subject: [PATCH] net/mlx4_core: Add configfs entries for setting device
 specific parameters [net-next: fix err_cast.cocci warnings

drivers/net/ethernet/mellanox/mlx4/conf.c:218:9-16: WARNING: ERR_CAST can be used with pdev


 Use ERR_CAST inlined function instead of ERR_PTR(PTR_ERR(...))

Generated by: scripts/coccinelle/api/err_cast.cocci

CC: Hadar Hen Zion <hadarh@...lanox.com>
Signed-off-by: Fengguang Wu <fengguang.wu@...el.com>
---

 conf.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/drivers/net/ethernet/mellanox/mlx4/conf.c
+++ b/drivers/net/ethernet/mellanox/mlx4/conf.c
@@ -215,7 +215,7 @@ static struct config_group *mlx4_set_con
 
 	pdev = find_pdev_by_name(name);
 	if (IS_ERR(pdev))
-		return ERR_PTR(PTR_ERR(pdev));
+		return ERR_CAST(pdev);
 
 	pdev_config = kzalloc(sizeof(*pdev_config), GFP_KERNEL);
 	if (!pdev_config) {
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Powered by blists - more mailing lists