Subversion Repositories HelenOS-historic

Compare Revisions

Regard whitespace Rev 1586 → Rev 1587

/kernel/trunk/generic/src/mm/as.c
147,7 → 147,9
ipl = interrupts_disable();
spinlock_lock(&inactive_as_with_asid_lock);
if (as->asid != ASID_INVALID && as->asid != ASID_KERNEL) {
 
if (as->asid != ASID_INVALID && as != AS_KERNEL) {
if (!as->cpu_refcount)
list_remove(&as->inactive_as_with_asid_link);
asid_put(as->asid);
}