fsyscall_gtod_data.h 497 B

1234567891011121314151617181920212223
  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. struct fsyscall_gtod_data_t {
  8. seqcount_t seq;
  9. struct timespec wall_time;
  10. struct timespec monotonic_time;
  11. cycle_t clk_mask;
  12. u32 clk_mult;
  13. u32 clk_shift;
  14. void *clk_fsys_mmio;
  15. cycle_t clk_cycle_last;
  16. } ____cacheline_aligned;
  17. struct itc_jitter_data_t {
  18. int itc_jitter;
  19. cycle_t itc_lastcycle;
  20. } ____cacheline_aligned;