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:	Tue, 24 Oct 2006 14:44:49 -0500 (CDT)
From:	Brent Casavant <bcasavan@....com>
To:	Randy Dunlap <randy.dunlap@...cle.com>
cc:	lkml <linux-kernel@...r.kernel.org>, akpm <akpm@...l.org>
Subject: Re: [PATCH] ioc4: fix printk format warning

This change is fine by me.

Acked-by: Brent Casavant <bcasavan@....com>

On Mon, 23 Oct 2006, Randy Dunlap wrote:

> From: Randy Dunlap <randy.dunlap@...cle.com>
> 
> Fix printk format warning:
> drivers/misc/ioc4.c:213: warning: long long int format, u64 arg (arg 3)
> 
> Signed-off-by: Randy Dunlap <randy.dunlap@...cle.com>
> ---
> 
>  drivers/misc/ioc4.c |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> --- linux-2619-rc3-pv.orig/drivers/misc/ioc4.c
> +++ linux-2619-rc3-pv/drivers/misc/ioc4.c
> @@ -209,8 +209,8 @@ ioc4_clock_calibrate(struct ioc4_driver_
>  
>  		do_div(ns, IOC4_EXTINT_COUNT_DIVISOR);
>  		printk(KERN_DEBUG
> -		       "IOC4 %s: PCI clock is %lld ns.\n",
> -		       pci_name(idd->idd_pdev), ns);
> +		       "IOC4 %s: PCI clock is %llu ns.\n",
> +		       pci_name(idd->idd_pdev), (unsigned long long)ns);
>  	}
>  
>  	/* Remember results.  We store the extint clock period rather
> 
> 
> ---
> -
> 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/
> 

-- 
Brent Casavant                          All music is folk music.  I ain't
bcasavan@....com                        never heard a horse sing a song.
Silicon Graphics, Inc.                    -- Louis Armstrong
-
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