Initialize private variable other_cpus during AP boot.

This commit is contained in:
Steve Passe 1997-06-27 23:38:32 +00:00
parent b7f7f066f6
commit 31d3baa2e0
1 changed files with 4 additions and 1 deletions

View File

@ -22,7 +22,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: init_smp.c,v 1.6 1997/05/06 07:10:06 fsmp Exp $
* $Id: init_smp.c,v 1.1 1997/06/27 18:32:57 smp Exp smp $
*/
#include "opt_smp.h"
@ -173,6 +173,9 @@ secondary_main()
cpu_starting = cpuid;
smp_cpus++;
/* build our map of 'other' CPUs */
other_cpus = all_cpus & ~(1 << cpuid);
printf("SMP: AP CPU #%d LAUNCHED!! Starting Scheduling...\n",
cpuid);