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]
Message-ID: <E717642AF17E744CA95C070CA815AE55B23817@cceexc23.americas.cpqcorp.net>
Date:	Tue, 24 Oct 2006 08:25:58 -0500
From:	"Miller, Mike (OS Dev)" <Mike.Miller@...com>
To:	"Randy Dunlap" <randy.dunlap@...cle.com>,
	"ISS StorageDev" <iss_storagedev@...com>,
	"lkml" <linux-kernel@...r.kernel.org>
Cc:	"akpm" <akpm@...l.org>, "Jens Axboe" <jens.axboe@...cle.com>
Subject: RE: [PATCH cciss: fix printk format warning

 

> -----Original Message-----
> From: Randy Dunlap [mailto:randy.dunlap@...cle.com] 
> Sent: Monday, October 23, 2006 11:46 PM
> To: ISS StorageDev; lkml
> Cc: akpm
> Subject: [PATCH cciss: fix printk format warning
> 
> From: Randy Dunlap <randy.dunlap@...cle.com>
> 
> Fix printk format warnings:
> drivers/block/cciss.c:2000: warning: long long int format, 
> long unsigned int arg (arg 2)
> drivers/block/cciss.c:2035: warning: long long int format, 
> long unsigned int arg (arg 2)
> 
> Signed-off-by: Randy Dunlap <randy.dunlap@...cle.com>

Acked-by: Mike Miller <mike.miller@...com>

> ---
> 
>  drivers/block/cciss.c |    8 ++++----
>  1 files changed, 4 insertions(+), 4 deletions(-)
> 
> --- linux-2619-rc3-pv.orig/drivers/block/cciss.c
> +++ linux-2619-rc3-pv/drivers/block/cciss.c
> @@ -1992,8 +1992,8 @@ cciss_read_capacity(int ctlr, int logvol
>  		*block_size = BLOCK_SIZE;
>  	}
>  	if (*total_size != (__u32) 0)
> -		printk(KERN_INFO "      blocks= %lld block_size= %d\n",
> -		*total_size, *block_size);
> +		printk(KERN_INFO "      blocks= %llu block_size= %d\n",
> +		(unsigned long long)*total_size, *block_size);
>  	kfree(buf);
>  	return;
>  }
> @@ -2027,8 +2027,8 @@ cciss_read_capacity_16(int ctlr, int log
>  		*total_size = 0;
>  		*block_size = BLOCK_SIZE;
>  	}
> -	printk(KERN_INFO "      blocks= %lld block_size= %d\n",
> -	       *total_size, *block_size);
> +	printk(KERN_INFO "      blocks= %llu block_size= %d\n",
> +	       (unsigned long long)*total_size, *block_size);
>  	kfree(buf);
>  	return;
>  }
> 
> 
> ---
> 
-
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