Merge branch 'timers/for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'timers/for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip: x86: add PCI ID for 6300ESB force hpet x86: add another PCI ID for ICH6 force-hpet kernel-paramaters: document pmtmr= command line option acpi_pm clccksource: fix printk format warning nohz: don't stop idle tick if softirqs are pending. pmtmr: allow command line override of ioport nohz: reduce jiffies polling overhead hrtimer: Remove unused variables in ktime_divns() hrtimer: remove warning in hres_timers_resume posix-timers: print RT watchdog message
This commit is contained in:
@@ -300,11 +300,10 @@ EXPORT_SYMBOL_GPL(ktime_sub_ns);
|
||||
*/
|
||||
u64 ktime_divns(const ktime_t kt, s64 div)
|
||||
{
|
||||
u64 dclc, inc, dns;
|
||||
u64 dclc;
|
||||
int sft = 0;
|
||||
|
||||
dclc = dns = ktime_to_ns(kt);
|
||||
inc = div;
|
||||
dclc = ktime_to_ns(kt);
|
||||
/* Make sure the divisor is less than 2^32: */
|
||||
while (div >> 32) {
|
||||
sft++;
|
||||
@@ -632,8 +631,6 @@ void clock_was_set(void)
|
||||
*/
|
||||
void hres_timers_resume(void)
|
||||
{
|
||||
WARN_ON_ONCE(num_online_cpus() > 1);
|
||||
|
||||
/* Retrigger the CPU local events: */
|
||||
retrigger_next_event(NULL);
|
||||
}
|
||||
|
Reference in New Issue
Block a user