pc64: fix mmu leak
This commit is contained in:
parent
ca7f016c7b
commit
ef1ec09cf7
1 changed files with 1 additions and 1 deletions
|
@ -415,7 +415,7 @@ mmurelease(Proc *proc)
|
|||
if((p = proc->kmaptail) != nil){
|
||||
if((p->next = proc->mmuhead) == nil)
|
||||
proc->mmutail = p;
|
||||
proc->mmuhead = p;
|
||||
proc->mmuhead = proc->kmaphead;
|
||||
proc->mmucount += proc->kmapcount;
|
||||
|
||||
proc->kmaphead = proc->kmaptail = nil;
|
||||
|
|
Loading…
Reference in a new issue