Round up to page boundary. */
| 50 | |
| 51 | /* Round up to page boundary. */ |
| 52 | static size_t round_to_page(size_t size) { |
| 53 | size_t ps = page_size(); |
| 54 | return (size + ps - SKIP_ONE) & ~(ps - SKIP_ONE); |
| 55 | } |
| 56 | |
| 57 | /* ── Pressure logging ──────────────────────────────────────────── */ |
| 58 |
no test coverage detected