aboutsummaryrefslogtreecommitdiffstats
path: root/mm
diff options
authorLorenzo Stoakes <ljs@kernel.org>2026-05-22 17:00:10 +0100
committerAndrew Morton <akpm@linux-foundation.org>2026-05-28 21:31:21 -0700
commitf9c8525ca8fe76a4659da57b0dc43fa2f7f3f7b0 (patch)
tree296934ba6bfdbf2a957546a5c91640448a96f092 /mm
parenta5fec479046565e0125c38aaa716b8e431a8965c (diff)
downloadlinux-next-history-f9c8525ca8fe76a4659da57b0dc43fa2f7f3f7b0.tar.gz
mm/vma: remove mmap_action->success_hook
This hook was introduced to work around code that seemed to absolutely require access to a VMA pointer upon mmap(). However, providing this hook leaves a backdoor to drivers getting access to the very thing mmap_prepare eliminates - a pointer to the VMA. Let's solve this contradiction by removing it. The key intended user was hugetlb, however it seems that the best course now is to avoid allowing all drivers the ability to work around mmap_prepare, and find a different solution there. Link: https://lore.kernel.org/2521c19866f3f10f9085d094cc4f06769042be71.1779462249.git.ljs@kernel.org Signed-off-by: Lorenzo Stoakes <ljs@kernel.org> Cc: Arnd Bergmann <arnd@arndb.de> Cc: David Hildenbrand <david@kernel.org> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Cc: Jann Horn <jannh@google.com> Cc: Liam R. Howlett <liam@infradead.org> Cc: Michal Hocko <mhocko@suse.com> Cc: Mike Rapoport <rppt@kernel.org> Cc: Pedro Falcato <pfalcato@suse.de> Cc: Suren Baghdasaryan <surenb@google.com> Cc: Vlastimil Babka <vbabka@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'mm')
-rw-r--r--mm/util.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/mm/util.c b/mm/util.c
index 2b2a9df689d7c..4e172990afcd2 100644
--- a/mm/util.c
+++ b/mm/util.c
@@ -1397,8 +1397,6 @@ static int mmap_action_finish(struct vm_area_struct *vma,
if (!err)
err = call_vma_mapped(vma);
- if (!err && action->success_hook)
- err = action->success_hook(vma);
/* do_munmap() might take rmap lock, so release if held. */
maybe_rmap_unlock_action(vma, action);