From: Asias He Date: Wed, 21 Dec 2011 15:11:10 +0000 (+0800) Subject: kvm tools: Fix compat message per device for virtio/blk X-Git-Tag: next-20120402~5^2~77 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=a87d05f5f875500ae600564aeea3098026da880b;p=karo-tx-linux.git kvm tools: Fix compat message per device for virtio/blk The commit 2b6c246215e8f936d2366ef8c4a6eec730b819b2 (kvm tools: Use compat message per device instead of per instance) prevents multiple messages for the same type of device. The variable compat_id is expected to be initialized to -1. Signed-off-by: Asias He Signed-off-by: Pekka Enberg --- diff --git a/tools/kvm/virtio/blk.c b/tools/kvm/virtio/blk.c index d1a0197d1346..1d921a80e6d1 100644 --- a/tools/kvm/virtio/blk.c +++ b/tools/kvm/virtio/blk.c @@ -54,7 +54,7 @@ struct blk_dev { }; static LIST_HEAD(bdevs); -static int compat_id; +static int compat_id = -1; void virtio_blk_complete(void *param, long len) {