* [PATCH 1/6] alpha: run check_mmu_context() from finish_arch_post_lock_switch()
2026-08-09 8:49 [PATCH 0/6] alpha: fix stale TLB translations breaking copy-on-write and writeback Magnus Lindholm
@ 2026-08-09 8:49 ` Magnus Lindholm
2026-08-09 8:49 ` [PATCH 2/6] alpha: only use a targeted tbi() when the target mm is really current Magnus Lindholm
` (4 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Magnus Lindholm @ 2026-08-09 8:49 UTC (permalink / raw)
To: richard.henderson, mattst88, linux-kernel, linux-alpha
Cc: glaubitz, mcree, ink, macro, Magnus Lindholm
check_mmu_context() clears asn_lock and acts on need_new_asn, but it runs
only as the tail of switch_to(), after alpha_switch_to() returns. A newly
forked task never gets there: its first context switch resumes at
ret_from_fork, which goes to schedule_tail() and then to user space rather
than returning to the code following alpha_switch_to(). A new kernel
thread reaches schedule_tail() the same way, through
ret_from_kernel_thread().
asn_lock is left set on that CPU, so the forked task runs user space with
it set and interrupts enabled. A TLB shootdown IPI arriving in that window
takes the deferred path, and the need_new_asn handshake meant to cover that
never runs.
finish_task_switch() calls finish_arch_post_lock_switch() with preemption
disabled, on the CPU that ran switch_mm(), so hooking check_mmu_context()
there completes the deferred-ASN bookkeeping for both. Running it when
switch_to() has already done the work is harmless: check_mmu_context()
clears need_new_asn as it goes.
The same hook is also called from kthread_use_mm() and
sched_force_init_mm(), outside the scheduler's preemption-disabled switch
tail. check_mmu_context() acts on per-CPU state, so it can only complete
this bookkeeping while still on the CPU that ran switch_mm(). Testing
preemptible() expresses that condition directly rather than naming callers:
where those paths leave preemption enabled the CPU may already have changed
and nothing is done, and where preemption is disabled across the switch, or
not configured at all, no migration is possible and running it is correct.
Signed-off-by: Magnus Lindholm <linmag7@gmail.com>
---
arch/alpha/include/asm/mmu_context.h | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/arch/alpha/include/asm/mmu_context.h b/arch/alpha/include/asm/mmu_context.h
index eee8fe836a59..f7afc64ca8dd 100644
--- a/arch/alpha/include/asm/mmu_context.h
+++ b/arch/alpha/include/asm/mmu_context.h
@@ -181,6 +181,34 @@ do { \
#define check_mmu_context() do { } while(0)
#endif
+/*
+ * check_mmu_context() clears asn_lock and acts on need_new_asn, but it runs
+ * only as the tail of switch_to(), which a newly forked task never reaches:
+ * it resumes at ret_from_fork instead. asn_lock is left set and the task
+ * goes on to run user space with it set and interrupts enabled, so a
+ * shootdown IPI arriving in that window takes the deferred path and the
+ * need_new_asn handshake meant to cover it never runs.
+ *
+ * finish_task_switch() calls this hook with preemption disabled on the CPU
+ * that ran switch_mm(), which covers that case. Running it when switch_to()
+ * has already done the work is harmless: check_mmu_context() clears
+ * need_new_asn as it goes.
+ *
+ * kthread_use_mm() and sched_force_init_mm() also call this hook, outside
+ * the scheduler's preemption-disabled switch tail. check_mmu_context() acts
+ * on per-CPU state, so it can only complete this bookkeeping while still on
+ * the CPU that ran switch_mm(); preemptible() tests that directly. Where
+ * those paths leave preemption enabled the CPU may already have changed and
+ * nothing is done; where preemption is disabled across the switch, or not
+ * configured at all, no migration is possible and running it is correct.
+ */
+#define finish_arch_post_lock_switch finish_arch_post_lock_switch
+static inline void finish_arch_post_lock_switch(void)
+{
+ if (!preemptible())
+ check_mmu_context();
+}
+
__EXTERN_INLINE void
ev5_activate_mm(struct mm_struct *prev_mm, struct mm_struct *next_mm)
{
--
2.53.0
^ permalink raw reply related [flat|nested] 7+ messages in thread* [PATCH 2/6] alpha: only use a targeted tbi() when the target mm is really current
2026-08-09 8:49 [PATCH 0/6] alpha: fix stale TLB translations breaking copy-on-write and writeback Magnus Lindholm
2026-08-09 8:49 ` [PATCH 1/6] alpha: run check_mmu_context() from finish_arch_post_lock_switch() Magnus Lindholm
@ 2026-08-09 8:49 ` Magnus Lindholm
2026-08-09 8:49 ` [PATCH 3/6] alpha: fix the local TLB invalidate in flush_tlb_page() Magnus Lindholm
` (3 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Magnus Lindholm @ 2026-08-09 8:49 UTC (permalink / raw)
To: richard.henderson, mattst88, linux-kernel, linux-alpha
Cc: glaubitz, mcree, ink, macro, Magnus Lindholm
A copy-on-write fault replaces the page and calls ptep_clear_flush(),
which ends up in flush_tlb_page(). For a non-executable vma the remote
IPI handler issues a targeted tbi(2, addr).
tbi() acts on the address space context currently loaded on that CPU, so
it means something only when that context belongs to the target mm.
current->active_mm is the wrong test: under lazy TLB an idle or kernel
task keeps the mm as its active_mm while a different ASN is loaded in the
PCB - enter_lazy_tlb() updates only the borrowing task's page table base,
not its ASN. The tbi() then invalidates the wrong context and the stale
translation survives. Nothing forces the old ASN to be retired
afterwards either, because mm->context[cpu] is still valid, so the
resuming thread can reuse it along with the stale entry.
Use current->mm instead. When no thread of the mm is current, fall back
to the deferred invalidation, which forces a fresh ASN at the next switch
and is correct whatever is loaded now.
This does not make current->mm a guarantee that the mm's context is
loaded: kthread_use_mm() sets current->mm and reaches switch_mm_irqs_off()
directly, which on alpha only prepares the incoming PCB. That is a
separate problem in the switch path rather than in this handler, and it
is not addressed here.
Signed-off-by: Magnus Lindholm <linmag7@gmail.com>
---
arch/alpha/kernel/smp.c | 15 ++++++++++++++-
1 file changed, 14 insertions(+), 1 deletion(-)
diff --git a/arch/alpha/kernel/smp.c b/arch/alpha/kernel/smp.c
index ed06367ece57..0dfe29b59039 100644
--- a/arch/alpha/kernel/smp.c
+++ b/arch/alpha/kernel/smp.c
@@ -669,7 +669,20 @@ ipi_flush_tlb_page(void *x)
struct flush_tlb_page_struct *data = x;
struct mm_struct * mm = data->mm;
- if (mm == current->active_mm && !asn_locked())
+ /*
+ * tbi() acts on the address space context currently loaded on this
+ * CPU, so it reaches MM's translations only when a thread of MM is
+ * really running here. current->active_mm is not sufficient: under
+ * lazy TLB an idle or kernel task keeps MM as its active_mm while a
+ * different ASN is loaded in the PCB, so the tbi() invalidates the
+ * wrong context and the stale entry survives. Nothing forces the
+ * old ASN to be retired afterwards either, mm->context[cpu] still
+ * being valid, so the resuming thread can reuse it.
+ *
+ * Otherwise fall back to invalidating the context, which forces a
+ * fresh ASN at the next switch whatever is loaded now.
+ */
+ if (mm == current->mm && !asn_locked())
flush_tlb_current_page(mm, data->vma, data->addr);
else
flush_tlb_other(mm);
--
2.53.0
^ permalink raw reply related [flat|nested] 7+ messages in thread* [PATCH 3/6] alpha: fix the local TLB invalidate in flush_tlb_page()
2026-08-09 8:49 [PATCH 0/6] alpha: fix stale TLB translations breaking copy-on-write and writeback Magnus Lindholm
2026-08-09 8:49 ` [PATCH 1/6] alpha: run check_mmu_context() from finish_arch_post_lock_switch() Magnus Lindholm
2026-08-09 8:49 ` [PATCH 2/6] alpha: only use a targeted tbi() when the target mm is really current Magnus Lindholm
@ 2026-08-09 8:49 ` Magnus Lindholm
2026-08-09 8:49 ` [PATCH 4/6] alpha: only use a targeted tbi() when the target mm is really current (UP) Magnus Lindholm
` (2 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Magnus Lindholm @ 2026-08-09 8:49 UTC (permalink / raw)
To: richard.henderson, mattst88, linux-kernel, linux-alpha
Cc: glaubitz, mcree, ink, macro, Magnus Lindholm
flush_tlb_page() invalidates the calling CPU itself before asking the
others, and gates that on current->active_mm. For a non-executable vma
that means a targeted tbi(2, addr), which acts on the context currently
loaded, so as in the IPI handler it reaches nothing when only active_mm
names the mm, and nothing forces the old ASN to be retired afterwards.
Test current->mm instead. When no thread of the mm is current, clear
mm->context[cpu] so a fresh ASN is taken at the next switch. That also
covers the case where the mm is not this CPU's active_mm at all: the CPU
may still hold translations for it, and smp_call_function() does not call
back into the caller.
Reached in practice by folio_mkclean() from the writeback flusher
kworker, which has no mm of its own: about half the calls during
writeback of a shared mapping, and none at all on anonymous memory.
flush_tlb_mm() does not need the same active_mm to current->mm change,
because its active_mm path loads a new context rather than issuing a
targeted tbi(). It does have the separate caller-CPU omission when the
target mm is not active_mm; that is fixed in the following patch.
Signed-off-by: Magnus Lindholm <linmag7@gmail.com>
---
arch/alpha/kernel/smp.c | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/arch/alpha/kernel/smp.c b/arch/alpha/kernel/smp.c
index 0dfe29b59039..d167b3ba1303 100644
--- a/arch/alpha/kernel/smp.c
+++ b/arch/alpha/kernel/smp.c
@@ -696,7 +696,15 @@ flush_tlb_page(struct vm_area_struct *vma, unsigned long addr)
preempt_disable();
- if (mm == current->active_mm) {
+ /*
+ * As in ipi_flush_tlb_page(): the targeted tbi() reaches MM's
+ * translations only when a thread of MM is current, so test
+ * current->mm. Otherwise - lazily borrowing MM, or not running it
+ * at all - clear mm->context[cpu] so a fresh ASN is taken at the
+ * next switch. smp_call_function() below does not call back into
+ * this CPU, so this is the only chance to retire what it holds.
+ */
+ if (mm == current->mm) {
flush_tlb_current_page(mm, vma, addr);
if (atomic_read(&mm->mm_users) <= 1) {
int cpu, this_cpu = smp_processor_id();
@@ -709,6 +717,8 @@ flush_tlb_page(struct vm_area_struct *vma, unsigned long addr)
preempt_enable();
return;
}
+ } else {
+ flush_tlb_other(mm);
}
data.vma = vma;
--
2.53.0
^ permalink raw reply related [flat|nested] 7+ messages in thread* [PATCH 4/6] alpha: only use a targeted tbi() when the target mm is really current (UP)
2026-08-09 8:49 [PATCH 0/6] alpha: fix stale TLB translations breaking copy-on-write and writeback Magnus Lindholm
` (2 preceding siblings ...)
2026-08-09 8:49 ` [PATCH 3/6] alpha: fix the local TLB invalidate in flush_tlb_page() Magnus Lindholm
@ 2026-08-09 8:49 ` Magnus Lindholm
2026-08-09 8:49 ` [PATCH 5/6] alpha: invalidate the local context in flush_tlb_mm() Magnus Lindholm
2026-08-09 8:49 ` [PATCH 6/6] alpha: invalidate the local context in flush_icache_user_page() Magnus Lindholm
5 siblings, 0 replies; 7+ messages in thread
From: Magnus Lindholm @ 2026-08-09 8:49 UTC (permalink / raw)
To: richard.henderson, mattst88, linux-kernel, linux-alpha
Cc: glaubitz, mcree, ink, macro, Magnus Lindholm
The uniprocessor flush_tlb_page() has the same defect the previous patch
fixed for SMP:
if (mm == current->active_mm)
flush_tlb_current_page(mm, vma, addr);
else
flush_tlb_other(mm);
For a non-executable vma flush_tlb_current_page() issues tbi(2, addr),
which acts on the address space context currently loaded, so it reaches
the mm's translations only when that context belongs to it. Under lazy
TLB an idle or kernel task keeps the mm as its active_mm while a different
ASN is loaded, so the tbi() invalidates the wrong context and the stale
translation survives.
Use current->mm instead, as for SMP.
This is not theoretical on a uniprocessor. folio_mkclean() runs in the
writeback flusher kworker, which borrows the mm, and with one CPU that
kworker necessarily shares it with the thread holding the translation. A
test that writes a small MAP_SHARED file while background writeback cleans
it loses data on every round: the mapping holds one value and the file
another.
flush_tlb_mm() and flush_icache_user_page() need no equivalent change
here. Both use __load_new_mm_context(), which allocates and loads a fresh
context rather than relying on a targeted tbi() against whatever ASN
happened to be loaded.
Signed-off-by: Magnus Lindholm <linmag7@gmail.com>
---
arch/alpha/include/asm/tlbflush.h | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/arch/alpha/include/asm/tlbflush.h b/arch/alpha/include/asm/tlbflush.h
index 0c8529997f54..6593a64090f1 100644
--- a/arch/alpha/include/asm/tlbflush.h
+++ b/arch/alpha/include/asm/tlbflush.h
@@ -87,7 +87,14 @@ flush_tlb_page(struct vm_area_struct *vma, unsigned long addr)
{
struct mm_struct *mm = vma->vm_mm;
- if (mm == current->active_mm)
+ /*
+ * tbi() acts on the address space context currently loaded, so it
+ * reaches MM's translations only when a thread of MM is current.
+ * Under lazy TLB an idle or kernel task keeps MM as its active_mm
+ * with a different ASN loaded, and a targeted tbi() would then
+ * invalidate the wrong context.
+ */
+ if (mm == current->mm)
flush_tlb_current_page(mm, vma, addr);
else
flush_tlb_other(mm);
--
2.53.0
^ permalink raw reply related [flat|nested] 7+ messages in thread* [PATCH 5/6] alpha: invalidate the local context in flush_tlb_mm()
2026-08-09 8:49 [PATCH 0/6] alpha: fix stale TLB translations breaking copy-on-write and writeback Magnus Lindholm
` (3 preceding siblings ...)
2026-08-09 8:49 ` [PATCH 4/6] alpha: only use a targeted tbi() when the target mm is really current (UP) Magnus Lindholm
@ 2026-08-09 8:49 ` Magnus Lindholm
2026-08-09 8:49 ` [PATCH 6/6] alpha: invalidate the local context in flush_icache_user_page() Magnus Lindholm
5 siblings, 0 replies; 7+ messages in thread
From: Magnus Lindholm @ 2026-08-09 8:49 UTC (permalink / raw)
To: richard.henderson, mattst88, linux-kernel, linux-alpha
Cc: glaubitz, mcree, ink, macro, Magnus Lindholm
The SMP flush_tlb_mm() only touches the calling CPU when the mm is its
active_mm:
if (mm == current->active_mm) {
flush_tlb_current(mm);
...
}
smp_call_function(ipi_flush_tlb_mm, mm, 1);
If it is not, nothing happens locally at all: smp_call_function() does not
call back into the caller. mm->context[cpu] is left valid, so this CPU
may later reuse the old ASN, and any translations it still holds for MM
stay usable.
Callers reach this regularly - counting the branch gave 2934 such calls
over a fork-heavy workload and 632 while otherwise idle.
Add the missing else. The UP implementation in asm/tlbflush.h already has
exactly this shape:
if (mm == current->active_mm)
flush_tlb_current(mm);
else
flush_tlb_other(mm);
Unlike flush_tlb_page(), the active_mm test itself is valid here:
flush_tlb_current() calls __load_new_mm_context(), which allocates and
loads a fresh context rather than relying on a targeted tbi() to operate
on whatever ASN happened to be loaded beforehand.
Signed-off-by: Magnus Lindholm <linmag7@gmail.com>
---
arch/alpha/kernel/smp.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/arch/alpha/kernel/smp.c b/arch/alpha/kernel/smp.c
index d167b3ba1303..f501a91001cc 100644
--- a/arch/alpha/kernel/smp.c
+++ b/arch/alpha/kernel/smp.c
@@ -649,6 +649,13 @@ flush_tlb_mm(struct mm_struct *mm)
preempt_enable();
return;
}
+ } else {
+ /*
+ * smp_call_function() below does not call back into this
+ * CPU, so this is the only chance to retire what it holds
+ * for MM. The UP implementation already does this.
+ */
+ flush_tlb_other(mm);
}
smp_call_function(ipi_flush_tlb_mm, mm, 1);
--
2.53.0
^ permalink raw reply related [flat|nested] 7+ messages in thread* [PATCH 6/6] alpha: invalidate the local context in flush_icache_user_page()
2026-08-09 8:49 [PATCH 0/6] alpha: fix stale TLB translations breaking copy-on-write and writeback Magnus Lindholm
` (4 preceding siblings ...)
2026-08-09 8:49 ` [PATCH 5/6] alpha: invalidate the local context in flush_tlb_mm() Magnus Lindholm
@ 2026-08-09 8:49 ` Magnus Lindholm
5 siblings, 0 replies; 7+ messages in thread
From: Magnus Lindholm @ 2026-08-09 8:49 UTC (permalink / raw)
To: richard.henderson, mattst88, linux-kernel, linux-alpha
Cc: glaubitz, mcree, ink, macro, Magnus Lindholm
flush_icache_user_page() has the same caller-CPU omission that the
previous patch fixed in flush_tlb_mm():
if (mm == current->active_mm) {
__load_new_mm_context(mm);
...
}
smp_call_function(ipi_flush_icache_page, mm, 1);
When the target mm is not the calling CPU's active_mm nothing happens
locally, and smp_call_function() handles only the other CPUs, so this CPU
may later reuse the old ASN together with the translations it still holds.
This matters here in particular because the function exists for operating
on another process's mappings: the comment above it describes setting
breakpoints through ptrace, and access_remote_vm() reaches it through
copy_to_user_page(). The calling CPU is therefore often running something
other than the target mm.
As in flush_tlb_mm(), the UP implementation in asm/cacheflush.h already
has the missing case:
if (current->active_mm == mm)
__load_new_mm_context(mm);
else
mm->context[smp_processor_id()] = 0;
Signed-off-by: Magnus Lindholm <linmag7@gmail.com>
---
arch/alpha/kernel/smp.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/arch/alpha/kernel/smp.c b/arch/alpha/kernel/smp.c
index f501a91001cc..13b86f7224de 100644
--- a/arch/alpha/kernel/smp.c
+++ b/arch/alpha/kernel/smp.c
@@ -780,6 +780,13 @@ flush_icache_user_page(struct vm_area_struct *vma, struct page *page,
preempt_enable();
return;
}
+ } else {
+ /*
+ * As in flush_tlb_mm(): smp_call_function() does not call
+ * back into this CPU, and this function is used precisely
+ * when operating on another process's mappings.
+ */
+ flush_tlb_other(mm);
}
smp_call_function(ipi_flush_icache_page, mm, 1);
--
2.53.0
^ permalink raw reply related [flat|nested] 7+ messages in thread