clocksource: Use a plain u64 instead of cycle_t
[linux-block.git] / arch / ia64 / kernel / fsyscall_gtod_data.h
CommitLineData
0aa366f3
TL
1/*
2 * (c) Copyright 2007 Hewlett-Packard Development Company, L.P.
3 * Contributed by Peter Keilty <peter.keilty@hp.com>
4 *
5 * fsyscall gettimeofday data
6 */
7
8struct fsyscall_gtod_data_t {
74a622be 9 seqcount_t seq;
0aa366f3
TL
10 struct timespec wall_time;
11 struct timespec monotonic_time;
a5a1d1c2 12 u64 clk_mask;
0aa366f3
TL
13 u32 clk_mult;
14 u32 clk_shift;
15 void *clk_fsys_mmio;
a5a1d1c2 16 u64 clk_cycle_last;
acffc84a 17} ____cacheline_aligned;
0aa366f3
TL
18
19struct itc_jitter_data_t {
20 int itc_jitter;
a5a1d1c2 21 u64 itc_lastcycle;
acffc84a 22} ____cacheline_aligned;
0aa366f3 23