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] [thread-next>] [day] [month] [year] [list]
Date:	Wed, 19 Feb 2014 09:53:44 -0500
From:	chas williams - CONTRACTOR <chas@....nrl.navy.mil>
To:	Daeseok Youn <daeseok.youn@...il.com>
Cc:	linux-atm-general@...ts.sourceforge.net, netdev@...r.kernel.org,
	linux-kernel@...r.kernel.org
Subject: Re: [PATCH] atm: nicstar: use NULL instead of 0 for pointer

On Wed, 19 Feb 2014 14:12:46 +0900
Daeseok Youn <daeseok.youn@...il.com> wrote:

> >From c320d2ea1ed51c88255c33a50c74fa3598ab7be6 Mon Sep 17 00:00:00 2001
> From: Daeseok Youn <daeseok.youn@...il.com>
> Date: Wed, 19 Feb 2014 10:10:11 +0900
> Subject: [PATCH] atm: nicstar: use NULL instead of 0 for pointer
> 
> sparse says:
> 
> drivers/atm/nicstar.c:642:27: warning:
>  Using plain integer as NULL pointer
> drivers/atm/nicstar.c:644:27:
>  warning: Using plain integer as NULL pointer
> drivers/atm/nicstar.c:982:51:
>  warning: Using plain integer as NULL pointer
> drivers/atm/nicstar.c:996:51:
>  warning: Using plain integer as NULL pointer
> 
> Signed-off-by: Daeseok Youn <daeseok.youn@...il.com>
> ---
>  drivers/atm/nicstar.c |    8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/atm/nicstar.c b/drivers/atm/nicstar.c
> index 9587e95..13ed54c 100644
> --- a/drivers/atm/nicstar.c
> +++ b/drivers/atm/nicstar.c
> @@ -639,9 +639,9 @@ static int ns_init_card(int i, struct pci_dev *pcidev)
>  	card->hbnr.init = NUM_HB;
>  	card->hbnr.max = MAX_HB;
>  
> -	card->sm_handle = 0x00000000;
> +	card->sm_handle = NULL;
>  	card->sm_addr = 0x00000000;
> -	card->lg_handle = 0x00000000;
> +	card->lg_handle = NULL;
>  	card->lg_addr = 0x00000000;
>  
>  	card->efbie = 1;	/* To prevent push_rxbufs from enabling the interrupt */
> @@ -979,7 +979,7 @@ static void push_rxbufs(ns_dev * card, struct sk_buff *skb)
>  				addr2 = card->sm_addr;
>  				handle2 = card->sm_handle;
>  				card->sm_addr = 0x00000000;
> -				card->sm_handle = 0x00000000;
> +				card->sm_handle = NULL;
>  			} else {	/* (!sm_addr) */
>  
>  				card->sm_addr = addr1;
> @@ -993,7 +993,7 @@ static void push_rxbufs(ns_dev * card, struct sk_buff *skb)
>  				addr2 = card->lg_addr;
>  				handle2 = card->lg_handle;
>  				card->lg_addr = 0x00000000;
> -				card->lg_handle = 0x00000000;
> +				card->lg_handle = NULL;
>  			} else {	/* (!lg_addr) */
>  
>  				card->lg_addr = addr1;

Acked-by: Chas Williams <chas@....nrl.navy.mil>
--
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

Powered by Openwall GNU/*/Linux Powered by OpenVZ