mirror of
https://github.com/opnsense/src.git
synced 2026-05-25 10:50:13 -04:00
Allocating the LinuxKPI current structure from an interrupt thread must be
done using the M_NOWAIT flag after 1ae20f7c70 .
MFC after: 1 week
Sponsored by: Mellanox Technologies // NVIDIA Networking
This commit is contained in:
parent
ce53f92e6c
commit
d1cbe79089
1 changed files with 2 additions and 1 deletions
|
|
@ -2384,7 +2384,8 @@ linux_irq_handler(void *ent)
|
|||
{
|
||||
struct irq_ent *irqe;
|
||||
|
||||
linux_set_current(curthread);
|
||||
if (linux_set_current_flags(curthread, M_NOWAIT))
|
||||
return;
|
||||
|
||||
irqe = ent;
|
||||
irqe->handler(irqe->irq, irqe->arg);
|
||||
|
|
|
|||
Loading…
Reference in a new issue