Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-04-18 | move _cleanup_ attribute in front of the type | Harald Hoyer | |
http://lists.freedesktop.org/archives/systemd-devel/2013-April/010510.html | |||
2013-04-16 | macro: rework how we define cleanup macros | Lennart Poettering | |
There's now a generic _cleanup_ macro with an argument. The macros for specific types are now defined using this macro, and in the header files where they belong. All cleanup handlers are now inline functions. | |||
2013-03-18 | journal,shared: add _cleanup_journal_close_ | Zbigniew Jędrzejewski-Szmek | |
2012-10-26 | journal: introduce entry array chain cache | Lennart Poettering | |
When traversing entry array chains for a bisection or for retrieving an item by index we previously always started at the beginning of the chain. Since we tend to look at the same chains repeatedly, let's cache where we have been the last time, and maybe we can skip ahead with this the next time. This turns most bisections and index lookups from O(log(n)*log(n)) into O(log(n)). More importantly however, we seek around on disk much less, which is good to reduce buffer cache and seek times on rotational disks. |