Commit 665b55ef authored by Thomas Gleixner's avatar Thomas Gleixner

time: Fixup 32bit xtime_lock mismatch

Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent 92117778
...@@ -662,9 +662,9 @@ u64 get_jiffies_64(void) ...@@ -662,9 +662,9 @@ u64 get_jiffies_64(void)
u64 ret; u64 ret;
do { do {
seq = read_seqbegin(&xtime_lock); seq = read_atomic_seqbegin(&xtime_lock);
ret = jiffies_64; ret = jiffies_64;
} while (read_seqretry(&xtime_lock, seq)); } while (read_atomic_seqretry(&xtime_lock, seq));
return ret; return ret;
} }
EXPORT_SYMBOL(get_jiffies_64); EXPORT_SYMBOL(get_jiffies_64);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment