Changeset 00b38a3 in mainline for kernel/generic/src/mm/tlb.c


Ignore:
Timestamp:
2006-09-28T15:48:31Z (18 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c23baab
Parents:
a9ac978
Message:

IPI/cross-call support for sparc64.
SMP on sparc64 is now fully supported.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/mm/tlb.c

    ra9ac978 r00b38a3  
    162162
    163163                switch (type) {
    164                     case TLB_INVL_ALL:
     164                case TLB_INVL_ALL:
    165165                        tlb_invalidate_all();
    166166                        break;
    167                     case TLB_INVL_ASID:
     167                case TLB_INVL_ASID:
    168168                        tlb_invalidate_asid(asid);
    169169                        break;
    170                     case TLB_INVL_PAGES:
     170                case TLB_INVL_PAGES:
    171171                        ASSERT(count);
    172172                        tlb_invalidate_pages(asid, page, count);
    173173                        break;
    174                     default:
     174                default:
    175175                        panic("unknown type (%d)\n", type);
    176176                        break;
Note: See TracChangeset for help on using the changeset viewer.