Changeset 381465e in mainline


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

zone_merge_all must be called after frame_init is completed - otherwise
new zone information can be allocated over the not-yet-blacklisted areas.

Location:
arch
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • arch/amd64/src/amd64.c

    r31282f9 r381465e  
    135135        if (config.cpu_active == 1) {
    136136#ifdef CONFIG_FB
    137         if (vesa_present()) vesa_init();
    138         else
     137                if (vesa_present())
     138                        vesa_init();
     139                else
    139140#endif
    140                 ega_init();     /* video */
     141                        ega_init();     /* video */
    141142                /* Enable debugger */
    142143                debugger_init();
     144                /* Merge all memory zones to 1 big zone */
     145                zone_merge_all();
    143146        }
    144147        /* Setup fast SYSCALL/SYSRET */
  • arch/ia32/src/ia32.c

    r31282f9 r381465e  
    7979
    8080#ifdef CONFIG_FB
    81                 if (vesa_present()) vesa_init();
     81                if (vesa_present())
     82                        vesa_init();
    8283                else
    8384#endif
    84                 ega_init();     /* video */
     85                        ega_init();     /* video */
    8586               
    8687               
    8788                /* Enable debugger */
    8889                debugger_init();
     90                /* Merge all memory zones to 1 big zone */
     91                zone_merge_all();
    8992        }
    9093}
  • arch/ia32/src/mm/frame.c

    r31282f9 r381465e  
    134134#endif
    135135#endif
    136                 /* Merge all zones to 1 big zone */
    137                 zone_merge_all();
    138136        }
    139137}
Note: See TracChangeset for help on using the changeset viewer.