[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20250615141129.653384-2-ysk@kzalloc.com>
Date: Sun, 15 Jun 2025 14:11:30 +0000
From: Yunseong Kim <ysk@...lloc.com>
To: Russell King <linux@...linux.org.uk>,
Andrew Morton <akpm@...ux-foundation.org>,
Oleg Nesterov <oleg@...hat.com>,
David Hildenbrand <david@...hat.com>,
"Peter Zijlstra (Intel)" <peterz@...radead.org>
Cc: linux-arm-kernel@...ts.infradead.org,
linux-kernel@...r.kernel.org,
Yunseong Kim <ysk@...lloc.com>
Subject: [PATCH] arm/probes/uprobes: Remove redundant preempt_disable/enable around kmap_atomic
The 'kmap_atomic' API implicitly disables preemption for the duration
of its use. It merely cleans up the code by removing unnecessary
operations, making it clearer and efficient.
Signed-off-by: Yunseong Kim <ysk@...lloc.com>
---
arch/arm/probes/uprobes/core.c | 4 ----
1 file changed, 4 deletions(-)
diff --git a/arch/arm/probes/uprobes/core.c b/arch/arm/probes/uprobes/core.c
index 885e0c5e8c20..ebd17af0d865 100644
--- a/arch/arm/probes/uprobes/core.c
+++ b/arch/arm/probes/uprobes/core.c
@@ -116,16 +116,12 @@ void arch_uprobe_copy_ixol(struct page *page, unsigned long vaddr,
void *xol_page_kaddr = kmap_atomic(page);
void *dst = xol_page_kaddr + (vaddr & ~PAGE_MASK);
- preempt_disable();
-
/* Initialize the slot */
memcpy(dst, src, len);
/* flush caches (dcache/icache) */
flush_uprobe_xol_access(page, vaddr, dst, len);
- preempt_enable();
-
kunmap_atomic(xol_page_kaddr);
}
--
2.48.1
Powered by blists - more mailing lists