From: Prasad Singamsetty <[email protected]> qemu command fails to process -overcommit option. Add the missing call to qemu_add_opts() in vl.c.
Signed-off-by: Prasad Singamsetty <[email protected]> Message-Id: <[email protected]> Reviewed-by: Mark Kanda <[email protected]> Signed-off-by: Paolo Bonzini <[email protected]> --- vl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/vl.c b/vl.c index d2af8ed..5ba06ad 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); -- 1.8.3.1
