Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1389 → Rev 1390

/kernel/trunk/arch/ppc32/src/mm/page.c
154,7 → 154,7
/* Find unused or colliding
PTE in PTEG */
for (i = 0; i < 8; i++) {
if (!phte[base2 + i].v) {
if ((!phte[base2 + i].v) || ((phte[base2 + i].vsid == vsid) && (phte[base2 + i].api == api))) {
found = true;
base = base2;
h = 1;
255,7 → 255,7
__address cur;
int flags;
/* Pages below 128 MB are mapped using BAT,
/* Frames below 128 MB are mapped using BAT,
map rest of the physical memory */
for (cur = 128 << 20; cur < last_frame; cur += FRAME_SIZE) {
flags = PAGE_CACHEABLE;