pc64: remove rampage() nil check

rampage() never returns nil
This commit is contained in:
cinap_lenrek 2020-04-06 01:29:12 +02:00
parent a35cd0f861
commit 9e2344a5be

View file

@ -299,8 +299,6 @@ ptesplit(uintptr* table, uintptr va)
if(pte == nil || (*pte & PTESIZE) == 0 || (va & PGLSZ(1)-1) == 0) if(pte == nil || (*pte & PTESIZE) == 0 || (va & PGLSZ(1)-1) == 0)
return; return;
table = rampage(); table = rampage();
if(table == nil)
panic("ptesplit: out of memory\n");
va &= -PGLSZ(1); va &= -PGLSZ(1);
pa = *pte & ~PTESIZE; pa = *pte & ~PTESIZE;
for(off = 0; off < PGLSZ(1); off += PGLSZ(0)) for(off = 0; off < PGLSZ(1); off += PGLSZ(0))