From c7884da9e44b6578e64706e1826af5fb1c25a64e Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Fri, 14 Jul 2017 10:24:46 -0700 Subject: [PATCH] journal: use context_attach_window() in add_mmap() (#6339) Instead of context_detach_window() and a manual attach of the new window, simply call context_attach_window() which performs the detach first if appropriate. --- src/journal/mmap-cache.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/journal/mmap-cache.c b/src/journal/mmap-cache.c index 5dfda73c56a..89f4a1df64c 100644 --- a/src/journal/mmap-cache.c +++ b/src/journal/mmap-cache.c @@ -503,9 +503,7 @@ static int add_mmap( if (!w) goto outofmem; - context_detach_window(c); - c->window = w; - LIST_PREPEND(by_window, w->contexts, c); + context_attach_window(c, w); *ret = (uint8_t*) w->ptr + (offset - w->offset); return 1; -- 2.47.3