summaryrefslogtreecommitdiff
path: root/mm/slub.c
AgeCommit message (Expand)AuthorFilesLines
2024-10-02mm, slab: suppress warnings in test_leak_destroy kunit testVlastimil Babka1-2/+3
2024-09-18Merge tag 'slab-for-6.12' of git://git.kernel.org/pub/scm/linux/kernel/git/vb...Linus Torvalds1-141/+271
2024-09-16Merge tag 'vfs-6.12.file' of git://git.kernel.org/pub/scm/linux/kernel/git/vf...Linus Torvalds1-7/+13
2024-09-13Merge branch 'slab/for-6.12/kmem_cache_args' into slab/for-nextVlastimil Babka1-79/+81
2024-09-13Merge branch 'slab/for-6.12/rcu_barriers' into slab/for-nextVlastimil Babka1-8/+131
2024-09-10slab: remove rcu_freeptr_offset from struct kmem_cacheChristian Brauner1-18/+7
2024-09-10slab: pass struct kmem_cache_args to do_kmem_cache_create()Christian Brauner1-1/+16
2024-09-10slab: pull kmem_cache_open() into do_kmem_cache_create()Christian Brauner1-70/+62
2024-09-10slab: s/__kmem_cache_create/do_kmem_cache_create/gChristian Brauner1-1/+1
2024-09-10memcg: add charging of already allocated slab objectsShakeel Butt1-0/+53
2024-09-03mm, slub: avoid zeroing kmalloc redzonePeng Fan1-47/+53
2024-09-02mm/slub: add check for s->flags in the alloc_tagging_slab_free_hookHao Ge1-0/+4
2024-08-29mm: add kmem_cache_create_rcu()Christian Brauner1-7/+13
2024-08-27slub: Introduce CONFIG_SLUB_RCU_DEBUGJann Horn1-8/+71
2024-08-27kasan: catch invalid free before SLUB reinitializes the objectJann Horn1-0/+7
2024-08-26Reenable NUMA policy support in the slab allocatorChristoph Lameter1-1/+5
2024-08-26mm, slub: print CPU id (and its node) on slab OOMAxel Rasmussen1-2/+3
2024-07-30mm, slub: do not call do_slab_free for kfence objectRik van Riel1-0/+3
2024-07-22Merge tag 'mm-stable-2024-07-21-14-50' of git://git.kernel.org/pub/scm/linux/...Linus Torvalds1-21/+30
2024-07-18mm, slab: put should_failslab() back behind CONFIG_SHOULD_FAILSLABVlastimil Babka1-8/+0
2024-07-15Merge branch 'slab/for-6.11/buckets' into slab/for-nextVlastimil Babka1-55/+74
2024-07-11mm, slab: move prepare_slab_obj_exts_hook under CONFIG_MEM_ALLOC_PROFILINGSuren Baghdasaryan1-27/+21
2024-07-10mm: remove CONFIG_MEMCG_KMEMJohannes Weiner1-5/+5
2024-07-04mm, slab: move allocation tagging code in the alloc path into a hookSuren Baghdasaryan1-36/+50
2024-07-04mm: slub: disable KMSAN when checking the padding bytesIlya Leoshkevich1-4/+12
2024-07-04mm: slub: let KMSAN access metadataIlya Leoshkevich1-0/+2
2024-07-04kmsan: support SLAB_POISONIlya Leoshkevich1-4/+11
2024-07-03mm/slab: Plumb kmem_buckets into __do_kmalloc_node()Kees Cook1-10/+10
2024-06-25mm/slab: fix 'variable obj_exts set but not used' warningSuren Baghdasaryan1-3/+4
2024-06-24slab: delete useless RED_INACTIVE and RED_ACTIVEChengming Zhou1-2/+2
2024-06-07slab: don't put freepointer outside of object if only orig_sizeChengming Zhou1-5/+6
2024-06-07slab: make check_object() more consistentChengming Zhou1-21/+41
2024-06-06codetag: avoid race at alloc_slab_obj_extsThadeu Lima de Souza Cascardo1-2/+3
2024-05-31mm: Reduce the number of slab->folio castsMatthew Wilcox (Oracle)1-4/+2
2024-05-28mm, slab: don't wrap internal functions with alloc_hooks()Vlastimil Babka1-13/+13
2024-05-19Merge tag 'mm-stable-2024-05-17-19-19' of git://git.kernel.org/pub/scm/linux/...Linus Torvalds1-188/+280
2024-05-13Merge tag 'slab-for-6.10' of git://git.kernel.org/pub/scm/linux/kernel/git/vb...Linus Torvalds1-32/+86
2024-05-02mm/slub: mark racy access on slab->freelistlinke li1-1/+1
2024-05-01mm/slub: avoid zeroing outside-object freepointer for single freeNicolas Bouchinet1-23/+29
2024-04-26mm, slab: move slab_memcg hooks to mm/memcontrol.cVlastimil Babka1-101/+2
2024-04-26mm, slab: move memcg charging to post-alloc hookVlastimil Babka1-103/+77
2024-04-26slub: remove use of page->flagsMatthew Wilcox (Oracle)1-8/+2
2024-04-26mm/slub: avoid recursive loop with kmemleakKees Cook1-1/+1
2024-04-26codetag: debug: introduce OBJEXTS_ALLOC_FAIL to mark failed slab_ext allocationsSuren Baghdasaryan1-7/+39
2024-04-26codetag: debug: skip objext checking when it's for objext itselfSuren Baghdasaryan1-0/+33
2024-04-26mm/slab: enable slab allocation tagging for kmalloc and friendsSuren Baghdasaryan1-25/+25
2024-04-26mm/slab: add allocation accounting into slab allocation and free pathsSuren Baghdasaryan1-1/+95
2024-04-26mm/slab: introduce SLAB_NO_OBJ_EXT to avoid obj_ext creationSuren Baghdasaryan1-2/+3
2024-04-26mm: introduce __GFP_NO_OBJ_EXT flag to selectively prevent slabobj_ext creationSuren Baghdasaryan1-0/+2
2024-04-26mm: introduce slabobj_ext to support slab object extensionsSuren Baghdasaryan1-20/+81