mirror of https://github.com/dynup/kpatch
14 lines
423 B
Diff
14 lines
423 B
Diff
diff -Nupr src.orig/kernel/time/timekeeping.c src/kernel/time/timekeeping.c
|
|
--- src.orig/kernel/time/timekeeping.c 2020-09-03 11:48:30.726726839 -0400
|
|
+++ src/kernel/time/timekeeping.c 2020-09-03 11:49:23.433891731 -0400
|
|
@@ -852,6 +852,9 @@ void do_gettimeofday(struct timeval *tv)
|
|
{
|
|
struct timespec64 now;
|
|
|
|
+ if (!tv)
|
|
+ return;
|
|
+
|
|
getnstimeofday64(&now);
|
|
tv->tv_sec = now.tv_sec;
|
|
tv->tv_usec = now.tv_nsec/1000;
|