linux-4.9.37/arch/x86/include/asm/vgtod.h
用于获取系统时间的一个重要结构体,主要用于实现虚拟调用(vsyscall)功能。vsyscall是一种特殊的系统调用机制,允许用户空间程序直接访问内核中的时间函数,而不需要通过完整的系统调用接口。
struct vsyscall_gtod_data {
unsigned seq;
int vclock_mode;
cycle_t cycle_last;
cycle_t mask;
u32 mult;
u32 shift;
/* open coded 'struct timespec' */
u64 wall_time_snsec;
gtod_long_t wall_time_sec;
gtod_long_t monotonic_time_sec;
u64 monotonic_time_snsec;
gtod_long_t wall_time_coarse_sec;
gtod_long_t wall_time_coarse_nsec;
gtod_long_t monotonic_time_coarse_sec;
gtod_long_t monotonic_time_coarse_nsec;
int tz_minuteswest;
int tz_dsttime;
};