The quilt patch titled Subject: mm/util.c: add warning if __vm_enough_memory fails has been removed from the -mm tree. Its filename was mm-add-warning-if-__vm_enough_memory-fails.patch This patch was dropped because it was merged into the mm-stable branch of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm ------------------------------------------------------ From: Kefeng Wang <wangkefeng.wang@xxxxxxxxxx> Subject: mm/util.c: add warning if __vm_enough_memory fails Date: Tue, 26 Jul 2022 22:54:28 +0800 If a process has not enough memory to allocate a new virtual mapping, we may meet verious kinds of error, eg, fork cannot allocate memory, SIGBUS error in shmem, but it is difficult to confirm them, let's add some debug information to easily to check this scenario if __vm_enough_memory fails. Link: https://lkml.kernel.org/r/20220726145428.8030-1-wangkefeng.wang@xxxxxxxxxx Reported-by: Yongqiang Liu <liuyongqiang13@xxxxxxxxxx> Signed-off-by: Kefeng Wang <wangkefeng.wang@xxxxxxxxxx> Acked-by: David Hildenbrand <david@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/util.c | 2 ++ 1 file changed, 2 insertions(+) --- a/mm/util.c~mm-add-warning-if-__vm_enough_memory-fails +++ a/mm/util.c @@ -1052,6 +1052,8 @@ int __vm_enough_memory(struct mm_struct if (percpu_counter_read_positive(&vm_committed_as) < allowed) return 0; error: + pr_warn_ratelimited("%s: pid: %d, comm: %s, no enough memory for the allocation\n", + __func__, current->pid, current->comm); vm_unacct_memory(pages); return -ENOMEM; _ Patches currently in -mm which might be from wangkefeng.wang@xxxxxxxxxx are mm-reuse-pageblock_start-end_pfn-macro.patch mm-add-pageblock_align-macro.patch mm-add-pageblock_aligned-macro.patch memblock-tests-add-new-pageblock-related-macro.patch kernel-exit-cleanup-release_thread.patch