[PATCH] x86_64: Fix get_cmos_time()
authorJan Beulich <jbeulich@novell.com>
Wed, 11 Jan 2006 21:46:42 +0000 (22:46 +0100)
committerLinus Torvalds <torvalds@g5.osdl.org>
Thu, 12 Jan 2006 03:05:03 +0000 (19:05 -0800)
commit5329e13d0bd82e13814050eb9facb25eedde4bbc
treeec62d8058882edc85caaab3559a85ac1ffa30bf8
parentbdf2b1c9fedf76a1797216559f221e5eaa7a1eab
[PATCH] x86_64: Fix get_cmos_time()

Due to a broken condition, the body of the loop that is intended to wait for
the Update-In-Progress bit to get set and then cleared again was never
entered; in fact, the entire loop was optimized out by the compiler. Here is
a change to fix the condition (and to also move the initialization of locals
out of the spin lock protected region).

Signed-Off-By: Jan Beulich <jbeulich@novell.com>
Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
arch/x86_64/kernel/time.c