vmware-svga/lib/refdriver
Micah Dowty 99a767c5d9 Hopefully fix Metalkit refdriver SVGA_WaitForIRQ hangs
There's been a longstanding bug in the IRQ handling code
in the Metalkit version of the SVGA reference driver, which
occasionally caused tests to hang.

I looked at the disassembly of SVGA_WaitForIRQ and friends, and
I found one big problem and one smaller problem:

The 'switchContext' flag is used to tell the IRQ handler
whether it should branch to the saved context or not. This
value *must* be written before we halt, or we can deadlock.
Unfortunately, the value wasn't marked as 'volatile', and the
compiler was optimizing out this assignment entirely! This
means that 'flags' will never get set, and we'll be in an
infinite loop.

Given this bug, I'm not sure why WaitForIRQ ever worked.
It's possible that we were fine if the IRQ had already arrived
by the time WaitForIRQ was called, but we'd deadlock if we
actually ended up waiting. If this is the case, it also means
that fence-stress isn't doing a very good job of stressing the
IRQ code.

The other, much less severe problem: The stack frames for
WaitForIRQInternal and SaveContext may have been partially
overlapping, since gcc was allocating 0x10 bytes on the
stack before calling SaveContext. The proper solution is
probably just to rewrite all of this in assembly, but for
now I just increased the number of padding words on the
stack by adding extra NULL parameters to WaitForIRQInternal.
2009-05-07 22:35:49 +00:00
..
gmr.c Initial revision 2009-04-13 07:05:42 +00:00
gmr.h Initial revision 2009-04-13 07:05:42 +00:00
svga.c Hopefully fix Metalkit refdriver SVGA_WaitForIRQ hangs 2009-05-07 22:35:49 +00:00
svga.h Hopefully fix Metalkit refdriver SVGA_WaitForIRQ hangs 2009-05-07 22:35:49 +00:00
svga3d.c Initial revision 2009-04-13 07:05:42 +00:00
svga3d.h Initial revision 2009-04-13 07:05:42 +00:00