Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 689 → Rev 690

/kernel/trunk/arch/amd64/src/mm/page.c
47,7 → 47,7
if (config.cpu_active == 1) {
page_operations = &page_pt_operations;
dba = frame_alloc(FRAME_KA | FRAME_PANIC, ONE_FRAME);
dba = frame_alloc(FRAME_KA | FRAME_PANIC, ONE_FRAME, NULL);
memsetb(dba, PAGE_SIZE, 0);
 
bootstrap_dba = dba;
/kernel/trunk/arch/ia32/src/mm/page.c
52,7 → 52,7
if (config.cpu_active == 1) {
page_operations = &page_pt_operations;
dba = frame_alloc(FRAME_KA | FRAME_PANIC, ONE_FRAME);
dba = frame_alloc(FRAME_KA | FRAME_PANIC, ONE_FRAME, NULL);
memsetb(dba, PAGE_SIZE, 0);
 
bootstrap_dba = dba;