[pve-devel] [PATCH] internal snasphot async port to qemu 1.7

Dietmar Maurer dietmar at proxmox.com
Fri Nov 29 09:13:48 CET 2013


> currently hang on
> 
> monitor.c:2960:5: error: expected ‘}’ before ‘{’ token
> monitor.c:2965:5: error: expected ‘}’ before ‘{’ token
> make[1]: *** [monitor.o] Error 1

That is due to missing ',' in '.hx' files

in qmp-command.hx:

    {
        .name       = "query-savevm",
        .args_type  = "",
        .mhandler.cmd_new = qmp_marshal_input_query_savevm,
    }, /* added comma here! */

and in hmp-commands.hx

    {
        .name       = "savevm-end",
        .args_type  = "",
        .params     = "",
        .help       = "Resume VM after snaphot.",
        .mhandler.cmd = hmp_savevm_end,
    }, /* added comma here! */

Does that help?


More information about the pve-devel mailing list