summaryrefslogtreecommitdiff
path: root/mm/slub.c
AgeCommit message (Expand)AuthorFilesLines
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
2024-04-26mm/slub: mark slab_free_freelist_hook() __always_inlineKent Overstreet1-3/+3
2024-03-12Merge branch 'slab/for-6.9/slab-flag-cleanups' into slab/for-linusVlastimil Babka1-3/+3
2024-03-12Merge branch 'slab/for-6.9/optimize-get-freelist' into slab/for-linusVlastimil Babka1-18/+14
2024-03-04mm, slab: remove memcg_from_slab_obj()Vlastimil Babka1-5/+0
2024-03-01mm, slab: remove the corner case of inc_slabs_node()Chengming Zhou1-11/+2
2024-03-01mm/slab: Fix a kmemleak in kmem_cache_destroy()Xiaolei Wang1-4/+2
2024-02-26mm, slab: use an enum to define SLAB_ cache creation flagsVlastimil Babka1-3/+3
2024-02-21mm, slab: fix the comment of cpu partial listChengming Zhou1-1/+1
2024-02-21mm, slab: remove unused object_size parameter in kmem_cache_flags()Chengming Zhou1-6/+3
2024-01-30mm/slub: remove parameter 'flags' in create_kmalloc_caches()Zheng Yejian1-1/+1
2024-01-23mm/slub: remove unused parameter in next_freelist_entry()Chengming Zhou1-4/+3
2024-01-23mm/slub: remove full list manipulation for non-debug slabChengming Zhou1-4/+0
2024-01-23mm/slub: directly load freelist from cpu partial slab in the likely caseChengming Zhou1-10/+11
2024-01-22mm/slub: unify all sl[au]b parameters with "slab_$param"Xiongwei Song1-18/+23
2024-01-09Merge tag 'mm-stable-2024-01-08-15-31' of git://git.kernel.org/pub/scm/linux/...Linus Torvalds1-31/+38
2024-01-09mm, treewide: rename MAX_ORDER to MAX_PAGE_ORDERKirill A. Shutemov1-2/+2
2024-01-05slub: use alloc_pages_node() in alloc_slab_page()Matthew Wilcox (Oracle)1-5/+1
2024-01-04Merge branch 'slab/for-6.8/slub-hook-cleanups' into slab/for-nextVlastimil Babka1-64/+679
2023-12-29kasan: rename and document kasan_(un)poison_object_dataAndrey Konovalov1-2/+2
2023-12-28mm/slub: free KFENCE objects in slab_free_hook()Vlastimil Babka1-12/+10
2023-12-11slub, kasan: improve interaction of KASAN and slub_debug poisoningAndrey Konovalov1-15/+26
2023-12-07mm/slub: handle bulk and single object freeing separatelyVlastimil Babka1-24/+35
2023-12-07mm/slub: introduce __kmem_cache_free_bulk() without free hooksVlastimil Babka1-9/+47
2023-12-07mm/slub: fix bulk alloc and free statsVlastimil Babka1-1/+10
2023-12-06mm/slub: optimize free fast path code layoutVlastimil Babka1-16/+24
2023-12-06mm/slub: optimize alloc fastpath code layoutVlastimil Babka1-35/+54
2023-12-06mm/slub: remove slab_alloc() and __kmem_cache_alloc_lru() wrappersVlastimil Babka1-16/+9
2023-12-06mm/slab: move kmalloc() functions from slab_common.c to slub.cVlastimil Babka1-8/+118
2023-12-06mm/slab: move kfree() from slab_common.c to slub.cVlastimil Babka1-5/+46
2023-12-06mm/slab: move struct kmem_cache_node from slab.h to slub.cVlastimil Babka1-0/+27
2023-12-06mm/slab: move memcg related functions from slab.h to slub.cVlastimil Babka1-0/+205
2023-12-06mm/slab: move pre/post-alloc hooks from slab.h to slub.cVlastimil Babka1-0/+81
2023-12-06mm/slab: move struct kmem_cache_cpu declaration to slub.cVlastimil Babka1-0/+54
2023-12-05mm/slab, docs: switch mm-api docs generation from slab.c to slub.cVlastimil Babka1-0/+21
2023-12-05slub: Update frozen slabs documentations in the sourceChengming Zhou1-4/+18
2023-12-05slub: Rename all *unfreeze_partials* functions to *put_partials*Chengming Zhou1-17/+17
2023-12-05slub: Optimize deactivate_slab()Chengming Zhou1-53/+26
2023-12-04slub: Delay freezing of partial slabsChengming Zhou1-91/+24
2023-12-04slub: Introduce freeze_slab()Chengming Zhou1-0/+27