diff options
| author | Daniil Tatianin <d-tatianin@yandex-team.ru> | 2025-02-12 17:39:20 +0300 |
|---|---|---|
| committer | Peter Xu <peterx@redhat.com> | 2025-02-12 11:36:13 -0500 |
| commit | 13057e064a3edae7abf9ca2c207cdf48b82c5aad (patch) | |
| tree | 1e7c4af97ad7f9e543c651aea8601a71d2f2d99d /include/system/system.h | |
| parent | cd2e472e54a49c13b0a728cdda7c10c50421e23d (diff) | |
| download | focaccia-qemu-13057e064a3edae7abf9ca2c207cdf48b82c5aad.tar.gz focaccia-qemu-13057e064a3edae7abf9ca2c207cdf48b82c5aad.zip | |
overcommit: introduce mem-lock=on-fault
Locking the memory without MCL_ONFAULT instantly prefaults any mmaped anonymous memory with a write-fault, which introduces a lot of extra overhead in terms of memory usage when all you want to do is to prevent kcompactd from migrating and compacting QEMU pages. Add an option to only lock pages lazily as they're faulted by the process by using MCL_ONFAULT if asked. Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru> Reviewed-by: Peter Xu <peterx@redhat.com> Signed-off-by: Daniil Tatianin <d-tatianin@yandex-team.ru> Link: https://lore.kernel.org/r/20250212143920.1269754-5-d-tatianin@yandex-team.ru Signed-off-by: Peter Xu <peterx@redhat.com>
Diffstat (limited to 'include/system/system.h')
| -rw-r--r-- | include/system/system.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/system/system.h b/include/system/system.h index dc7628357a..a7effe7dfd 100644 --- a/include/system/system.h +++ b/include/system/system.h @@ -50,9 +50,11 @@ extern QEMUClockType rtc_clock; typedef enum { MLOCK_OFF = 0, MLOCK_ON, + MLOCK_ON_FAULT, } MlockState; bool should_mlock(MlockState); +bool is_mlock_on_fault(MlockState); extern MlockState mlock_state; |