mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06:00
qdev: add a maximum device allowed field for the bus.
Add a max_dev field to BusClass to specify the maximum amount of devices allowed on the bus (has no effect if max_dev=0) Signed-off-by: KONRAD Frederic <fred.konrad@greensocs.com> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
016c718231
commit
1395af6f76
2 changed files with 14 additions and 0 deletions
|
@ -283,6 +283,7 @@ static DeviceState *qbus_find_dev(BusState *bus, char *elem)
|
|||
static BusState *qbus_find_recursive(BusState *bus, const char *name,
|
||||
const char *bus_typename)
|
||||
{
|
||||
BusClass *bus_class = BUS_GET_CLASS(bus);
|
||||
BusChild *kid;
|
||||
BusState *child, *ret;
|
||||
int match = 1;
|
||||
|
@ -293,6 +294,17 @@ static BusState *qbus_find_recursive(BusState *bus, const char *name,
|
|||
if (bus_typename && !object_dynamic_cast(OBJECT(bus), bus_typename)) {
|
||||
match = 0;
|
||||
}
|
||||
if ((bus_class->max_dev != 0) && (bus_class->max_dev <= bus->max_index)) {
|
||||
if (name != NULL) {
|
||||
/* bus was explicitly specified: return an error. */
|
||||
qerror_report(ERROR_CLASS_GENERIC_ERROR, "Bus '%s' is full",
|
||||
bus->name);
|
||||
return NULL;
|
||||
} else {
|
||||
/* bus was not specified: try to find another one. */
|
||||
match = 0;
|
||||
}
|
||||
}
|
||||
if (match) {
|
||||
return bus;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue