This patch extends r357772.
Sponsored by: Mellanox Technologies
Differential D23742
Use NET_TASK_INIT() and NET_GROUPTASK_INIT() for drivers that process incoming packets in taskqueue context. • hselasky on Feb 18 2020, 4:02 PM. Authored by Tags None Referenced Files
Details This patch extends r357772. Sponsored by: Mellanox Technologies
Diff Detail
Event TimelineComment Actions There is something similar in sys/netpfil/pf/pf.c:880: TASK_INIT(&V_pf_overloadtask, 0, pf_overload_task, curvnet); Guess that would need to be modified also? Comment Actions From what I can see "pf_overload_task()" does not send or receive and IP packets, and does not need to run under EPOCH(9). |