summaryrefslogtreecommitdiffstats
path: root/mm (follow)
Commit message (Expand)AuthorAgeFilesLines
* Merge tag 'cgroup-for-6.1' of git://git.kernel.org/pub/scm/linux/kernel/git/t...Linus Torvalds2022-10-101-2/+2
|\
| * Merge branch 'for-6.0-fixes' into for-6.1Tejun Heo2022-09-2317-137/+253
| |\
| * | cgroup: Fix build failure when CONFIG_SHRINKER_DEBUGTejun Heo2022-08-291-1/+1
| * | cgroup: Homogenize cgroup_get_from_id() return valueMichal Koutný2022-08-261-2/+2
* | | Merge tag 'random-6.1-rc1-for-linus' of git://git.kernel.org/pub/scm/linux/ke...Linus Torvalds2022-10-101-1/+1
|\ \ \
| * | | kfence: use better stack hash seedJason A. Donenfeld2022-09-291-1/+1
| | |/ | |/|
* | | Merge tag 'slab-for-6.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git...Linus Torvalds2022-10-106-751/+718
|\ \ \
| * \ \ Merge branch 'slab/for-6.1/slub_validation_locking' into slab/for-nextVlastimil Babka2022-09-301-11/+14
| |\ \ \
| | * | | mm/slub: fix a slab missed to be freed problemFeng Tang2022-09-301-11/+14
| * | | | Merge branch 'slab/for-6.1/kmalloc_size_roundup' into slab/for-nextVlastimil Babka2022-09-292-3/+48
| |\ \ \ \
| | * | | | slab: Introduce kmalloc_size_roundup()Kees Cook2022-09-293-3/+40
| | * | | | slab: Remove __malloc attribute from realloc functionsKees Cook2022-09-291-2/+2
| * | | | | Merge branch 'slab/for-6.1/slub_debug_waste' into slab/for-nextVlastimil Babka2022-09-292-38/+119
| |\ \ \ \ \
| | * | | | | mm/slub: enable debugging memory wasting of kmallocFeng Tang2022-09-232-38/+119
| | | |/ / / | | |/| | |
| * | | | | Merge branch 'slab/for-6.1/trivial' into slab/for-nextVlastimil Babka2022-09-291-3/+6
| |\ \ \ \ \
| | * | | | | mm/slub: clean up create_unique_id()Chao Yu2022-09-261-3/+6
| * | | | | | Merge branch 'slab/for-6.1/slub_validation_locking' into slab/for-nextVlastimil Babka2022-09-231-198/+276
| |\ \ \ \ \ \ | | | |/ / / / | | |/| | | |
| | * | | | | slub: Make PREEMPT_RT support less convolutedThomas Gleixner2022-09-171-32/+24
| | * | | | | mm/slub: simplify __cmpxchg_double_slab() and slab_[un]lock()Vlastimil Babka2022-09-171-27/+12
| | * | | | | mm/slub: convert object_map_lock to non-raw spinlockVlastimil Babka2022-09-171-30/+6
| | * | | | | mm/slub: remove slab_lock() usage for debug operationsVlastimil Babka2022-09-171-11/+8
| | * | | | | mm/slub: restrict sysfs validation to debug caches and make it safeVlastimil Babka2022-09-171-52/+180
| | * | | | | mm/slub: move free_debug_processing() furtherVlastimil Babka2022-08-251-57/+57
| | | |_|_|/ | | |/| | |
| * | | | | Merge branch 'slab/for-6.1/common_kmalloc' into slab/for-nextVlastimil Babka2022-09-236-506/+272
| |\ \ \ \ \
| | * | | | | mm/sl[au]b: check if large object is valid in __ksize()Hyeonggon Yoo2022-09-011-1/+6
| | * | | | | mm/slab_common: move declaration of __ksize() to mm/slab.hHyeonggon Yoo2022-09-013-11/+3
| | * | | | | mm/slab_common: drop kmem_alloc & avoid dereferencing fields when not usingHyeonggon Yoo2022-09-014-29/+22
| | * | | | | mm/slab_common: unify NUMA and UMA version of tracepointsHyeonggon Yoo2022-09-014-31/+25
| | * | | | | mm/sl[au]b: cleanup kmem_cache_alloc[_node]_trace()Hyeonggon Yoo2022-09-013-62/+27
| | * | | | | mm/sl[au]b: generalize kmalloc subsystemHyeonggon Yoo2022-09-015-200/+107
| | * | | | | mm/sl[au]b: introduce common alloc/free functions without tracepointHyeonggon Yoo2022-08-243-7/+47
| | * | | | | mm/slab: kmalloc: pass requests larger than order-1 page to page allocatorHyeonggon Yoo2022-08-244-44/+63
| | * | | | | mm/slab_common: cleanup kmalloc_large()Hyeonggon Yoo2022-08-241-22/+13
| | * | | | | mm/slab_common: kmalloc_node: pass large requests to page allocatorHyeonggon Yoo2022-08-243-2/+13
| | * | | | | mm/slub: move kmalloc_large_node() to slab_common.cHyeonggon Yoo2022-08-242-25/+22
| | * | | | | mm/slab_common: fold kmalloc_order_trace() into kmalloc_large()Hyeonggon Yoo2022-08-241-13/+4
| | * | | | | mm/sl[au]b: factor out __do_kmalloc_node()Hyeonggon Yoo2022-08-242-81/+20
| | * | | | | mm/slab_common: cleanup kmalloc_track_caller()Hyeonggon Yoo2022-08-243-34/+0
| | * | | | | mm/slab_common: remove CONFIG_NUMA ifdefs for common kmalloc functionsHyeonggon Yoo2022-08-243-12/+1
| | * | | | | mm/slab: cleanup slab_alloc() and slab_alloc_node()Hyeonggon Yoo2022-08-241-36/+13
| | * | | | | mm/slab: move NUMA-related code to __do_cache_alloc()Hyeonggon Yoo2022-08-241-37/+31
| | |/ / / /
| * | | | | Merge branch 'slab/for-6.1/trivial' into slab/for-nextVlastimil Babka2022-09-232-12/+3
| |\ \ \ \ \ | | | |/ / / | | |/| / / | | |_|/ / | |/| | |
| | * | | mm/slub: Remove the unneeded result variableye xingchen2022-08-231-7/+2
| | * | | mm/slab_common: Remove the unneeded result variableye xingchen2022-08-231-5/+1
| | |/ /
* | | | Merge tag 'sched-rt-2022-10-05' of git://git.kernel.org/pub/scm/linux/kernel/...Linus Torvalds2022-10-104-42/+25
|\ \ \ \
| * | | | mm/compaction: Get rid of RT ifdefferyThomas Gleixner2022-09-192-5/+7
| * | | | mm/memcontrol: Replace the PREEMPT_RT conditionalsThomas Gleixner2022-09-191-13/+6
| * | | | mm/vmstat: Use preempt_[dis|en]able_nested()Thomas Gleixner2022-09-191-24/+12
| | |_|/ | |/| |
* | | | Merge tag 'sched-core-2022-10-07' of git://git.kernel.org/pub/scm/linux/kerne...Linus Torvalds2022-10-101-2/+2
|\ \ \ \
| * | | | freezer,sched: Rewrite core freezer logicPeter Zijlstra2022-09-071-2/+2
| | |_|/ | |/| |