timekeeping: Consistently use unsigned int for seqcount snapshot
[sfrench/cifs-2.6.git] / kernel / time / tick-sched.c
index 6fa52cd6df0be2f53c8e79bf0e8cf16bcf0310f0..b50f6f22c88e584a7779eb4393a721d2ab06c772 100644 (file)
@@ -645,7 +645,8 @@ static inline bool local_timer_softirq_pending(void)
 static ktime_t tick_nohz_next_event(struct tick_sched *ts, int cpu)
 {
        u64 basemono, next_tick, next_tmr, next_rcu, delta, expires;
-       unsigned long seq, basejiff;
+       unsigned long basejiff;
+       unsigned int seq;
 
        /* Read jiffies and the time when jiffies were updated last */
        do {