Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 1903 → Rev 1904

/trunk/kernel/generic/src/mm/tlb.c
161,17 → 161,17
count = CPU->tlb_messages[i].count;
 
switch (type) {
case TLB_INVL_ALL:
case TLB_INVL_ALL:
tlb_invalidate_all();
break;
case TLB_INVL_ASID:
case TLB_INVL_ASID:
tlb_invalidate_asid(asid);
break;
case TLB_INVL_PAGES:
case TLB_INVL_PAGES:
ASSERT(count);
tlb_invalidate_pages(asid, page, count);
break;
default:
default:
panic("unknown type (%d)\n", type);
break;
}