]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
kvm tools: Fix compat message formatting
authorSasha Levin <levinsasha928@gmail.com>
Mon, 12 Sep 2011 17:25:29 +0000 (20:25 +0300)
committerPekka Enberg <penberg@kernel.org>
Tue, 13 Sep 2011 17:37:43 +0000 (20:37 +0300)
Signed-off-by: Sasha Levin <levinsasha928@gmail.com>
Signed-off-by: Pekka Enberg <penberg@kernel.org>
tools/kvm/virtio/9p.c
tools/kvm/virtio/balloon.c
tools/kvm/virtio/blk.c
tools/kvm/virtio/console.c
tools/kvm/virtio/net.c
tools/kvm/virtio/rng.c

index 0dffc7a152825d7d08fb9a4e2321d0e1100558eb..22a273219aff112c10467f15fbf1b3f3e4aa8753 100644 (file)
@@ -1250,7 +1250,7 @@ int virtio_9p__register(struct kvm *kvm, const char *root, const char *tag_name)
        p9dev->compat_id = compat__add_message("virtio-9p device was not detected",
                                                "While you have requested a virtio-9p device, "
                                                "the guest kernel didn't seem to detect it.\n"
-                                               "Please make sure that the kernel was compiled"
+                                               "Please make sure that the kernel was compiled "
                                                "with CONFIG_NET_9P_VIRTIO.");
 
        return err;
index 0f2453901fce66d529c98026a17779b9ed6abb97..0b791328c113a15396add4d88a7b9d51a5a92703 100644 (file)
@@ -283,6 +283,6 @@ void virtio_bln__init(struct kvm *kvm)
        bdev.compat_id = compat__add_message("virtio-balloon device was not detected",
                                                "While you have requested a virtio-balloon device, "
                                                "the guest kernel didn't seem to detect it.\n"
-                                               "Please make sure that the kernel was compiled"
+                                               "Please make sure that the kernel was compiled "
                                                "with CONFIG_VIRTIO_BALLOON.");
 }
index 5f312b538ff58e95ca33158341c9c2383fc80eb4..c508123c9b0810ffba843ffa7c259332e79ebbb9 100644 (file)
@@ -223,7 +223,7 @@ void virtio_blk__init(struct kvm *kvm, struct disk_image *disk)
        bdev->compat_id = compat__add_message("virtio-blk device was not detected",
                                                "While you have requested a virtio-blk device, "
                                                "the guest kernel didn't seem to detect it.\n"
-                                               "Please make sure that the kernel was compiled"
+                                               "Please make sure that the kernel was compiled "
                                                "with CONFIG_VIRTIO_BLK.");
 }
 
index 035554cefc877000bf344c1a403a4d35bf48d083..c0ccd6c0a5ed97345270577cd201e84bb8044c10 100644 (file)
@@ -191,6 +191,6 @@ void virtio_console__init(struct kvm *kvm)
        cdev.compat_id = compat__add_message("virtio-console device was not detected",
                                                "While you have requested a virtio-console device, "
                                                "the guest kernel didn't seem to detect it.\n"
-                                               "Please make sure that the kernel was compiled"
+                                               "Please make sure that the kernel was compiled "
                                                "with CONFIG_VIRTIO_CONSOLE.");
 }
index 4661e0661eb51ed5bbd44ff2525896f8b883bf1c..4700483b24ceaa6e469cd7aace6c10f2d16a3d88 100644 (file)
@@ -401,6 +401,6 @@ void virtio_net__init(const struct virtio_net_parameters *params)
        ndev.compat_id = compat__add_message("virtio-net device was not detected",
                                                "While you have requested a virtio-net device, "
                                                "the guest kernel didn't seem to detect it.\n"
-                                               "Please make sure that the kernel was compiled"
+                                               "Please make sure that the kernel was compiled "
                                                "with CONFIG_VIRTIO_NET.");
 }
index dc97729dafae5d7069ce240774c62632523bc3ff..02308c29606ef218bb1ed5b50275cbce218f8850 100644 (file)
@@ -167,7 +167,7 @@ void virtio_rng__init(struct kvm *kvm)
        rdev->compat_id = compat__add_message("virtio-rng device was not detected",
                                                "While you have requested a virtio-rng device, "
                                                "the guest kernel didn't seem to detect it.\n"
-                                               "Please make sure that the kernel was compiled"
+                                               "Please make sure that the kernel was compiled "
                                                "with CONFIG_HW_RANDOM_VIRTIO.");
 }