Changeset 085d973 in mainline for genarch/src/acpi/matd.c


Ignore:
Timestamp:
2006-02-08T12:34:05Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5e3757d
Parents:
eb1b8b6
Message:

Cleanup o frame allocator.
Removed early_malloc & initial heap.
Will break ia64, ppc & sparc.
Added e820 table print.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • genarch/src/acpi/matd.c

    reb1b8b6 r085d973  
    3737#include <config.h>
    3838#include <print.h>
    39 #include <mm/heap.h>
     39#include <mm/slab.h>
    4040#include <memstr.h>
    4141#include <sort.h>
     
    145145
    146146        /* create madt apic entries index array */
    147         madt_entries_index = (struct madt_apic_header * *) early_malloc(madt_entries_index_cnt * sizeof(struct madt_apic_header * *));
     147        madt_entries_index = (struct madt_apic_header * *) malloc(madt_entries_index_cnt * sizeof(struct madt_apic_header * *));
    148148
    149149        __u32 index = 0;
Note: See TracChangeset for help on using the changeset viewer.