From 2b220025993e76d4116781ca91a4fabc5ad9c722 Mon Sep 17 00:00:00 2001 From: Lei Li Date: Tue, 21 May 2013 18:27:59 +0800 Subject: chardev: Get filename for new qapi backend 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 Message-id: 1369132079-11377-3-git-send-email-lilei@linux.vnet.ibm.com Signed-off-by: Anthony Liguori --- qemu-char.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'qemu-char.c') diff --git a/qemu-char.c b/qemu-char.c index f825294a9b..4f8382e540 100644 --- a/qemu-char.c +++ b/qemu-char.c @@ -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); -- cgit v1.2.1