Changeset cf464d1 in mainline


Ignore:
Timestamp:
2006-05-21T19:02:26Z (19 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
bd55bbb
Parents:
dadb68e
Message:

fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/ppc32/src/mm/page.c

    rdadb68e rcf464d1  
    155155                   PTE in PTEG */
    156156                for (i = 0; i < 8; i++) {
    157                         if (!phte[base2 + i].v) {
     157                        if ((!phte[base2 + i].v) || ((phte[base2 + i].vsid == vsid) && (phte[base2 + i].api == api))) {
    158158                                found = true;
    159159                                base = base2;
     
    256256                int flags;
    257257               
    258                 /* Pages below 128 MB are mapped using BAT,
     258                /* Frames below 128 MB are mapped using BAT,
    259259                   map rest of the physical memory */
    260260                for (cur = 128 << 20; cur < last_frame; cur += FRAME_SIZE) {
Note: See TracChangeset for help on using the changeset viewer.