Home
last modified time | relevance | path

Searched refs:DF_REBID (Results 1 – 2 of 2) sorted by relevance

/f-stack/freebsd/kern/
H A Dsubr_bus.c2088 if (child->state == DS_ALIVE && (child->flags & DF_REBID) == 0) in device_probe_child()
2232 child->flags |= DF_REBID; in device_probe_child()
2235 child->flags &= ~DF_REBID; in device_probe_child()
2868 if (dev->state >= DS_ALIVE && (dev->flags & DF_REBID) == 0) in device_probe()
4091 (child->flags & DF_REBID)) in bus_generic_driver_added()
5325 (dev->flags&DF_REBID? "rebiddable,":""), in print_device_short()
5727 if (device_is_attached(dev) && (dev->flags & DF_REBID) == 0) in devctl2_ioctl()
/f-stack/freebsd/sys/
H A Dbus.h93 #define DF_REBID 0x80 /* Can rebid after attach */ macro