Changeset cf464d1 in mainline
- Timestamp:
- 2006-05-21T19:02:26Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- bd55bbb
- Parents:
- dadb68e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ppc32/src/mm/page.c
rdadb68e rcf464d1 155 155 PTE in PTEG */ 156 156 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))) { 158 158 found = true; 159 159 base = base2; … … 256 256 int flags; 257 257 258 /* Pages below 128 MB are mapped using BAT,258 /* Frames below 128 MB are mapped using BAT, 259 259 map rest of the physical memory */ 260 260 for (cur = 128 << 20; cur < last_frame; cur += FRAME_SIZE) {
Note:
See TracChangeset
for help on using the changeset viewer.