diff options
Diffstat (limited to 'arch/tile/include/asm/vdso.h')
-rw-r--r-- | arch/tile/include/asm/vdso.h | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/arch/tile/include/asm/vdso.h b/arch/tile/include/asm/vdso.h index d64b0d58a7e9..9b069692153f 100644 --- a/arch/tile/include/asm/vdso.h +++ b/arch/tile/include/asm/vdso.h | |||
@@ -29,13 +29,18 @@ | |||
29 | struct vdso_data { | 29 | struct vdso_data { |
30 | seqcount_t tz_seq; /* Timezone seqlock */ | 30 | seqcount_t tz_seq; /* Timezone seqlock */ |
31 | seqcount_t tb_seq; /* Timebase seqlock */ | 31 | seqcount_t tb_seq; /* Timebase seqlock */ |
32 | __u64 xtime_tod_stamp; /* TOD clock for xtime */ | 32 | __u64 cycle_last; /* TOD clock for xtime */ |
33 | __u64 xtime_clock_sec; /* Kernel time second */ | 33 | __u64 mask; /* Cycle mask */ |
34 | __u64 xtime_clock_nsec; /* Kernel time nanosecond */ | ||
35 | __u64 wtom_clock_sec; /* Wall to monotonic clock second */ | ||
36 | __u64 wtom_clock_nsec; /* Wall to monotonic clock nanosecond */ | ||
37 | __u32 mult; /* Cycle to nanosecond multiplier */ | 34 | __u32 mult; /* Cycle to nanosecond multiplier */ |
38 | __u32 shift; /* Cycle to nanosecond divisor (power of two) */ | 35 | __u32 shift; /* Cycle to nanosecond divisor (power of two) */ |
36 | __u64 wall_time_sec; | ||
37 | __u64 wall_time_snsec; | ||
38 | __u64 monotonic_time_sec; | ||
39 | __u64 monotonic_time_snsec; | ||
40 | __u64 wall_time_coarse_sec; | ||
41 | __u64 wall_time_coarse_nsec; | ||
42 | __u64 monotonic_time_coarse_sec; | ||
43 | __u64 monotonic_time_coarse_nsec; | ||
39 | __u32 tz_minuteswest; /* Minutes west of Greenwich */ | 44 | __u32 tz_minuteswest; /* Minutes west of Greenwich */ |
40 | __u32 tz_dsttime; /* Type of dst correction */ | 45 | __u32 tz_dsttime; /* Type of dst correction */ |
41 | }; | 46 | }; |