bus: Cleanup device_probe_child()
When device driver probe method returns 0, i.e. absolute priority, do not remove its class from the device just to set it back few lines later, that may change the device unit number, etc. and after which we'd better call the probe again. If during search we found some driver with absolute priority, we do not need to set device driver and class since we haven't removed them before. It should not happen, but if second probe method call failed, remove the driver and possibly the class from the device as it was when we started. Reviewed by: imp, jhb Differential Revision: https://reviews.freebsd.org/D32125
This commit is contained in:
parent
e725ee7eb6
commit
f73c2bbf81
@ -2074,6 +2074,7 @@ device_probe_child(device_t dev, device_t child)
|
||||
driverlink_t best = NULL;
|
||||
driverlink_t dl;
|
||||
int result, pri = 0;
|
||||
/* We should preserve the devclass (or lack of) set by the bus. */
|
||||
int hasclass = (child->devclass != NULL);
|
||||
|
||||
GIANT_REQUIRED;
|
||||
@ -2125,11 +2126,6 @@ device_probe_child(device_t dev, device_t child)
|
||||
|
||||
result = DEVICE_PROBE(child);
|
||||
|
||||
/* Reset flags and devclass before the next probe. */
|
||||
child->devflags = 0;
|
||||
if (!hasclass)
|
||||
(void)device_set_devclass(child, NULL);
|
||||
|
||||
/*
|
||||
* If the driver returns SUCCESS, there can be
|
||||
* no higher match for this device.
|
||||
@ -2140,6 +2136,11 @@ device_probe_child(device_t dev, device_t child)
|
||||
break;
|
||||
}
|
||||
|
||||
/* Reset flags and devclass before the next probe. */
|
||||
child->devflags = 0;
|
||||
if (!hasclass)
|
||||
(void)device_set_devclass(child, NULL);
|
||||
|
||||
/*
|
||||
* Reset DF_QUIET in case this driver doesn't
|
||||
* end up as the best driver.
|
||||
@ -2184,36 +2185,43 @@ device_probe_child(device_t dev, device_t child)
|
||||
break;
|
||||
}
|
||||
|
||||
if (best == NULL)
|
||||
return (ENXIO);
|
||||
|
||||
/*
|
||||
* If we found a driver, change state and initialise the devclass.
|
||||
*/
|
||||
if (best) {
|
||||
if (pri < 0) {
|
||||
/* Set the winning driver, devclass, and flags. */
|
||||
if (!child->devclass) {
|
||||
result = device_set_devclass(child, best->driver->name);
|
||||
if (result != 0)
|
||||
return (result);
|
||||
}
|
||||
result = device_set_driver(child, best->driver);
|
||||
if (result != 0)
|
||||
return (result);
|
||||
if (!child->devclass) {
|
||||
result = device_set_devclass(child, best->driver->name);
|
||||
if (result != 0) {
|
||||
(void)device_set_driver(child, NULL);
|
||||
return (result);
|
||||
}
|
||||
}
|
||||
resource_int_value(best->driver->name, child->unit,
|
||||
"flags", &child->devflags);
|
||||
|
||||
if (pri < 0) {
|
||||
/*
|
||||
* A bit bogus. Call the probe method again to make
|
||||
* sure that we have the right description.
|
||||
* A bit bogus. Call the probe method again to make sure
|
||||
* that we have the right description.
|
||||
*/
|
||||
DEVICE_PROBE(child);
|
||||
result = DEVICE_PROBE(child);
|
||||
if (result > 0) {
|
||||
if (!hasclass)
|
||||
(void)device_set_devclass(child, NULL);
|
||||
(void)device_set_driver(child, NULL);
|
||||
return (result);
|
||||
}
|
||||
}
|
||||
child->state = DS_ALIVE;
|
||||
|
||||
child->state = DS_ALIVE;
|
||||
bus_data_generation_update();
|
||||
return (0);
|
||||
}
|
||||
|
||||
return (ENXIO);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user