Changeset fb4d788 in mainline for kernel/generic/src/mm/slab.c
- Timestamp:
- 2015-07-28T11:28:14Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6accc5cf
- Parents:
- df2bce32 (diff), 47726b5e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/mm/slab.c
rdf2bce32 rfb4d788 610 610 unsigned int kmflag), size_t (*destructor)(void *obj), unsigned int flags) 611 611 { 612 ASSERT(size > 0); 613 612 614 memsetb(cache, sizeof(*cache), 0); 613 615 cache->name = name; … … 888 890 /* Initialize magazine cache */ 889 891 _slab_cache_create(&mag_cache, "slab_magazine_t", 890 sizeof(slab_magazine_t) + SLAB_MAG_SIZE * sizeof(void *),892 sizeof(slab_magazine_t) + SLAB_MAG_SIZE * sizeof(void *), 891 893 sizeof(uintptr_t), NULL, NULL, SLAB_CACHE_NOMAGAZINE | 892 894 SLAB_CACHE_SLINSIDE);
Note:
See TracChangeset
for help on using the changeset viewer.