Re: [PATCH] fix 32-bit compile warning from printk()

2013-02-13 Thread Borislav Petkov
On Wed, Feb 13, 2013 at 08:31:00AM -0800, Randy Dunlap wrote: > This warning is still present in linux-next (20130213). > > Acked-by: Randy Dunlap > > Thanks. > > Someone please merge... (kvm@ cc added) There's a fix already in tip for this: http://git.kernel.org/tip/136867f517cbc3f8a91f0356

Re: [PATCH] fix 32-bit compile warning from printk()

2013-02-13 Thread Randy Dunlap
On 01/28/13 11:19, Dave Hansen wrote: > My patch "Fix kvm's use of __pa() on percpu areas" introduced a > compile warning: > > arch/x86/kernel/kvm.c: In function 'kvm_register_steal_time': > arch/x86/kernel/kvm.c:302:3: warning: format '%lx' expects argument of type > 'long unsigned int', but arg

Re: [PATCH] fix 32-bit compile warning from printk()

2013-01-29 Thread Andrew Morton
On Tue, 29 Jan 2013 02:54:28 -0800 Andrew Morton wrote: > On Mon, 28 Jan 2013 11:19:39 -0800 Dave Hansen > wrote: > > > My patch "Fix kvm's use of __pa() on percpu areas" introduced a > > compile warning: > > > > arch/x86/kernel/kvm.c: In function 'kvm_register_steal_time': > > arch/x86/kern

Re: [PATCH] fix 32-bit compile warning from printk()

2013-01-29 Thread Andrew Morton
On Mon, 28 Jan 2013 11:19:39 -0800 Dave Hansen wrote: > My patch "Fix kvm's use of __pa() on percpu areas" introduced a > compile warning: > > arch/x86/kernel/kvm.c: In function 'kvm_register_steal_time': > arch/x86/kernel/kvm.c:302:3: warning: format '%lx' expects argument of type > 'long unsi

[PATCH] fix 32-bit compile warning from printk()

2013-01-28 Thread Dave Hansen
My patch "Fix kvm's use of __pa() on percpu areas" introduced a compile warning: arch/x86/kernel/kvm.c: In function 'kvm_register_steal_time': arch/x86/kernel/kvm.c:302:3: warning: format '%lx' expects argument of type 'long unsigned int', but argument 3 has type 'phys_addr_t' [-Wformat] Accord