arm64: module: remove unneeded call to kasan_alloc_module_shadow()
authorMike Rapoport (IBM) <rppt@kernel.org>
Sun, 5 May 2024 16:06:13 +0000 (19:06 +0300)
committerLuis Chamberlain <mcgrof@kernel.org>
Tue, 14 May 2024 07:31:43 +0000 (00:31 -0700)
Since commit f6f37d9320a1 ("arm64: select KASAN_VMALLOC for SW/HW_TAGS
modes") KASAN_VMALLOC is always enabled when KASAN is on. This means
that allocations in module_alloc() will be tracked by KASAN protection
for vmalloc() and that kasan_alloc_module_shadow() will be always an
empty inline and there is no point in calling it.

Drop meaningless call to kasan_alloc_module_shadow() from
module_alloc().

Signed-off-by: Mike Rapoport (IBM) <rppt@kernel.org>
Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>
arch/arm64/kernel/module.c

index 47e0be610bb6a13f26997c73a46151006ecfbedc..e92da4da1b2a331e79591b1e8262cd3db982738d 100644 (file)
@@ -141,11 +141,6 @@ void *module_alloc(unsigned long size)
                                    __func__);
        }
 
-       if (p && (kasan_alloc_module_shadow(p, size, GFP_KERNEL) < 0)) {
-               vfree(p);
-               return NULL;
-       }
-
        /* Memory is intended to be executable, reset the pointer tag. */
        return kasan_reset_tag(p);
 }