Changeset b2c92f33 in mainline


Ignore:
Timestamp:
2006-01-08T16:37:58Z (19 years ago)
Author:
Sergey Bondari <bondari@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
69a03b9
Parents:
f275cb3
Message:

Fixes of 3-param frame_alloc() function calls

Location:
arch
Files:
2 edited

Legend:

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

    rf275cb3 rb2c92f33  
    4848                page_operations = &page_pt_operations;
    4949       
    50                 dba = frame_alloc(FRAME_KA | FRAME_PANIC, ONE_FRAME);
     50                dba = frame_alloc(FRAME_KA | FRAME_PANIC, ONE_FRAME, NULL);
    5151                memsetb(dba, PAGE_SIZE, 0);
    5252
  • arch/ia32/src/mm/page.c

    rf275cb3 rb2c92f33  
    5353                page_operations = &page_pt_operations;
    5454       
    55                 dba = frame_alloc(FRAME_KA | FRAME_PANIC, ONE_FRAME);
     55                dba = frame_alloc(FRAME_KA | FRAME_PANIC, ONE_FRAME, NULL);
    5656                memsetb(dba, PAGE_SIZE, 0);
    5757
Note: See TracChangeset for help on using the changeset viewer.