ugh. splimp is the greater of splnet and splbio now. used by pmap module for splpmap()

This commit is contained in:
glass 1994-05-02 05:46:06 +00:00
parent 6ca1616efb
commit 7a1f9ba5b9
3 changed files with 8 additions and 8 deletions

View File

@ -174,12 +174,12 @@
#define splsoftclock() spl1()
#define splnet() spl3()
#define splbio() spl2()
#define splimp() spl6()
#define splimp() spl3()
#define spltty() spl2()
#define splzs( ) spl6()
#define splzs() spl6()
#define splclock() spl5()
#define splstatclock() splclock()
#define splvm() spl2()
#define splvm() splimp()
#define splhigh() spl7()
#define splsched() spl7()

View File

@ -174,12 +174,12 @@
#define splsoftclock() spl1()
#define splnet() spl3()
#define splbio() spl2()
#define splimp() spl6()
#define splimp() spl3()
#define spltty() spl2()
#define splzs( ) spl6()
#define splzs() spl6()
#define splclock() spl5()
#define splstatclock() splclock()
#define splvm() spl2()
#define splvm() splimp()
#define splhigh() spl7()
#define splsched() spl7()

View File

@ -28,7 +28,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Header: /cvsroot/src/sys/arch/sun3/sun3/pmap.c,v 1.20 1994/04/24 20:10:24 glass Exp $
* $Header: /cvsroot/src/sys/arch/sun3/sun3/pmap.c,v 1.21 1994/05/02 05:46:12 glass Exp $
*/
#include <sys/systm.h>
#include <sys/param.h>
@ -102,7 +102,7 @@ vm_offset_t avail_start, avail_end;
#define NKSEG (NSEGMAP - (KERNBASE / NBSG)) /* is KERNBASE ok? */
#define NUSEG (NSEGMAP-NKSEG)
#define splpmap splbio
#define splpmap splimp
#define PMAP_LOCK() s = splpmap()
#define PMAP_UNLOCK() splx(s)