Commit edaacca0 authored by marko's avatar marko

branches/zip: buf_buddy_relocate(): Split some lines differently on

popular demand.
parent 76c69c36
...@@ -178,12 +178,11 @@ buf_buddy_relocate( ...@@ -178,12 +178,11 @@ buf_buddy_relocate(
UT_LIST_REMOVE(LRU, buf_pool->LRU, bpage); UT_LIST_REMOVE(LRU, buf_pool->LRU, bpage);
if (b) { if (b) {
UT_LIST_INSERT_AFTER(LRU, UT_LIST_INSERT_AFTER(
buf_pool->LRU, LRU, buf_pool->LRU, b, dpage);
b, dpage);
} else { } else {
UT_LIST_ADD_FIRST(LRU, buf_pool->LRU, UT_LIST_ADD_FIRST(
dpage); LRU, buf_pool->LRU, dpage);
} }
/* relocate buf_pool->zip_clean */ /* relocate buf_pool->zip_clean */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment