/* * Copyright (C) 2001 Andrea Arcangeli <andrea@suse.de> SuSE * Copyright 2003 Andi Kleen, SuSE Labs. * * Thanks to hpa@transmeta.com for some useful hint. * Special thanks to Ingo Molnar for his early experience with * a different vsyscall implementation for Linux/IA32 and for the name. */ #include <linux/seqlock.h> #include <linux/time.h> #include <linux/timekeeper_internal.h> #include <asm/vvar.h>
void update_vsyscall_tz(void) { if (unlikely(vvar_data == NULL)) return; vvar_data->tz_minuteswest = sys_tz.tz_minuteswest; vvar_data->tz_dsttime = sys_tz.tz_dsttime; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Nagarathnam Muthusamy | 33 | 100.00% | 1 | 100.00% |
Total | 33 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Nagarathnam Muthusamy | 278 | 100.00% | 1 | 100.00% |
Total | 278 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Nagarathnam Muthusamy | 324 | 100.00% | 1 | 100.00% |
Total | 324 | 100.00% | 1 | 100.00% |