Introduce FAST_HI option, ON by default.

This options allows a CPU that is blocked spinning for the giant lock
to process FAST_INTR() ISRs, eg. siointr().
This commit is contained in:
fsmp 1997-08-29 17:58:30 +00:00
parent c063323c3e
commit 34c1430d68

View File

@ -22,7 +22,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: smptests.h,v 1.22 1997/08/21 04:48:45 smp Exp smp $
* $Id: smptests.h,v 1.24 1997/08/29 07:23:37 smp Exp smp $
*/
#ifndef _MACHINE_SMPTESTS_H_
@ -34,6 +34,20 @@
*/
/*
* Put FAST_INTR() ISRs at an APIC priority above the regular INTs.
* Allow the mp_lock() routines to handle FAST interrupts while spinning.
*/
#define FAST_HI
/*
* Regular INTerrupts without the giant lock, NOT READY YET!!!
*
#define INTR_SIMPLELOCK
*/
/*
* Ignore the ipending bits when exiting FAST_INTR() routines.
*