Disconnecting hooks are called outside of NET_EPOCH, but ng_pppoe_disconnect() calls NG_SEND_DATA_ONLY() which should be called in NET_EPOCH.
PR: 257067
Differential D34185
ng pppoe(4): Add the required NET_EPOCH section to the hook disconnection function. afedorov on Feb 6 2022, 12:49 PM. Authored by Tags None Referenced Files
Details Disconnecting hooks are called outside of NET_EPOCH, but ng_pppoe_disconnect() calls NG_SEND_DATA_ONLY() which should be called in NET_EPOCH. PR: 257067
Diff Detail
Event TimelineComment Actions Question: there are three more locations in that source file where NG_SEND_DATA_ONLY() is called and it is not apparent that we are inside NET_EPOCH. Comment Actions Other places where NG_SEND_DATA_ONLY() is called:
So, I think other places where NG_SEND_DATA_ONLY() is called, are already in NET_EPOCH. |