diff mbox

[RFC,v2,6/7] create new function: qemu_opt_set_number

Message ID 1348722865-20564-7-git-send-email-wdongxu@linux.vnet.ibm.com
State New
Headers show

Commit Message

Robert Wang Sept. 27, 2012, 5:14 a.m. UTC
Signed-off-by: Dong Xu Wang <wdongxu@linux.vnet.ibm.com>
---
 qemu-option.c |    8 ++++++++
 qemu-option.h |    1 +
 2 files changed, 9 insertions(+), 0 deletions(-)

Comments

Paolo Bonzini Sept. 27, 2012, 11:56 a.m. UTC | #1
Il 27/09/2012 07:14, Dong Xu Wang ha scritto:
> +int qemu_opt_set_number(QemuOpts *opts, const char *name, int64_t val)
> +{
> +    char buffer[1024];
> +    snprintf(buffer, sizeof(buffer), "%" PRId64, val);
> +    return qemu_opt_set(opts, name, buffer);
> +}

This has the same problem as qemu_opt_set_bool after patch 1.

Paolo
diff mbox

Patch

diff --git a/qemu-option.c b/qemu-option.c
index 818408b..2b52576 100644
--- a/qemu-option.c
+++ b/qemu-option.c
@@ -678,6 +678,14 @@  int qemu_opt_set_bool(QemuOpts *opts, const char *name, bool val)
     return qemu_opt_set(opts, name, val ? "on" : "off");
 }
 
+int qemu_opt_set_number(QemuOpts *opts, const char *name, int64_t val)
+{
+    char buffer[1024];
+    snprintf(buffer, sizeof(buffer), "%" PRId64, val);
+    return qemu_opt_set(opts, name, buffer);
+}
+
+
 int qemu_opt_foreach(QemuOpts *opts, qemu_opt_loopfunc func, void *opaque,
                      int abort_on_failure)
 {
diff --git a/qemu-option.h b/qemu-option.h
index b0f8d1e..002dd07 100644
--- a/qemu-option.h
+++ b/qemu-option.h
@@ -126,6 +126,7 @@  int qemu_opt_set(QemuOpts *opts, const char *name, const char *value);
 void qemu_opt_set_err(QemuOpts *opts, const char *name, const char *value,
                       Error **errp);
 int qemu_opt_set_bool(QemuOpts *opts, const char *name, bool val);
+int qemu_opt_set_number(QemuOpts *opts, const char *name, int64_t val);
 typedef int (*qemu_opt_loopfunc)(const char *name, const char *value, void *opaque);
 int qemu_opt_foreach(QemuOpts *opts, qemu_opt_loopfunc func, void *opaque,
                      int abort_on_failure);