From fd8ee359a014916ac62ae2b58f6736ccb48c6d4e Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 4 Jan 2012 18:32:50 +0100 Subject: [PATCH] journal: it's not a problem if the realtime jumps, hence don't ensure monotonicity of realtime for entries we write --- src/journal/journal-file.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/journal/journal-file.c b/src/journal/journal-file.c index 95a5aafc9..4de1daf6a 100644 --- a/src/journal/journal-file.c +++ b/src/journal/journal-file.c @@ -1016,9 +1016,6 @@ int journal_file_append_entry(JournalFile *f, const dual_timestamp *ts, const st ts->monotonic < le64toh(f->header->tail_entry_monotonic)) return -EINVAL; - if (ts->realtime < le64toh(f->header->tail_entry_realtime)) - return -EINVAL; - items = alloca(sizeof(EntryItem) * n_iovec); for (i = 0; i < n_iovec; i++) { -- 2.30.2