mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
pccbb: Remove Giant mention in comments.
MFC after: 2 weeks
This commit is contained in:
parent
1886cef69b
commit
22405bb2e4
1 changed files with 1 additions and 10 deletions
|
|
@ -603,11 +603,7 @@ cbb_func_filt(void *arg)
|
|||
return (FILTER_HANDLED);
|
||||
}
|
||||
|
||||
/*
|
||||
* nb: don't have to check for giant or not, since that's done in the
|
||||
* ISR dispatch and one can't hold Giant in a filter anyway...
|
||||
*/
|
||||
return ((*ih->filt)(ih->arg));
|
||||
return ((*ih->filt)(ih->arg));
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
@ -638,11 +634,6 @@ cbb_func_intr(void *arg)
|
|||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Call the registered ithread interrupt handler. This entire routine
|
||||
* will be called with Giant if this isn't an MP safe driver, or not
|
||||
* if it is. Either way, we don't have to worry.
|
||||
*/
|
||||
ih->intr(ih->arg);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue