Changeset 8440473 in mainline for kernel/generic/src/mm


Ignore:
Timestamp:
2006-10-26T21:36:32Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8c84448
Parents:
19dce27
Message:

Minor changes. Some coding style fixes and also a type (tee vs. tree).
One AS → as change.

Location:
kernel/generic/src/mm
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/mm/as.c

    r19dce27 r8440473  
    193193        /*
    194194         * Destroy address space areas of the address space.
    195          * The B+tee must be walked carefully because it is
     195         * The B+tree must be walked carefully because it is
    196196         * also being destroyed.
    197197         */     
     
    417417                 * Finish TLB shootdown sequence.
    418418                 */
    419                 tlb_invalidate_pages(AS->asid, area->base + pages*PAGE_SIZE, area->pages - pages);
     419                tlb_invalidate_pages(as->asid, area->base + pages*PAGE_SIZE, area->pages - pages);
    420420                tlb_shootdown_finalize();
    421421               
     
    610610        /*
    611611         * Now we are committed to sharing the area.
    612          * First prepare the area for sharing.
     612         * First, prepare the area for sharing.
    613613         * Then it will be safe to unlock it.
    614614         */
  • kernel/generic/src/mm/backend_anon.c

    r19dce27 r8440473  
    133133                 *   the different causes
    134134                 */
    135                 frame = (uintptr_t)frame_alloc(ONE_FRAME, 0);
     135                frame = (uintptr_t) frame_alloc(ONE_FRAME, 0);
    136136                memsetb(PA2KA(frame), FRAME_SIZE, 0);
    137137        }
Note: See TracChangeset for help on using the changeset viewer.