MCPcopy Create free account
hub / github.com/F-Stack/f-stack / device_gen_nomatch

Function device_gen_nomatch

freebsd/kern/subr_bus.c:5637–5652  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5635}
5636
5637static void
5638device_gen_nomatch(device_t dev)
5639{
5640 device_t child;
5641
5642 if (dev->flags & DF_NEEDNOMATCH &&
5643 dev->state == DS_NOTPRESENT) {
5644 BUS_PROBE_NOMATCH(dev->parent, dev);
5645 devnomatch(dev);
5646 dev->flags |= DF_DONENOMATCH;
5647 }
5648 dev->flags &= ~DF_NEEDNOMATCH;
5649 TAILQ_FOREACH(child, &dev->children, link) {
5650 device_gen_nomatch(child);
5651 }
5652}
5653
5654static void
5655device_do_deferred_actions(void)

Callers 1

Calls 1

devnomatchFunction · 0.85

Tested by

no test coverage detected