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)
Thu, Nov 20, 6:09 PM
Unknown Object (File)
Thu, Nov 20, 6:07 PM
Unknown Object (File)
Thu, Nov 20, 6:07 PM
Unknown Object (File)
Thu, Nov 20, 5:56 PM
Unknown Object (File)
Sat, Nov 15, 1:07 PM
Unknown Object (File)
Thu, Nov 13, 7:00 PM
Unknown Object (File)
Tue, Nov 4, 9:29 AM
Unknown Object (File)
Thu, Oct 30, 10:45 PM
Subscribers

Details

Summary

This patch extends r357772.

Sponsored by: Mellanox Technologies

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Skipped
Unit
Tests Skipped
Build Status
Buildable 29469

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