]> git.proxmox.com Git - mirror_qemu.git/commit
nbd: correctly propagate errors
authorPaolo Bonzini <pbonzini@redhat.com>
Mon, 17 Feb 2014 13:43:49 +0000 (14:43 +0100)
committerKevin Wolf <kwolf@redhat.com>
Fri, 21 Feb 2014 20:02:22 +0000 (21:02 +0100)
commit77e8b9ca64e85d3d309f322410964b7852ec091e
tree83c89ead8b7febc0900867dbce56f5eb5d7a20ed
parenta69d9af449e9de200abc751d8614124c7486426f
nbd: correctly propagate errors

Before:
    $ ./qemu-io-old
    qemu-io-old> open -r -o file.driver=nbd
    one of path and host must be specified.
    qemu-io-old: can't open device (null): Could not open image: Invalid argument
    $ ./qemu-io-old
    qemu-io-old> open -r -o file.driver=nbd,file.host=foo,file.path=bar
    path and host may not be used at the same time.
    qemu-io-old: can't open device (null): Could not open image: Invalid argument

After:
    $ ./qemu-io
    qemu-io> open -r -o file.driver=nbd
    qemu-io: can't open device (null): one of path and host must be specified.
    $ ./qemu-io
    qemu-io> open -r -o file.driver=nbd,file.host=foo,file.path=bar
    qemu-io: can't open device (null): path and host may not be used at the same time.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Fam Zheng <famz@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
block/nbd.c
include/block/nbd.h
nbd.c
tests/qemu-iotests/051.out