summaryrefslogtreecommitdiff
path: root/src/journal
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2013-05-07 21:07:39 -0400
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2013-05-08 21:34:20 -0400
commit6866780115a7c0af034f287d965f4bf6b02c1e6d (patch)
tree22fb668edf9eee9b99d51172c1abfbe4494ead8e /src/journal
parentfa13e4a78487971a5093db3fdc61cad224d47c16 (diff)
Rearrange a few fields to reduce holes
Diffstat (limited to 'src/journal')
-rw-r--r--src/journal/journal-internal.h9
-rw-r--r--src/journal/mmap-cache.c5
2 files changed, 7 insertions, 7 deletions
diff --git a/src/journal/journal-internal.h b/src/journal/journal-internal.h
index eea56e4713..c7e585d810 100644
--- a/src/journal/journal-internal.h
+++ b/src/journal/journal-internal.h
@@ -74,19 +74,20 @@ typedef enum LocationType {
struct Location {
LocationType type;
+ bool seqnum_set;
+ bool realtime_set;
+ bool monotonic_set;
+ bool xor_hash_set;
+
uint64_t seqnum;
sd_id128_t seqnum_id;
- bool seqnum_set;
uint64_t realtime;
- bool realtime_set;
uint64_t monotonic;
sd_id128_t boot_id;
- bool monotonic_set;
uint64_t xor_hash;
- bool xor_hash_set;
};
struct Directory {
diff --git a/src/journal/mmap-cache.c b/src/journal/mmap-cache.c
index 54bf1148e1..767f555526 100644
--- a/src/journal/mmap-cache.c
+++ b/src/journal/mmap-cache.c
@@ -41,9 +41,9 @@ struct Window {
bool keep_always;
bool in_unused;
+ int prot;
void *ptr;
uint64_t offset;
- int prot;
size_t size;
FileDescriptor *fd;
@@ -70,12 +70,11 @@ struct FileDescriptor {
struct MMapCache {
int n_ref;
+ unsigned n_windows;
Hashmap *fds;
Hashmap *contexts;
- unsigned n_windows;
-
LIST_HEAD(Window, unused);
Window *last_unused;
};