Module Name: src Committed By: riastradh Date: Sun Dec 19 12:11:28 UTC 2021
Modified Files: src/sys/external/bsd/common/linux: linux_work.c Log Message: linux: Fix flush_workqueue. Simplify mechanism: we know there's only a single thread here that processes scheduled work in FIFO order (no multi-CPU workqueues -- would have to adapt if there were), so just schedule a work item that notifies of completion. The previous mechanism of counting 0, 1, or 2 generation numbers was broken by an earlier change to avoid abuse of tailqs arising from clever TAILQ_CONCAT. To generate a diff of this commit: cvs rdiff -u -r1.56 -r1.57 src/sys/external/bsd/common/linux/linux_work.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.