]> git.proxmox.com Git - qemu.git/commitdiff
blkdebug: Initialize state as 1
authorKevin Wolf <kwolf@redhat.com>
Wed, 30 Jun 2010 15:43:40 +0000 (17:43 +0200)
committerKevin Wolf <kwolf@redhat.com>
Fri, 2 Jul 2010 11:18:02 +0000 (13:18 +0200)
state = 0 in rules means that the rule is valid for any state. Therefore it's
impossible to have a rule that works only in the initial state. This changes
the initial state from 0 to 1 to make this possible.

Signed-off-by: Kevin Wolf <kwolf@redhat.com>
block/blkdebug.c

index 78cbff4bdc1c3a20ebc723ad4ea160d6bf5d5e6a..2a63df93234deb358d1f8aaea36bff3f5c122be2 100644 (file)
@@ -301,6 +301,9 @@ static int blkdebug_open(BlockDriverState *bs, const char *filename, int flags)
     }
     filename = c + 1;
 
+    /* Set initial state */
+    s->vars.state = 1;
+
     /* Open the backing file */
     ret = bdrv_file_open(&bs->file, filename, flags);
     if (ret < 0) {