From: Lennart Poettering Date: Thu, 18 Oct 2012 02:12:25 +0000 (+0200) Subject: journal: suggest rotation when fields are not indexed X-Git-Tag: v195~67 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=0598fd4a9548fbe0b642d7ef6eb0ed490ec0ee0f;p=elogind.git journal: suggest rotation when fields are not indexed --- diff --git a/src/journal/journal-file.c b/src/journal/journal-file.c index 43fd4453a..edf8e7dd5 100644 --- a/src/journal/journal-file.c +++ b/src/journal/journal-file.c @@ -2753,6 +2753,13 @@ bool journal_file_rotate_suggested(JournalFile *f, usec_t max_file_usec) { return true; } + /* Are the data objects properly indexed by field objects? */ + if (JOURNAL_HEADER_CONTAINS(f->header, n_data) && + JOURNAL_HEADER_CONTAINS(f->header, n_fields) && + le64toh(f->header->n_data) > 0 && + le64toh(f->header->n_fields) == 0) + return true; + if (max_file_usec > 0) { usec_t t, h;