Changeset 57da95c in mainline for kernel/generic/include/mm/as.h


Ignore:
Timestamp:
2006-09-18T11:47:28Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
29b2bbf
Parents:
f1d1f5d3
Message:
  • Create a dedicated slab cache for as_t objects and switch from malloc/free to slab_alloc/slab_free for

them.

  • Slightly fix and improve both the kernel and userspace atomic_add() on sparc64.
  • More TSB work on the sparc64 front.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/mm/as.h

    rf1d1f5d3 r57da95c  
    161161        /** Data to be used by the backend. */
    162162        mem_backend_data_t backend_data;
     163       
     164        as_arch_t arch;
    163165};
    164166
     
    193195extern void as_install_arch(as_t *as);
    194196#endif /* !def as_install_arch */
     197#ifndef as_deinstall_arch
     198extern void as_deinstall_arch(as_t *as);
     199#endif /* !def as_deinstall_arch */
    195200
    196201/* Backend declarations. */
Note: See TracChangeset for help on using the changeset viewer.