Changeset 071a8ae6 in mainline for generic/src/mm/as.c


Ignore:
Timestamp:
2006-02-01T20:54:34Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b5e0bb8
Parents:
ef67bab
Message:

Blacklist addresses between 0xa0000 and 0xfffff on ia64 for frame allocator.
This area contains VGA text frame buffer and should be avoided.
falloc2 test now passes on ia64.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • generic/src/mm/as.c

    ref67bab r071a8ae6  
    5757as_operations_t *as_operations = NULL;
    5858
     59/** Kernel address space. */
     60as_t *AS_KERNEL = NULL;
     61
    5962static int get_area_flags(as_area_t *a);
    6063
     
    6871}
    6972
    70 /** Create address space. */
     73/** Create address space.
     74 *
     75 * @param flags Flags that influence way in wich the address space is created.
     76 */
    7177as_t *as_create(int flags)
    7278{
Note: See TracChangeset for help on using the changeset viewer.