The Friday 12 Sep 2014 à 21:26:24 (+0200), Markus Armbruster wrote : > Suggested-by: Benoit Canet <benoit.ca...@nodalink.com> > Signed-off-by: Markus Armbruster <arm...@redhat.com> > --- > block.c | 3 ++- > tests/qemu-iotests/087.out | 2 +- > 2 files changed, 3 insertions(+), 2 deletions(-) > > diff --git a/block.c b/block.c > index 6faf36f..02ea90f 100644 > --- a/block.c > +++ b/block.c > @@ -347,7 +347,8 @@ BlockDriverState *bdrv_new(const char *device_name, Error > **errp) > return NULL; > } > if (bdrv_find_node(device_name)) { > - error_setg(errp, "Device with node-name '%s' already exists", > + error_setg(errp, > + "Device name '%s' conflicts with an existing node name", > device_name); > return NULL; > } > diff --git a/tests/qemu-iotests/087.out b/tests/qemu-iotests/087.out > index 7fbee3f..75a54e0 100644 > --- a/tests/qemu-iotests/087.out > +++ b/tests/qemu-iotests/087.out > @@ -20,7 +20,7 @@ QMP_VERSION > {"return": {}} > {"return": {}} > {"error": {"class": "GenericError", "desc": "Device with id 'disk' already > exists"}} > -{"error": {"class": "GenericError", "desc": "Device with node-name > 'test-node' already exists"}} > +{"error": {"class": "GenericError", "desc": "Device name 'test-node' > conflicts with an existing node name"}} > main-loop: WARNING: I/O thread spun for 1000 iterations > {"error": {"class": "GenericError", "desc": "could not open disk image > disk2: node-name=disk is conflicting with a device id"}} > {"error": {"class": "GenericError", "desc": "could not open disk image > disk2: Duplicate node name"}} > -- > 1.9.3 >
Reviewed-by: Benoît Canet <benoit.ca...@nodalink.com>