From patchwork Thu Apr 8 20:16:34 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [17/22] net: dump: replace qemu_format_nic_info_str by qemu_format_nic_info_dict Date: Thu, 08 Apr 2010 10:16:34 -0000 From: Miguel Di Ciurcio Filho X-Patchwork-Id: 49760 Message-Id: <1270757799-31891-18-git-send-email-miguel.filho@gmail.com> To: qemu-devel@nongnu.org Cc: armbru@redhat.com, lcapitulino@redhat.com Signed-off-by: Miguel Di Ciurcio Filho --- net/dump.c | 8 ++++++-- 1 files changed, 6 insertions(+), 2 deletions(-) diff --git a/net/dump.c b/net/dump.c index 6db7ecf..dea7f7d 100644 --- a/net/dump.c +++ b/net/dump.c @@ -27,6 +27,9 @@ #include "sysemu.h" #include "qemu-error.h" #include "qemu-log.h" +#include "qdict.h" +#include "qstring.h" +#include "qint.h" typedef struct DumpState { VLANClientState nc; @@ -128,8 +131,9 @@ static int net_dump_init(VLANState *vlan, const char *device, nc = qemu_new_net_client(&net_dump_info, vlan, NULL, device, name); - snprintf(nc->info_str, sizeof(nc->info_str), - "dump to %s (len=%d)", filename, len); + nc->info_dict = qdict_new(); + qdict_put(nc->info_dict, "filename", qstring_from_str(filename)); + qdict_put(nc->info_dict, "len", qint_from_int(len)); s = DO_UPCAST(DumpState, nc, nc);