Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 175477
b: refs/heads/master
c: e9c0748
h: refs/heads/master
i:
  175475: 6cc9914
v: v3
  • Loading branch information
Thomas Gleixner committed Dec 10, 2009
1 parent 9faf867 commit 46b8ff3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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: 5f201907dfe4ad42c44006ddfcec00ed12e59497
refs/heads/master: e9c0748b687aa70179a9e6d8ffc24b2874fe350b
8 changes: 4 additions & 4 deletions trunk/include/trace/events/timer.h
Original file line number Diff line number Diff line change
Expand Up @@ -301,8 +301,8 @@ TRACE_EVENT(itimer_state,
__entry->interval_usec = value->it_interval.tv_usec;
),

TP_printk("which=%d expires=%lu it_value=%lu.%lu it_interval=%lu.%lu",
__entry->which, __entry->expires,
TP_printk("which=%d expires=%llu it_value=%ld.%ld it_interval=%ld.%ld",
__entry->which, (unsigned long long)__entry->expires,
__entry->value_sec, __entry->value_usec,
__entry->interval_sec, __entry->interval_usec)
);
Expand Down Expand Up @@ -331,8 +331,8 @@ TRACE_EVENT(itimer_expire,
__entry->pid = pid_nr(pid);
),

TP_printk("which=%d pid=%d now=%lu", __entry->which,
(int) __entry->pid, __entry->now)
TP_printk("which=%d pid=%d now=%llu", __entry->which,
(int) __entry->pid, (unsigned long long)__entry->now)
);

#endif /* _TRACE_TIMER_H */
Expand Down

0 comments on commit 46b8ff3

Please sign in to comment.