Changeset c3ebc47 in mainline for kernel/generic/src/mm/slab.c


Ignore:
Timestamp:
2009-03-24T03:06:21Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
21a639b7
Parents:
05641a9e
Message:

add malloc slab caches for up to 4 MB blocks

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/mm/slab.c

    r05641a9e rc3ebc47  
    130130/** Caches for malloc */
    131131static slab_cache_t *malloc_caches[SLAB_MAX_MALLOC_W - SLAB_MIN_MALLOC_W + 1];
    132 char *malloc_names[] =  {
     132static char *malloc_names[] =  {
    133133        "malloc-16",
    134134        "malloc-32",
     
    145145        "malloc-64K",
    146146        "malloc-128K",
    147         "malloc-256K"
     147        "malloc-256K",
     148        "malloc-512K",
     149        "malloc-1M",
     150        "malloc-2M",
     151        "malloc-4M"
    148152};
    149153
Note: See TracChangeset for help on using the changeset viewer.