Page MenuHomeFreeBSD

Use NET_TASK_INIT() and NET_GROUPTASK_INIT() for drivers that process incoming packets in taskqueue context.
ClosedPublic

Authored by hselasky on Feb 18 2020, 4:02 PM.
Tags
None
Referenced Files
Unknown Object (File)
Mon, Aug 24, 3:04 PM
Unknown Object (File)
Wed, Aug 19, 6:47 PM
Unknown Object (File)
Mon, Aug 17, 10:32 AM
Unknown Object (File)
Thu, Aug 13, 1:23 PM
Unknown Object (File)
Wed, Aug 12, 9:16 PM
Unknown Object (File)
Tue, Aug 11, 7:18 AM
Unknown Object (File)
Mon, Aug 10, 4:22 PM
Unknown Object (File)
Mon, Aug 10, 4:20 PM
Subscribers

Details

Summary

This patch extends r357772.

Sponsored by: Mellanox Technologies

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

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?

Other than the above, that fixed the panic in dummynet.

This revision is now accepted and ready to land.Feb 18 2020, 4:13 PM

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).