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: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Wed, 5 Aug 2015 09:05:18 +0200
From:	Heiko Carstens <heiko.carstens@...ibm.com>
To:	Peter Senna Tschudin <peter.senna@...il.com>
Cc:	wein@...ibm.com, stefan.haberland@...ibm.com,
	schwidefsky@...ibm.com, linux390@...ibm.com,
	maier@...ux.vnet.ibm.com, linux-s390@...r.kernel.org,
	linux-kernel@...r.kernel.org
Subject: Re: [PATCH 2/2] s390: Remove unneeded variables

On Tue, Aug 04, 2015 at 05:11:47PM +0200, Peter Senna Tschudin wrote:
> This patch remove unneeded variables used to store return values.
> 
> These issues were detected with the Coccinelle script:
> scripts/coccinelle/misc/returnvar.cocci
> 
> Signed-off-by: Peter Senna Tschudin <peter.senna@...il.com>
> ---
>  static struct css_device_id eadm_subchannel_ids[] = {
> diff --git a/drivers/s390/net/qeth_l2_main.c b/drivers/s390/net/qeth_l2_main.c
> index 2e65b98..a79d698 100644
> --- a/drivers/s390/net/qeth_l2_main.c
> +++ b/drivers/s390/net/qeth_l2_main.c
> @@ -392,8 +392,6 @@ static int qeth_l2_vlan_rx_kill_vid(struct net_device *dev,
> 
>  static int qeth_l2_stop_card(struct qeth_card *card, int recovery_mode)
>  {
> -	int rc = 0;
> -
>  	QETH_DBF_TEXT(SETUP , 2, "stopcard");
>  	QETH_DBF_HEX(SETUP, 2, &card, sizeof(void *));
> 
> @@ -427,7 +425,8 @@ static int qeth_l2_stop_card(struct qeth_card *card, int recovery_mode)
>  		qeth_clear_cmd_buffers(&card->read);
>  		qeth_clear_cmd_buffers(&card->write);
>  	}
> -	return rc;
> +
> +	return 0;
>  }
> 
>  static int qeth_l2_process_inbound_buffer(struct qeth_card *card,
> diff --git a/drivers/s390/net/qeth_l3_main.c b/drivers/s390/net/qeth_l3_main.c
> index 70eb2f6..ee5e2ac 100644
> --- a/drivers/s390/net/qeth_l3_main.c
> +++ b/drivers/s390/net/qeth_l3_main.c
> @@ -2160,8 +2160,6 @@ static struct qeth_card *qeth_l3_get_card_from_dev(struct net_device *dev)
> 
>  static int qeth_l3_stop_card(struct qeth_card *card, int recovery_mode)
>  {
> -	int rc = 0;
> -
>  	QETH_DBF_TEXT(SETUP, 2, "stopcard");
>  	QETH_DBF_HEX(SETUP, 2, &card, sizeof(void *));
> 
> @@ -2196,7 +2194,8 @@ static int qeth_l3_stop_card(struct qeth_card *card, int recovery_mode)
>  		qeth_clear_cmd_buffers(&card->read);
>  		qeth_clear_cmd_buffers(&card->write);
>  	}
> -	return rc;
> +
> +	return 0;

Applied. However I changed your patch a bit and made the *_stop_card()
functions return void instead, since the calling functions didn't care
anyway.

Thanks!

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ