Don't #include <machine/smp.h> even in the SMP case. Fixed the one

place that depended on it.  The "bazillion warnings" mentioned in the
log for rev.1.45 apparently aren't a problem any more.  It is hard
to be sure because the SIMPLELOCK_DEBUG option turns off (and breaks)
things in the SMP case.
This commit is contained in:
Bruce Evans 1997-11-18 09:27:23 +00:00
parent f6fdfec497
commit 8fa40736f6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=31249
2 changed files with 8 additions and 2 deletions

View File

@ -38,7 +38,7 @@
*
* from: @(#)vm_machdep.c 7.3 (Berkeley) 5/13/91
* Utah $Hdr: vm_machdep.c 1.16.1.1 89/06/23$
* $Id: vm_machdep.c,v 1.89 1997/09/13 16:12:04 joerg Exp $
* $Id: vm_machdep.c,v 1.90 1997/10/10 09:44:12 peter Exp $
*/
#include "npx.h"
@ -56,6 +56,9 @@
#include <machine/clock.h>
#include <machine/cpu.h>
#include <machine/md_var.h>
#ifdef SMP
#include <machine/smp.h>
#endif
#include <vm/vm.h>
#include <vm/vm_param.h>

View File

@ -38,7 +38,7 @@
*
* from: @(#)vm_machdep.c 7.3 (Berkeley) 5/13/91
* Utah $Hdr: vm_machdep.c 1.16.1.1 89/06/23$
* $Id: vm_machdep.c,v 1.89 1997/09/13 16:12:04 joerg Exp $
* $Id: vm_machdep.c,v 1.90 1997/10/10 09:44:12 peter Exp $
*/
#include "npx.h"
@ -56,6 +56,9 @@
#include <machine/clock.h>
#include <machine/cpu.h>
#include <machine/md_var.h>
#ifdef SMP
#include <machine/smp.h>
#endif
#include <vm/vm.h>
#include <vm/vm_param.h>