Changeset a9ac978 in mainline for kernel/arch/sparc64/src/mm/as.c


Ignore:
Timestamp:
2006-09-27T20:11:34Z (18 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
00b38a3
Parents:
86b31ba9
Message:

SMP stuff for sparc64.
Almost complete except for IPIs.
The absence of IPI support deadlocks
the kernel when more CPUs are configured.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/sparc64/src/mm/as.c

    r86b31ba9 ra9ac978  
    3838#include <genarch/mm/asid_fifo.h>
    3939#include <debug.h>
     40#include <config.h>
    4041
    4142#ifdef CONFIG_TSB
     
    5253void as_arch_init(void)
    5354{
    54         as_operations = &as_ht_operations;
    55         asid_fifo_init();
     55        if (config.cpu_active == 1) {
     56                as_operations = &as_ht_operations;
     57                asid_fifo_init();
     58        }
    5659}
    5760
Note: See TracChangeset for help on using the changeset viewer.