summaryrefslogtreecommitdiffstats
path: root/os-posix.c
diff options
context:
space:
mode:
authorSatoru Moriya2013-04-19 16:42:06 +0200
committerAnthony Liguori2013-04-22 15:52:23 +0200
commit888a6bc63c94ef34026399117ebf6a1fa0e7a29a (patch)
tree9a7eaa7b65500baf6099eb9118c92aa220c3b4f1 /os-posix.c
parentqemu-char: do not operate on sources from finalize callbacks (diff)
downloadqemu-888a6bc63c94ef34026399117ebf6a1fa0e7a29a.tar.gz
qemu-888a6bc63c94ef34026399117ebf6a1fa0e7a29a.tar.xz
qemu-888a6bc63c94ef34026399117ebf6a1fa0e7a29a.zip
Add option to mlock qemu and guest memory
In certain scenario, latency induced by paging is significant and memory locking is needed. Also, in the scenario with untrusted guests, latency improvement due to mlock is desired. This patch introduces a following new option to mlock guest and qemu memory: -realtime mlock=on|off Signed-off-by: Satoru Moriya <satoru.moriya@hds.com> Reviewed-by: Paolo Bonzini <pbonzini@redhat.com> Reviewed-by: Marcelo Tosatti <mtosatti@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Message-id: 1366382526-26146-1-git-send-email-pbonzini@redhat.com Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'os-posix.c')
-rw-r--r--os-posix.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/os-posix.c b/os-posix.c
index 5c64518902..d39261d849 100644
--- a/os-posix.c
+++ b/os-posix.c
@@ -363,3 +363,15 @@ bool is_daemonized(void)
{
return daemonize;
}
+
+int os_mlock(void)
+{
+ int ret = 0;
+
+ ret = mlockall(MCL_CURRENT | MCL_FUTURE);
+ if (ret < 0) {
+ perror("mlockall");
+ }
+
+ return ret;
+}