qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Anthony Liguori <aliguori@us.ibm.com>
To: qemu-devel@nongnu.org
Cc: Anthony Liguori <aliguori@us.ibm.com>,
	Markus Armbruster <armbru@redhat.com>,
	Luiz Capitulino <lcapitulino@redhat.com>
Subject: [Qemu-devel] [PATCH 2/2] qemu-config: convert all QemuOpts to use dashes instead of underscores
Date: Wed, 25 Jul 2012 11:25:43 -0500	[thread overview]
Message-ID: <1343233543-18561-3-git-send-email-aliguori@us.ibm.com> (raw)
In-Reply-To: <1343233543-18561-1-git-send-email-aliguori@us.ibm.com>

Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
---
 qemu-config.c |   38 +++++++++++++++++++-------------------
 1 files changed, 19 insertions(+), 19 deletions(-)

diff --git a/qemu-config.c b/qemu-config.c
index 5c3296b..1616547 100644
--- a/qemu-config.c
+++ b/qemu-config.c
@@ -91,11 +91,11 @@ static QemuOptsList qemu_drive_opts = {
             .type = QEMU_OPT_NUMBER,
             .help = "limit total I/O operations per second",
         },{
-            .name = "iops_rd",
+            .name = "iops-rd",
             .type = QEMU_OPT_NUMBER,
             .help = "limit read operations per second",
         },{
-            .name = "iops_wr",
+            .name = "iops-wr",
             .type = QEMU_OPT_NUMBER,
             .help = "limit write operations per second",
         },{
@@ -103,11 +103,11 @@ static QemuOptsList qemu_drive_opts = {
             .type = QEMU_OPT_NUMBER,
             .help = "limit total bytes per second",
         },{
-            .name = "bps_rd",
+            .name = "bps-rd",
             .type = QEMU_OPT_NUMBER,
             .help = "limit read bytes per second",
         },{
-            .name = "bps_wr",
+            .name = "bps-wr",
             .type = QEMU_OPT_NUMBER,
             .help = "limit write bytes per second",
         },{
@@ -230,7 +230,7 @@ QemuOptsList qemu_fsdev_opts = {
             .name = "path",
             .type = QEMU_OPT_STRING,
         }, {
-            .name = "security_model",
+            .name = "security-model",
             .type = QEMU_OPT_STRING,
         }, {
             .name = "writeout",
@@ -243,7 +243,7 @@ QemuOptsList qemu_fsdev_opts = {
             .name = "socket",
             .type = QEMU_OPT_STRING,
         }, {
-            .name = "sock_fd",
+            .name = "sock-fd",
             .type = QEMU_OPT_NUMBER,
         },
 
@@ -263,10 +263,10 @@ QemuOptsList qemu_virtfs_opts = {
             .name = "path",
             .type = QEMU_OPT_STRING,
         }, {
-            .name = "mount_tag",
+            .name = "mount-tag",
             .type = QEMU_OPT_STRING,
         }, {
-            .name = "security_model",
+            .name = "security-model",
             .type = QEMU_OPT_STRING,
         }, {
             .name = "writeout",
@@ -278,7 +278,7 @@ QemuOptsList qemu_virtfs_opts = {
             .name = "socket",
             .type = QEMU_OPT_STRING,
         }, {
-            .name = "sock_fd",
+            .name = "sock-fd",
             .type = QEMU_OPT_NUMBER,
         },
 
@@ -423,25 +423,25 @@ static QemuOptsList qemu_cpudef_opts = {
             .name = "stepping",
             .type = QEMU_OPT_NUMBER,
         },{
-            .name = "feature_edx",      /* cpuid 0000_0001.edx */
+            .name = "feature-edx",
             .type = QEMU_OPT_STRING,
         },{
-            .name = "feature_ecx",      /* cpuid 0000_0001.ecx */
+            .name = "feature-ecx",
             .type = QEMU_OPT_STRING,
         },{
-            .name = "extfeature_edx",   /* cpuid 8000_0001.edx */
+            .name = "extfeature-edx",
             .type = QEMU_OPT_STRING,
         },{
-            .name = "extfeature_ecx",   /* cpuid 8000_0001.ecx */
+            .name = "extfeature-ecx",
             .type = QEMU_OPT_STRING,
         },{
             .name = "xlevel",
             .type = QEMU_OPT_NUMBER,
         },{
-            .name = "model_id",
+            .name = "model-id",
             .type = QEMU_OPT_STRING,
         },{
-            .name = "vendor_override",
+            .name = "vendor-override",
             .type = QEMU_OPT_NUMBER,
         },
         { /* end of list */ }
@@ -560,11 +560,11 @@ static QemuOptsList qemu_machine_opts = {
             .type = QEMU_OPT_STRING,
             .help = "accelerator list",
         }, {
-            .name = "kernel_irqchip",
+            .name = "kernel-irqchip",
             .type = QEMU_OPT_BOOL,
             .help = "use KVM in-kernel irqchip",
         }, {
-            .name = "kvm_shadow_mem",
+            .name = "kvm_shadow-mem",
             .type = QEMU_OPT_SIZE,
             .help = "KVM shadow MMU size",
         }, {
@@ -588,11 +588,11 @@ static QemuOptsList qemu_machine_opts = {
             .type = QEMU_OPT_STRING,
             .help = "Dump current dtb to a file and quit",
         }, {
-            .name = "phandle_start",
+            .name = "phandle-start",
             .type = QEMU_OPT_STRING,
             .help = "The first phandle ID we may generate dynamically",
         }, {
-            .name = "dt_compatible",
+            .name = "dt-compatible",
             .type = QEMU_OPT_STRING,
             .help = "Overrides the \"compatible\" property of the dt root node",
         },
-- 
1.7.5.4

  parent reply	other threads:[~2012-07-25 16:28 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-07-25 16:25 [Qemu-devel] [PATCH 0/2] Allow '-' or '_' for all QemuOpts Anthony Liguori
2012-07-25 16:25 ` [Qemu-devel] [PATCH 1/2] qemu-opts: introduce a function to compare option names Anthony Liguori
2012-07-25 16:45   ` Eric Blake
2012-07-25 16:46     ` Eric Blake
2012-07-25 17:34       ` Anthony Liguori
2012-07-25 16:53   ` Peter Maydell
2012-07-25 17:33     ` Anthony Liguori
2012-07-25 18:31       ` Peter Maydell
2012-07-27  7:44   ` Markus Armbruster
2012-07-27 11:14     ` Peter Maydell
2012-07-25 16:25 ` Anthony Liguori [this message]
2012-07-25 17:32   ` [Qemu-devel] [PATCH 2/2] qemu-config: convert all QemuOpts to use dashes instead of underscores Luiz Capitulino
2012-07-25 18:20     ` Anthony Liguori
2012-07-25 18:58       ` Peter Maydell
2012-07-25 19:02         ` Luiz Capitulino
2012-07-25 19:02           ` Peter Maydell
2012-07-25 19:09             ` [Qemu-devel] Changing qemu's -help output Luiz Capitulino
2012-07-25 21:21               ` [Qemu-devel] [libvirt] " Eric Blake
2012-07-27  7:45       ` [Qemu-devel] [PATCH 2/2] qemu-config: convert all QemuOpts to use dashes instead of underscores Markus Armbruster
2012-07-27 11:10   ` Andreas Färber
2012-07-25 17:34 ` [Qemu-devel] [PATCH 0/2] Allow '-' or '_' for all QemuOpts Luiz Capitulino
2012-07-27  8:39 ` Markus Armbruster

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1343233543-18561-3-git-send-email-aliguori@us.ibm.com \
    --to=aliguori@us.ibm.com \
    --cc=armbru@redhat.com \
    --cc=lcapitulino@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).