diff options
Diffstat (limited to 'arch/s390/kernel/time.c')
| -rw-r--r-- | arch/s390/kernel/time.c | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/s390/kernel/time.c b/arch/s390/kernel/time.c index aa2483e460f..d906bf19c14 100644 --- a/arch/s390/kernel/time.c +++ b/arch/s390/kernel/time.c @@ -36,6 +36,7 @@  #include <linux/notifier.h>  #include <linux/clocksource.h>  #include <linux/clockchips.h> +#include <linux/gfp.h>  #include <asm/uaccess.h>  #include <asm/delay.h>  #include <asm/s390_ext.h> @@ -220,6 +221,7 @@ void update_vsyscall(struct timespec *wall_time, struct clocksource *clock,  	vdso_data->xtime_clock_nsec = wall_time->tv_nsec;  	vdso_data->wtom_clock_sec = wall_to_monotonic.tv_sec;  	vdso_data->wtom_clock_nsec = wall_to_monotonic.tv_nsec; +	vdso_data->ntp_mult = mult;  	smp_wmb();  	++vdso_data->tb_update_count;  }  |