]> Git Repo - qemu.git/commitdiff
chardev: Get filename for new qapi backend
authorLei Li <[email protected]>
Tue, 21 May 2013 10:27:59 +0000 (18:27 +0800)
committerAnthony Liguori <[email protected]>
Wed, 22 May 2013 12:40:10 +0000 (07:40 -0500)
This patch sets the filename when the new qapi backend
init from opts.

The previous patch and discussions as link below:

http://patchwork.ozlabs.org/patch/243896/

If anyone who have better idea to fix this please let
me know your suggestions.

Signed-off-by: Lei Li <[email protected]>
Message-id: 1369132079[email protected]
Signed-off-by: Anthony Liguori <[email protected]>
qemu-char.c

index f825294a9b2305016fd4e95b1aa210407698ecdc..4f8382e540f72b7f28321d33797d6cea506e08fc 100644 (file)
@@ -3276,6 +3276,7 @@ CharDriverState *qemu_chr_new_from_opts(QemuOpts *opts,
         ChardevReturn *ret = NULL;
         const char *id = qemu_opts_id(opts);
         const char *bid = NULL;
+        char *filename = g_strdup(qemu_opt_get(opts, "backend"));
 
         if (qemu_opt_get_bool(opts, "mux", 0)) {
             bid = g_strdup_printf("%s-base", id);
@@ -3308,6 +3309,7 @@ CharDriverState *qemu_chr_new_from_opts(QemuOpts *opts,
         }
 
         chr = qemu_chr_find(id);
+        chr->filename = filename;
 
     qapi_out:
         qapi_free_ChardevBackend(backend);
This page took 0.029162 seconds and 4 git commands to generate.