1
0
mirror of https://passt.top/passt synced 2024-09-08 00:34:50 +00:00

log: Fetch log times with CLOCK_MONOTONIC, not CLOCK_REALTIME

We report relative timestamps in logs, so we want to avoid jumps in
the system time.

Suggested-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
Stefano Brivio 2024-07-25 17:58:44 +02:00
parent e5c37ba0f4
commit 77c092ee5e
2 changed files with 3 additions and 3 deletions

4
log.c
View File

@ -68,7 +68,7 @@ void vlogmsg(bool newline, int pri, const char *format, va_list ap)
struct timespec tp;
if (debug_print) {
clock_gettime(CLOCK_REALTIME, &tp);
clock_gettime(CLOCK_MONOTONIC, &tp);
fprintf(stderr, logtime_fmt_and_arg(&tp));
fprintf(stderr, ": ");
}
@ -382,7 +382,7 @@ void logfile_write(bool newline, int pri, const char *format, va_list ap)
char buf[BUFSIZ];
int n;
if (clock_gettime(CLOCK_REALTIME, &now))
if (clock_gettime(CLOCK_MONOTONIC, &now))
return;
n = snprintf(buf, BUFSIZ, logtime_fmt_and_arg(&now));

View File

@ -207,7 +207,7 @@ int main(int argc, char **argv)
struct timespec now;
struct sigaction sa;
clock_gettime(CLOCK_REALTIME, &log_start);
clock_gettime(CLOCK_MONOTONIC, &log_start);
arch_avx2_exec(argv);