Module Name: src Committed By: isaki Date: Sun Apr 28 05:07:00 UTC 2019
Modified Files: src/sys/dev/pci [isaki-audio2]: eso.c Log Message: Don't release sc_lock on eso_halt_{input,output}. halt_* is called with sc_lock && sc_intr_lock held. This lock order is first sc_lock and then sc_intr_lock. So unlocking sc_lock with sc_intr_lock held is wrong operation. And cv_wait(sc_intr_lock) will work even with sc_lock held. To generate a diff of this commit: cvs rdiff -u -r1.69.2.2 -r1.69.2.3 src/sys/dev/pci/eso.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.