Lines Matching refs:fsyscall_gtod_data
36 struct fsyscall_gtod_data_t fsyscall_gtod_data; variable
402 write_seqcount_begin(&fsyscall_gtod_data.seq); in update_vsyscall_old()
405 fsyscall_gtod_data.clk_mask = c->mask; in update_vsyscall_old()
406 fsyscall_gtod_data.clk_mult = mult; in update_vsyscall_old()
407 fsyscall_gtod_data.clk_shift = c->shift; in update_vsyscall_old()
408 fsyscall_gtod_data.clk_fsys_mmio = c->archdata.fsys_mmio; in update_vsyscall_old()
409 fsyscall_gtod_data.clk_cycle_last = cycle_last; in update_vsyscall_old()
412 fsyscall_gtod_data.wall_time.tv_sec = wall->tv_sec; in update_vsyscall_old()
413 fsyscall_gtod_data.wall_time.tv_nsec = wall->tv_nsec; in update_vsyscall_old()
414 fsyscall_gtod_data.monotonic_time.tv_sec = wtm->tv_sec in update_vsyscall_old()
416 fsyscall_gtod_data.monotonic_time.tv_nsec = wtm->tv_nsec in update_vsyscall_old()
420 while (fsyscall_gtod_data.monotonic_time.tv_nsec >= NSEC_PER_SEC) { in update_vsyscall_old()
421 fsyscall_gtod_data.monotonic_time.tv_nsec -= NSEC_PER_SEC; in update_vsyscall_old()
422 fsyscall_gtod_data.monotonic_time.tv_sec++; in update_vsyscall_old()
425 write_seqcount_end(&fsyscall_gtod_data.seq); in update_vsyscall_old()