From: Prasad Singamsetty Date: Wed, 15 Aug 2018 17:57:04 +0000 (-0400) Subject: kvm: add call to qemu_add_opts() for -overcommit option X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=1fdd4748711a62d863744f42b958472509a6f202;p=qemu.git kvm: add call to qemu_add_opts() for -overcommit option qemu command fails to process -overcommit option. Add the missing call to qemu_add_opts() in vl.c. Signed-off-by: Prasad Singamsetty Message-Id: <20180815175704.105902-1-prasad.singamsetty@oracle.com> Reviewed-by: Mark Kanda Signed-off-by: Paolo Bonzini --- diff --git a/vl.c b/vl.c index d2af8edcf1..5ba06adf78 100644 --- a/vl.c +++ b/vl.c @@ -2987,6 +2987,7 @@ int main(int argc, char **argv, char **envp) qemu_add_opts(&qemu_object_opts); qemu_add_opts(&qemu_tpmdev_opts); qemu_add_opts(&qemu_realtime_opts); + qemu_add_opts(&qemu_overcommit_opts); qemu_add_opts(&qemu_msg_opts); qemu_add_opts(&qemu_name_opts); qemu_add_opts(&qemu_numa_opts);