]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
kvm tools: Rename --host-ip-addr to --host-ip
authorAsias He <asias.hejun@gmail.com>
Sun, 17 Jul 2011 08:57:02 +0000 (16:57 +0800)
committerPekka Enberg <penberg@kernel.org>
Mon, 18 Jul 2011 10:17:19 +0000 (13:17 +0300)
This patch makes the network options more consistent.

We are having:

   --host-ip
   --host-mac
   --guest-ip
   --guest-mac

now.

Signed-off-by: Asias He <asias.hejun@gmail.com>
Signed-off-by: Pekka Enberg <penberg@kernel.org>
tools/kvm/builtin-run.c

index 12cf75bcc6a3ab5d0404aea04914f8aa229a114e..af2e089c699b4251ee2c186ad0f5f43f634173d2 100644 (file)
@@ -69,7 +69,7 @@ static const char *image_filename[MAX_DISK_IMAGES];
 static const char *console;
 static const char *kvm_dev;
 static const char *network;
-static const char *host_ip_addr;
+static const char *host_ip;
 static const char *guest_ip;
 static const char *guest_mac;
 static const char *host_mac;
@@ -166,7 +166,7 @@ static const struct option options[] = {
        OPT_GROUP("Networking options:"),
        OPT_STRING('n', "network", &network, "user, tap, none",
                        "Network to use"),
-       OPT_STRING('\0', "host-ip-addr", &host_ip_addr, "a.b.c.d",
+       OPT_STRING('\0', "host-ip", &host_ip, "a.b.c.d",
                        "Assign this address to the host side networking"),
        OPT_STRING('\0', "guest-ip", &guest_ip, "a.b.c.d",
                        "Assign this address to the guest side networking"),
@@ -547,8 +547,8 @@ int kvm_cmd_run(int argc, const char **argv, const char *prefix)
        else
                active_console  = CONSOLE_8250;
 
-       if (!host_ip_addr)
-               host_ip_addr = DEFAULT_HOST_ADDR;
+       if (!host_ip)
+               host_ip = DEFAULT_HOST_ADDR;
 
        if (!guest_ip)
                guest_ip = DEFAULT_GUEST_ADDR;
@@ -660,8 +660,8 @@ int kvm_cmd_run(int argc, const char **argv, const char *prefix)
                network = DEFAULT_NETWORK;
 
        if (strncmp(network, "none", 4)) {
-               net_params.host_ip = host_ip_addr;
                net_params.guest_ip = guest_ip;
+               net_params.host_ip = host_ip;
                net_params.kvm = kvm;
                net_params.script = script;
                sscanf(guest_mac, "%hhx:%hhx:%hhx:%hhx:%hhx:%hhx",