projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
700b7c5
)
x86/IO-APIC: Avoid warning in 32-bit builds
author
Jan Beulich
<
[email protected]
>
Mon, 19 Feb 2018 14:50:23 +0000
(07:50 -0700)
committer
Ingo Molnar
<
[email protected]
>
Tue, 20 Feb 2018 08:33:40 +0000
(09:33 +0100)
Constants wider than 32 bits should be tagged with ULL.
Signed-off-by: Jan Beulich <
[email protected]
>
Acked-by: Thomas Gleixner <
[email protected]
>
Cc: Andy Lutomirski <
[email protected]
>
Cc: Borislav Petkov <
[email protected]
>
Cc: Brian Gerst <
[email protected]
>
Cc: Denys Vlasenko <
[email protected]
>
Cc: H. Peter Anvin <
[email protected]
>
Cc: Josh Poimboeuf <
[email protected]
>
Cc: Linus Torvalds <
[email protected]
>
Cc: Peter Zijlstra <
[email protected]
>
Link:
http://lkml.kernel.org/r/
[email protected]
Signed-off-by: Ingo Molnar <
[email protected]
>
arch/x86/kernel/apic/io_apic.c
patch
|
blob
|
history
diff --git
a/arch/x86/kernel/apic/io_apic.c
b/arch/x86/kernel/apic/io_apic.c
index 8ad2e410974f2d4b71a44f033e8c046671b89622..7c5538769f7e43f7bac9c8ff9a30b6a26ac89433 100644
(file)
--- a/
arch/x86/kernel/apic/io_apic.c
+++ b/
arch/x86/kernel/apic/io_apic.c
@@
-1603,7
+1603,7
@@
static void __init delay_with_tsc(void)
do {
rep_nop();
now = rdtsc();
- } while ((now - start) < 40000000000UL / HZ &&
+ } while ((now - start) < 40000000000UL
L
/ HZ &&
time_before_eq(jiffies, end));
}