diff options
Diffstat (limited to 'kernel/itimer.c')
-rw-r--r-- | kernel/itimer.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/kernel/itimer.c b/kernel/itimer.c index 8078a32d3b10..b03451ede528 100644 --- a/kernel/itimer.c +++ b/kernel/itimer.c | |||
@@ -12,6 +12,7 @@ | |||
12 | #include <linux/time.h> | 12 | #include <linux/time.h> |
13 | #include <linux/posix-timers.h> | 13 | #include <linux/posix-timers.h> |
14 | #include <linux/hrtimer.h> | 14 | #include <linux/hrtimer.h> |
15 | #include <trace/events/timer.h> | ||
15 | 16 | ||
16 | #include <asm/uaccess.h> | 17 | #include <asm/uaccess.h> |
17 | 18 | ||
@@ -122,6 +123,7 @@ enum hrtimer_restart it_real_fn(struct hrtimer *timer) | |||
122 | struct signal_struct *sig = | 123 | struct signal_struct *sig = |
123 | container_of(timer, struct signal_struct, real_timer); | 124 | container_of(timer, struct signal_struct, real_timer); |
124 | 125 | ||
126 | trace_itimer_expire(ITIMER_REAL, sig->leader_pid, 0); | ||
125 | kill_pid_info(SIGALRM, SEND_SIG_PRIV, sig->leader_pid); | 127 | kill_pid_info(SIGALRM, SEND_SIG_PRIV, sig->leader_pid); |
126 | 128 | ||
127 | return HRTIMER_NORESTART; | 129 | return HRTIMER_NORESTART; |
@@ -166,6 +168,8 @@ static void set_cpu_itimer(struct task_struct *tsk, unsigned int clock_id, | |||
166 | } | 168 | } |
167 | it->expires = nval; | 169 | it->expires = nval; |
168 | it->incr = ninterval; | 170 | it->incr = ninterval; |
171 | trace_itimer_state(clock_id == CPUCLOCK_VIRT ? | ||
172 | ITIMER_VIRTUAL : ITIMER_PROF, value, nval); | ||
169 | 173 | ||
170 | spin_unlock_irq(&tsk->sighand->siglock); | 174 | spin_unlock_irq(&tsk->sighand->siglock); |
171 | 175 | ||
@@ -217,6 +221,7 @@ again: | |||
217 | } else | 221 | } else |
218 | tsk->signal->it_real_incr.tv64 = 0; | 222 | tsk->signal->it_real_incr.tv64 = 0; |
219 | 223 | ||
224 | trace_itimer_state(ITIMER_REAL, value, 0); | ||
220 | spin_unlock_irq(&tsk->sighand->siglock); | 225 | spin_unlock_irq(&tsk->sighand->siglock); |
221 | break; | 226 | break; |
222 | case ITIMER_VIRTUAL: | 227 | case ITIMER_VIRTUAL: |