Changeset f6a0f06 in mainline


Ignore:
Timestamp:
2006-05-09T18:34:32Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
cfffb000
Parents:
381465e
Message:

Fix zone_merge_all in ppc architectures.

Location:
arch
Files:
4 edited

Legend:

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

    r381465e rf6a0f06  
    6060        frame_mark_unavailable(0, 4);
    6161       
    62         /* Merge all zones to 1 big zone */
    63         zone_merge_all();
    6462}
  • arch/ppc32/src/ppc32.c

    r381465e rf6a0f06  
    6060void arch_post_mm_init(void)
    6161{
     62        if (config.cpu_active == 1) {
     63                /* Merge all zones to 1 big zone */
     64                zone_merge_all();
     65        }
    6266}
    6367
  • arch/ppc64/src/mm/frame.c

    r381465e rf6a0f06  
    6060        frame_mark_unavailable(0, 4);
    6161       
    62         /* Merge all zones to 1 big zone */
    63         zone_merge_all();
    6462}
  • arch/ppc64/src/ppc64.c

    r381465e rf6a0f06  
    4848void arch_post_mm_init(void)
    4949{
     50        if (config.cpu_active == 1) {
     51                /* Merge all zones to 1 big zone */
     52                zone_merge_all();
     53        }
    5054}
    5155
Note: See TracChangeset for help on using the changeset viewer.