]> git.ipfire.org Git - thirdparty/qemu.git/commit
vpc: Return 0 from vpc_co_create() on success
authorMax Reitz <mreitz@redhat.com>
Mon, 2 Sep 2019 19:33:16 +0000 (21:33 +0200)
committerMichael Roth <mdroth@linux.vnet.ibm.com>
Tue, 1 Oct 2019 21:58:28 +0000 (16:58 -0500)
commit43143d5d91f535eebea9f0c3fac6575a8c831fcf
tree9a91d5d8b80dfe61395b99521b73e7dfe686d7a6
parent88a2ea5a4872cfb7e8b66f4cdc203e2a6fd3c034
vpc: Return 0 from vpc_co_create() on success

blockdev_create_run() directly uses .bdrv_co_create()'s return value as
the job's return value.  Jobs must return 0 on success, not just any
nonnegative value.  Therefore, using blockdev-create for VPC images may
currently fail as the vpc driver may return a positive integer.

Because there is no point in returning a positive integer anywhere in
the block layer (all non-negative integers are generally treated as
complete success), we probably do not want to add more such cases.
Therefore, fix this problem by making the vpc driver always return 0 in
case of success.

Suggested-by: Kevin Wolf <kwolf@redhat.com>
Cc: qemu-stable@nongnu.org
Signed-off-by: Max Reitz <mreitz@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
(cherry picked from commit 1a37e3124407b5a145d44478d3ecbdb89c63789f)
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
block/vpc.c