mirror of
https://git.FreeBSD.org/src.git
synced 2024-11-29 08:08:37 +00:00
Don't print out 'GIANT-LOCKED' for INTR_FAST drivers.
This commit is contained in:
parent
a61bc764ce
commit
cd587b1397
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=127702
@ -2148,7 +2148,7 @@ bus_setup_intr(device_t dev, struct resource *r, int flags,
|
||||
error = BUS_SETUP_INTR(dev->parent, dev, r, flags,
|
||||
handler, arg, cookiep);
|
||||
if (error == 0) {
|
||||
if (!(flags & INTR_MPSAFE))
|
||||
if (!(flags & (INTR_MPSAFE | INTR_FAST)))
|
||||
device_printf(dev, "[GIANT-LOCKED]\n");
|
||||
if (bootverbose && (flags & INTR_MPSAFE))
|
||||
device_printf(dev, "[MPSAFE]\n");
|
||||
|
Loading…
Reference in New Issue
Block a user