Ignore:
File:
1 edited

Legend:

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

    rc81132d r63e27ef  
    9090 *
    9191 */
    92 static slab_cache_t *as_cache;
     92static slab_cache_t *as_slab;
    9393
    9494/** ASID subsystem lock.
     
    131131        as_arch_init();
    132132       
    133         as_cache = slab_cache_create("as_t", sizeof(as_t), 0,
     133        as_slab = slab_cache_create("as_t", sizeof(as_t), 0,
    134134            as_constructor, as_destructor, SLAB_CACHE_MAGDEFERRED);
    135135       
     
    153153as_t *as_create(unsigned int flags)
    154154{
    155         as_t *as = (as_t *) slab_alloc(as_cache, 0);
     155        as_t *as = (as_t *) slab_alloc(as_slab, 0);
    156156        (void) as_create_arch(as, 0);
    157157       
     
    254254#endif
    255255       
    256         slab_free(as_cache, as);
     256        slab_free(as_slab, as);
    257257}
    258258
     
    833833                            btree_node_t, leaf_link);
    834834                       
    835                         if ((cond = (node->keys != 0))) {
     835                        if ((cond = (bool) node->keys)) {
    836836                                uintptr_t ptr = node->key[node->keys - 1];
    837837                                size_t node_size =
Note: See TracChangeset for help on using the changeset viewer.