qdev-monitor: improve error message when alias device is unavailable
When trying to instantiate an alias that points to a device class that doesn't exist, the error message looks like qemu misunderstood the request: $ s390x-softmmu/qemu-system-s390x -device virtio-gpu qemu-system-s390x: -device virtio-gpu: 'virtio-gpu-ccw' is not a valid device model name Special-case the error message to make it explicit that alias expansion is going on: $ s390x-softmmu/qemu-system-s390x -device virtio-gpu qemu-system-s390x: -device virtio-gpu: 'virtio-gpu' (alias 'virtio-gpu-ccw') is not a valid device model name Suggested-By: Cornelia Huck <cornelia.huck@de.ibm.com> Signed-off-by: Sascha Silbe <silbe@linux.vnet.ibm.com> Message-Id: <1455831854-49013-2-git-send-email-silbe@linux.vnet.ibm.com> Reviewed-by: Cornelia Huck <cornelia.huck@de.ibm.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com>
This commit is contained in:
		
							parent
							
								
									a6cdb77f81
								
							
						
					
					
						commit
						f6b5319d41
					
				@ -188,6 +188,7 @@ static DeviceClass *qdev_get_device_class(const char **driver, Error **errp)
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
    ObjectClass *oc;
 | 
					    ObjectClass *oc;
 | 
				
			||||||
    DeviceClass *dc;
 | 
					    DeviceClass *dc;
 | 
				
			||||||
 | 
					    const char *original_name = *driver;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    oc = object_class_by_name(*driver);
 | 
					    oc = object_class_by_name(*driver);
 | 
				
			||||||
    if (!oc) {
 | 
					    if (!oc) {
 | 
				
			||||||
@ -200,7 +201,12 @@ static DeviceClass *qdev_get_device_class(const char **driver, Error **errp)
 | 
				
			|||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (!object_class_dynamic_cast(oc, TYPE_DEVICE)) {
 | 
					    if (!object_class_dynamic_cast(oc, TYPE_DEVICE)) {
 | 
				
			||||||
 | 
					        if (*driver != original_name) {
 | 
				
			||||||
 | 
					            error_setg(errp, "'%s' (alias '%s') is not a valid device model"
 | 
				
			||||||
 | 
					                       " name", original_name, *driver);
 | 
				
			||||||
 | 
					        } else {
 | 
				
			||||||
            error_setg(errp, "'%s' is not a valid device model name", *driver);
 | 
					            error_setg(errp, "'%s' is not a valid device model name", *driver);
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
        return NULL;
 | 
					        return NULL;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user