Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'stable' of git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile

Pull arch/tile bugfix from Chris Metcalf:
"This fixes a bug that causes reboots after 208 days of uptime :-)"

* 'stable' of git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile:
tile: avoid using clocksource_cyc2ns with absolute cycle count

+2 -2
+2 -2
arch/tile/kernel/time.c
··· 218 218 */ 219 219 unsigned long long sched_clock(void) 220 220 { 221 - return clocksource_cyc2ns(get_cycles(), 222 - sched_clock_mult, SCHED_CLOCK_SHIFT); 221 + return mult_frac(get_cycles(), 222 + sched_clock_mult, 1ULL << SCHED_CLOCK_SHIFT); 223 223 } 224 224 225 225 int setup_profiling_timer(unsigned int multiplier)