Skip to content

Commit 81db4db

Browse files
committed
Merge branch 'timers-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull timer fixes from Thomas Gleixner: - Trivial: unused variable removal - Posix-timers: Add the clock ID to the new proc interface to make it useful. The interface is new and should be functional when we reach the final 3.10 release. - Cure a false positive warning in the tick code introduced by the overhaul in 3.10 - Fix for a persistent clock detection regression introduced in this cycle * 'timers-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: timekeeping: Correct run-time detection of persistent_clock. ntp: Remove unused variable flags in __hardpps posix-timers: Show clock ID in proc file tick: Cure broadcast false positive pending bit warning
2 parents c3e58a7 + 67dd331 commit 81db4db

File tree

4 files changed

+16
-2
lines changed

4 files changed

+16
-2
lines changed

fs/proc/base.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2118,6 +2118,7 @@ static int show_timer(struct seq_file *m, void *v)
21182118
nstr[notify & ~SIGEV_THREAD_ID],
21192119
(notify & SIGEV_THREAD_ID) ? "tid" : "pid",
21202120
pid_nr_ns(timer->it_pid, tp->ns));
2121+
seq_printf(m, "ClockID: %d\n", timer->it_clock);
21212122

21222123
return 0;
21232124
}

kernel/time/ntp.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -874,7 +874,6 @@ static void hardpps_update_phase(long error)
874874
void __hardpps(const struct timespec *phase_ts, const struct timespec *raw_ts)
875875
{
876876
struct pps_normtime pts_norm, freq_norm;
877-
unsigned long flags;
878877

879878
pts_norm = pps_normalize_ts(*phase_ts);
880879

kernel/time/tick-broadcast.c

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,6 +511,12 @@ static void tick_handle_oneshot_broadcast(struct clock_event_device *dev)
511511
}
512512
}
513513

514+
/*
515+
* Remove the current cpu from the pending mask. The event is
516+
* delivered immediately in tick_do_broadcast() !
517+
*/
518+
cpumask_clear_cpu(smp_processor_id(), tick_broadcast_pending_mask);
519+
514520
/* Take care of enforced broadcast requests */
515521
cpumask_or(tmpmask, tmpmask, tick_broadcast_force_mask);
516522
cpumask_clear(tick_broadcast_force_mask);
@@ -575,8 +581,8 @@ void tick_broadcast_oneshot_control(unsigned long reason)
575581

576582
raw_spin_lock_irqsave(&tick_broadcast_lock, flags);
577583
if (reason == CLOCK_EVT_NOTIFY_BROADCAST_ENTER) {
578-
WARN_ON_ONCE(cpumask_test_cpu(cpu, tick_broadcast_pending_mask));
579584
if (!cpumask_test_and_set_cpu(cpu, tick_broadcast_oneshot_mask)) {
585+
WARN_ON_ONCE(cpumask_test_cpu(cpu, tick_broadcast_pending_mask));
580586
clockevents_set_mode(dev, CLOCK_EVT_MODE_SHUTDOWN);
581587
/*
582588
* We only reprogram the broadcast timer if we

kernel/time/timekeeping.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -975,6 +975,14 @@ static int timekeeping_suspend(void)
975975

976976
read_persistent_clock(&timekeeping_suspend_time);
977977

978+
/*
979+
* On some systems the persistent_clock can not be detected at
980+
* timekeeping_init by its return value, so if we see a valid
981+
* value returned, update the persistent_clock_exists flag.
982+
*/
983+
if (timekeeping_suspend_time.tv_sec || timekeeping_suspend_time.tv_nsec)
984+
persistent_clock_exist = true;
985+
978986
raw_spin_lock_irqsave(&timekeeper_lock, flags);
979987
write_seqcount_begin(&timekeeper_seq);
980988
timekeeping_forward_now(tk);

0 commit comments

Comments
 (0)