K 10 svn:author V 5 benno K 8 svn:date V 27 2008-06-11T07:26:02.462666Z K 7 svn:log V 604 Switch to using a normal mutex instead of a spin mutex. We still use the interrupt filter due to performance problems that show up if we don't. The main problem seen is that, due to the interrupt being edge triggered, we occasionally miss interrupts which leads us to not notice that we can transmit more packets. Using the new approach, which just schedules a task on a taskqueue, we are guaranteed to have the task run even if the interrupt arrived while we were already executing. If we were to use an ithread the system would mask the interrupt while the handler is run and we'd miss interrupts. END