qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH v2 10/14] cmdline: reindent numa_add


From: Paolo Bonzini
Subject: [Qemu-devel] [PATCH v2 10/14] cmdline: reindent numa_add
Date: Wed, 11 Apr 2012 23:34:37 +0200

Signed-off-by: Paolo Bonzini <address@hidden>
---
 vl.c |   72 +++++++++++++++++++++++++++++++++---------------------------------
 1 files changed, 36 insertions(+), 36 deletions(-)

diff --git a/vl.c b/vl.c
index b592ea7..9e4cf77 100644
--- a/vl.c
+++ b/vl.c
@@ -943,49 +943,49 @@ static void numa_add(const char *optarg)
     int nodenr;
 
     optarg = get_opt_name(option, 128, optarg, ',') + 1;
-    if (!strcmp(option, "node")) {
-        if (get_param_value(option, 128, "nodeid", optarg) == 0) {
-            nodenr = nb_numa_nodes;
-        } else {
-            nodenr = strtoull(option, NULL, 10);
-        }
+    if (strcmp(option, "node")) {
+        return;
+    }
+    if (get_param_value(option, 128, "nodeid", optarg) == 0) {
+        nodenr = nb_numa_nodes;
+    } else {
+        nodenr = strtoull(option, NULL, 10);
+    }
 
-        if (get_param_value(option, 128, "mem", optarg) == 0) {
-            node_mem[nodenr] = 0;
-        } else {
-            int64_t sval;
-            sval = strtosz(option, &endptr);
-            if (sval < 0 || *endptr) {
-                fprintf(stderr, "qemu: invalid numa mem size: %s\n", optarg);
-                exit(1);
-            }
-            node_mem[nodenr] = sval;
+    if (get_param_value(option, 128, "mem", optarg) == 0) {
+        node_mem[nodenr] = 0;
+    } else {
+        int64_t sval;
+        sval = strtosz(option, &endptr);
+        if (sval < 0 || *endptr) {
+            fprintf(stderr, "qemu: invalid numa mem size: %s\n", optarg);
+            exit(1);
         }
-        if (get_param_value(option, 128, "cpus", optarg) == 0) {
-            node_cpumask[nodenr] = 0;
+        node_mem[nodenr] = sval;
+    }
+    if (get_param_value(option, 128, "cpus", optarg) == 0) {
+        node_cpumask[nodenr] = 0;
+    } else {
+        value = strtoull(option, &endptr, 10);
+        if (value >= 64) {
+            value = 63;
+            fprintf(stderr, "only 64 CPUs in NUMA mode supported.\n");
         } else {
-            value = strtoull(option, &endptr, 10);
-            if (value >= 64) {
-                value = 63;
-                fprintf(stderr, "only 64 CPUs in NUMA mode supported.\n");
-            } else {
-                if (*endptr == '-') {
-                    endvalue = strtoull(endptr+1, &endptr, 10);
-                    if (endvalue >= 63) {
-                        endvalue = 62;
-                        fprintf(stderr,
-                            "only 63 CPUs in NUMA mode supported.\n");
-                    }
-                    value = (2ULL << endvalue) - (1ULL << value);
-                } else {
-                    value = 1ULL << value;
+            if (*endptr == '-') {
+                endvalue = strtoull(endptr+1, &endptr, 10);
+                if (endvalue >= 63) {
+                    endvalue = 62;
+                    fprintf(stderr,
+                        "only 63 CPUs in NUMA mode supported.\n");
                 }
+                value = (2ULL << endvalue) - (1ULL << value);
+            } else {
+                value = 1ULL << value;
             }
-            node_cpumask[nodenr] = value;
         }
-        nb_numa_nodes++;
+        node_cpumask[nodenr] = value;
     }
-    return;
+    nb_numa_nodes++;
 }
 
 static int smp_init_func(QemuOpts *opts, void *opaque)
-- 
1.7.9.1





reply via email to

[Prev in Thread] Current Thread [Next in Thread]