summaryrefslogtreecommitdiffstats
path: root/mm/slub.c
Commit message (Expand)AuthorAgeFilesLines
* Merge tag 'mm-stable-2024-05-17-19-19' of git://git.kernel.org/pub/scm/linux/...Linus Torvalds2024-05-191-188/+280
|\
| * mm, slab: move slab_memcg hooks to mm/memcontrol.cVlastimil Babka2024-04-251-101/+2
| * mm, slab: move memcg charging to post-alloc hookVlastimil Babka2024-04-251-103/+77
| * slub: remove use of page->flagsMatthew Wilcox (Oracle)2024-04-251-8/+2
| * mm/slub: avoid recursive loop with kmemleakKees Cook2024-04-251-1/+1
| * codetag: debug: introduce OBJEXTS_ALLOC_FAIL to mark failed slab_ext allocationsSuren Baghdasaryan2024-04-251-7/+39
| * codetag: debug: skip objext checking when it's for objext itselfSuren Baghdasaryan2024-04-251-0/+33
| * mm/slab: enable slab allocation tagging for kmalloc and friendsSuren Baghdasaryan2024-04-251-25/+25
| * mm/slab: add allocation accounting into slab allocation and free pathsSuren Baghdasaryan2024-04-251-1/+95
| * mm/slab: introduce SLAB_NO_OBJ_EXT to avoid obj_ext creationSuren Baghdasaryan2024-04-251-2/+3
| * mm: introduce __GFP_NO_OBJ_EXT flag to selectively prevent slabobj_ext creationSuren Baghdasaryan2024-04-251-0/+2
| * mm: introduce slabobj_ext to support slab object extensionsSuren Baghdasaryan2024-04-251-20/+81
| * mm/slub: mark slab_free_freelist_hook() __always_inlineKent Overstreet2024-04-251-3/+3
* | Merge tag 'slab-for-6.10' of git://git.kernel.org/pub/scm/linux/kernel/git/vb...Linus Torvalds2024-05-131-32/+86
|\ \
| * | mm/slub: mark racy access on slab->freelistlinke li2024-05-021-1/+1
| * | slub: use count_partial_free_approx() in slab_out_of_memory()Jianfeng Wang2024-04-231-1/+1
| * | slub: introduce count_partial_free_approx()Jianfeng Wang2024-04-231-1/+38
| * | slub: Set __GFP_COMP in kmem_cache by defaultHaifeng Xu2024-04-151-3/+1
| * | mm/slub: remove duplicate initialization for early_kmem_cache_node_alloc()Sangyun Kim2024-04-091-1/+0
| * | mm/slub: correct comment in do_slab_free()Xiu Jianfeng2024-04-041-1/+1
| * | mm/slub: simplify get_partial_node()Xiongwei Song2024-04-041-8/+8
| * | mm/slub: add slub_get_cpu_partial() helperXiongwei Song2024-04-041-0/+10
| * | mm/slub: remove the check of !kmem_cache_has_cpu_partial()Xiongwei Song2024-04-041-2/+1
| * | mm/slub: Reduce memory consumption in extreme scenariosChen Jun2024-04-021-2/+23
| * | mm/slub: mark racy accesses on slab->slabslinke li2024-03-251-3/+3
| * | mm/slub: remove dummy slabinfo functionsXiu Jianfeng2024-03-251-10/+0
| |/
* / mm/slub: avoid zeroing outside-object freepointer for single freeNicolas Bouchinet2024-05-011-23/+29
|/
* Merge branch 'slab/for-6.9/slab-flag-cleanups' into slab/for-linusVlastimil Babka2024-03-121-3/+3
|\
| * mm, slab: use an enum to define SLAB_ cache creation flagsVlastimil Babka2024-02-261-3/+3
* | Merge branch 'slab/for-6.9/optimize-get-freelist' into slab/for-linusVlastimil Babka2024-03-121-18/+14
|\ \
| * | mm/slub: remove unused parameter in next_freelist_entry()Chengming Zhou2024-01-231-4/+3
| * | mm/slub: remove full list manipulation for non-debug slabChengming Zhou2024-01-231-4/+0
| * | mm/slub: directly load freelist from cpu partial slab in the likely caseChengming Zhou2024-01-231-10/+11
| |/
* | mm, slab: remove memcg_from_slab_obj()Vlastimil Babka2024-03-041-5/+0
* | mm, slab: remove the corner case of inc_slabs_node()Chengming Zhou2024-03-011-11/+2
* | mm/slab: Fix a kmemleak in kmem_cache_destroy()Xiaolei Wang2024-03-011-4/+2
* | mm, slab: fix the comment of cpu partial listChengming Zhou2024-02-211-1/+1
* | mm, slab: remove unused object_size parameter in kmem_cache_flags()Chengming Zhou2024-02-211-6/+3
* | mm/slub: remove parameter 'flags' in create_kmalloc_caches()Zheng Yejian2024-01-301-1/+1
* | mm/slub: unify all sl[au]b parameters with "slab_$param"Xiongwei Song2024-01-221-18/+23
|/
* Merge tag 'mm-stable-2024-01-08-15-31' of git://git.kernel.org/pub/scm/linux/...Linus Torvalds2024-01-091-31/+38
|\
| * mm, treewide: rename MAX_ORDER to MAX_PAGE_ORDERKirill A. Shutemov2024-01-081-2/+2
| * slub: use alloc_pages_node() in alloc_slab_page()Matthew Wilcox (Oracle)2024-01-051-5/+1
| * kasan: rename and document kasan_(un)poison_object_dataAndrey Konovalov2023-12-291-2/+2
| * slub, kasan: improve interaction of KASAN and slub_debug poisoningAndrey Konovalov2023-12-101-15/+26
* | Merge branch 'slab/for-6.8/slub-hook-cleanups' into slab/for-nextVlastimil Babka2024-01-041-64/+679
|\ \
| * | mm/slub: free KFENCE objects in slab_free_hook()Vlastimil Babka2023-12-281-12/+10
| * | mm/slub: handle bulk and single object freeing separatelyVlastimil Babka2023-12-071-24/+35
| * | mm/slub: introduce __kmem_cache_free_bulk() without free hooksVlastimil Babka2023-12-071-9/+47
| * | mm/slub: fix bulk alloc and free statsVlastimil Babka2023-12-071-1/+10