Module Name: src Committed By: riastradh Date: Thu Aug 20 21:31:16 UTC 2020
Modified Files: src/sys/net: if_wg.c Log Message: Don't falsely assert cpu_softintr_p(). Will fail in the following stack trace: wg_worker (kthread) wg_receive_packets wg_handle_packet wg_handle_msg_data KASSERT(cpu_softintr_p()) Instead, use kpreempt_disable/enable around softint_schedule. XXX Not clear that softint is the right place to do this! To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/sys/net/if_wg.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.