tick-oneshot.c (f97b12cce6dea51880a6a89d4607c29c70a6a841) | tick-oneshot.c (e2830b5c1b2b2217894370a3b95af87d4a958401) |
---|---|
1/* 2 * linux/kernel/time/tick-oneshot.c 3 * 4 * This file contains functions which manage high resolution tick 5 * related events. 6 * 7 * Copyright(C) 2005-2006, Thomas Gleixner <tglx@linutronix.de> 8 * Copyright(C) 2005-2007, Red Hat, Inc., Ingo Molnar --- 4 unchanged lines hidden (view full) --- 13 */ 14#include <linux/cpu.h> 15#include <linux/err.h> 16#include <linux/hrtimer.h> 17#include <linux/interrupt.h> 18#include <linux/percpu.h> 19#include <linux/profile.h> 20#include <linux/sched.h> | 1/* 2 * linux/kernel/time/tick-oneshot.c 3 * 4 * This file contains functions which manage high resolution tick 5 * related events. 6 * 7 * Copyright(C) 2005-2006, Thomas Gleixner <tglx@linutronix.de> 8 * Copyright(C) 2005-2007, Red Hat, Inc., Ingo Molnar --- 4 unchanged lines hidden (view full) --- 13 */ 14#include <linux/cpu.h> 15#include <linux/err.h> 16#include <linux/hrtimer.h> 17#include <linux/interrupt.h> 18#include <linux/percpu.h> 19#include <linux/profile.h> 20#include <linux/sched.h> |
21#include <linux/tick.h> | |
22 23#include "tick-internal.h" 24 25/* Limit min_delta to a jiffie */ 26#define MIN_DELTA_LIMIT (NSEC_PER_SEC / HZ) 27 28static int tick_increase_min_delta(struct clock_event_device *dev) 29{ --- 157 unchanged lines hidden --- | 21 22#include "tick-internal.h" 23 24/* Limit min_delta to a jiffie */ 25#define MIN_DELTA_LIMIT (NSEC_PER_SEC / HZ) 26 27static int tick_increase_min_delta(struct clock_event_device *dev) 28{ --- 157 unchanged lines hidden --- |