Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 117614
b: refs/heads/master
c: 704af52
h: refs/heads/master
v: v3
  • Loading branch information
Arjan van de Ven committed Sep 7, 2008
1 parent 94ef993 commit 48752b0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4ce105d30e08fb8a1783c55a0e48aa3fa200c455
refs/heads/master: 704af52bd13a5d9f3c60c496c68e752fafdfb434
4 changes: 3 additions & 1 deletion trunk/kernel/time/timer_list.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,10 @@ print_timer(struct seq_file *m, struct hrtimer *timer, int idx, u64 now)
SEQ_printf(m, ", %s/%d", tmp, timer->start_pid);
#endif
SEQ_printf(m, "\n");
SEQ_printf(m, " # expires at %Lu nsecs [in %Ld nsecs]\n",
SEQ_printf(m, " # expires at %Lu-%Lu nsecs [in %Ld to %Ld nsecs]\n",
(unsigned long long)ktime_to_ns(hrtimer_get_softexpires(timer)),
(unsigned long long)ktime_to_ns(hrtimer_get_expires(timer)),
(long long)(ktime_to_ns(hrtimer_get_softexpires(timer)) - now),
(long long)(ktime_to_ns(hrtimer_get_expires(timer)) - now));
}

Expand Down

0 comments on commit 48752b0

Please sign in to comment.