From 5eeee3fa2e646dadeea2c10515956b11ed0de877 Mon Sep 17 00:00:00 2001 From: Anthony Liguori Date: Thu, 22 Dec 2011 14:40:54 -0600 Subject: qom: add new command to search for types This adds a command that allows searching for types that implement a property. This allows you to do things like search for all available PCIDevices. In the future, we'll also have a standard interface for things with a BlockDriverState property that a PCIDevice could implement. This will enable search queries like, "any type that implements the BlockDevice interface" which would allow management tools to present available block devices without having to hard code device names. Since an object can implement multiple interfaces, one device could act both as a BlockDevice and a NetworkDevice. Signed-off-by: Anthony Liguori --- qerror.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'qerror.c') diff --git a/qerror.c b/qerror.c index 637eca7..3d179c8 100644 --- a/qerror.c +++ b/qerror.c @@ -161,7 +161,7 @@ static const QErrorStringTable qerror_table[] = { }, { .error_fmt = QERR_INVALID_PARAMETER_TYPE, - .desc = "Invalid parameter type, expected: %(expected)", + .desc = "Invalid parameter type for '%(name)', expected: %(expected)", }, { .error_fmt = QERR_INVALID_PARAMETER_VALUE, -- cgit v1.1