From: Nicholas Piggin <npiggin@gmail.com> Date: 2020-09-14 04:52:45
This is an attempt to fix a few different related issues around
switching mm, TLB flushing, and lazy tlb mm handling.
This will require all architectures to eventually move to disabling
irqs over activate_mm, but it's possible we could add another arch
call after irqs are re-enabled for those few which can't do their
entire activation with irqs disabled.
Testing so far indicates this has fixed a mm refcounting bug that
powerpc was running into (via distro report and backport). I haven't
had any real feedback on this series outside powerpc (and it doesn't
really affect other archs), so I propose patches 1,2,4 go via the
powerpc tree.
There is no dependency between them and patch 3, I put it there only
because it follows the history of the code (powerpc code was written
using the sparc64 logic), but I guess they have to go via different arch
trees. Dave, I'll leave patch 3 with you.
Thanks,
Nick
Since v1:
- Updates from Michael Ellerman's review comments.
Nicholas Piggin (4):
mm: fix exec activate_mm vs TLB shootdown and lazy tlb switching race
powerpc: select ARCH_WANT_IRQS_OFF_ACTIVATE_MM
sparc64: remove mm_cpumask clearing to fix kthread_use_mm race
powerpc/64s/radix: Fix mm_cpumask trimming race vs kthread_use_mm
arch/Kconfig | 7 +++
arch/powerpc/Kconfig | 1 +
arch/powerpc/include/asm/mmu_context.h | 2 +-
arch/powerpc/include/asm/tlb.h | 13 ------
arch/powerpc/mm/book3s64/radix_tlb.c | 23 ++++++---
arch/sparc/kernel/smp_64.c | 65 ++++++--------------------
fs/exec.c | 17 ++++++-
7 files changed, 54 insertions(+), 74 deletions(-)
--
2.23.0
From: Nicholas Piggin <npiggin@gmail.com> Date: 2020-09-14 04:53:04
Reading and modifying current->mm and current->active_mm and switching
mm should be done with irqs off, to prevent races seeing an intermediate
state.
This is similar to commit 38cf307c1f20 ("mm: fix kthread_use_mm() vs TLB
invalidate"). At exec-time when the new mm is activated, the old one
should usually be single-threaded and no longer used, unless something
else is holding an mm_users reference (which may be possible).
Absent other mm_users, there is also a race with preemption and lazy tlb
switching. Consider the kernel_execve case where the current thread is
using a lazy tlb active mm:
call_usermodehelper()
kernel_execve()
old_mm = current->mm;
active_mm = current->active_mm;
*** preempt *** --------------------> schedule()
prev->active_mm = NULL;
mmdrop(prev active_mm);
...
<-------------------- schedule()
current->mm = mm;
current->active_mm = mm;
if (!old_mm)
mmdrop(active_mm);
If we switch back to the kernel thread from a different mm, there is a
double free of the old active_mm, and a missing free of the new one.
Closing this race only requires interrupts to be disabled while ->mm
and ->active_mm are being switched, but the TLB problem requires also
holding interrupts off over activate_mm. Unfortunately not all archs
can do that yet, e.g., arm defers the switch if irqs are disabled and
expects finish_arch_post_lock_switch() to be called to complete the
flush; um takes a blocking lock in activate_mm().
So as a first step, disable interrupts across the mm/active_mm updates
to close the lazy tlb preempt race, and provide an arch option to
extend that to activate_mm which allows architectures doing IPI based
TLB shootdowns to close the second race.
This is a bit ugly, but in the interest of fixing the bug and backporting
before all architectures are converted this is a compromise.
Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
---
arch/Kconfig | 7 +++++++
fs/exec.c | 17 +++++++++++++++--
2 files changed, 22 insertions(+), 2 deletions(-)
From: Nicholas Piggin <npiggin@gmail.com> Date: 2020-09-14 04:53:08
powerpc uses IPIs in some situations to switch a kernel thread away
from a lazy tlb mm, which is subject to the TLB flushing race
described in the changelog introducing ARCH_WANT_IRQS_OFF_ACTIVATE_MM.
Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
---
arch/powerpc/Kconfig | 1 +
arch/powerpc/include/asm/mmu_context.h | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
From: Nicholas Piggin <npiggin@gmail.com> Date: 2020-09-14 04:53:24
Commit 0cef77c7798a7 ("powerpc/64s/radix: flush remote CPUs out of
single-threaded mm_cpumask") added a mechanism to trim the mm_cpumask of
a process under certain conditions. One of the assumptions is that
mm_users would not be incremented via a reference outside the process
context with mmget_not_zero() then go on to kthread_use_mm() via that
reference.
That invariant was broken by io_uring code (see previous sparc64 fix),
but I'll point Fixes: to the original powerpc commit because we are
changing that assumption going forward, so this will make backports
match up.
Fix this by no longer relying on that assumption, but by having each CPU
check the mm is not being used, and clearing their own bit from the mask
only if it hasn't been switched-to by the time the IPI is processed.
This relies on commit 38cf307c1f20 ("mm: fix kthread_use_mm() vs TLB
invalidate") and ARCH_WANT_IRQS_OFF_ACTIVATE_MM to disable irqs over mm
switch sequences.
Reviewed-by: Michael Ellerman <mpe@ellerman.id.au>
Depends-on: 38cf307c1f20 ("mm: fix kthread_use_mm() vs TLB invalidate")
Fixes: 0cef77c7798a7 ("powerpc/64s/radix: flush remote CPUs out of single-threaded mm_cpumask")
Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
---
arch/powerpc/include/asm/tlb.h | 13 -------------
arch/powerpc/mm/book3s64/radix_tlb.c | 23 ++++++++++++++++-------
2 files changed, 16 insertions(+), 20 deletions(-)
@@ -645,19 +645,29 @@ static void do_exit_flush_lazy_tlb(void *arg)structmm_struct*mm=arg;unsignedlongpid=mm->context.id;+/*+*Akthreadcouldhavedoneammget_not_zero()aftertheflushingCPU+*checkedmm_is_singlethreaded,andbeintheprocessof+*kthread_use_mmwheninterruptedhere.Inthatcase,current->mmwill+*besettomm,becausekthread_use_mm()setting->mmandswitchingto+*themmisdonewithinterruptsoff.+*/if(current->mm==mm)-return;/* Local CPU */+gotoout_flush;if(current->active_mm==mm){-/*-*Mustbeakernelthreadbecausesenderissingle-threaded.-*/-BUG_ON(current->mm);+WARN_ON_ONCE(current->mm!=NULL);+/* Is a kernel thread and is using mm as the lazy tlb */mmgrab(&init_mm);-switch_mm(mm,&init_mm,current);current->active_mm=&init_mm;+switch_mm_irqs_off(mm,&init_mm,current);mmdrop(mm);}++atomic_dec(&mm->context.active_cpus);+cpumask_clear_cpu(smp_processor_id(),mm_cpumask(mm));++out_flush:_tlbiel_pid(pid,RIC_FLUSH_ALL);}
From: Nicholas Piggin <npiggin@gmail.com> Date: 2020-09-14 04:53:24
The de facto (and apparently uncommented) standard for using an mm had,
thanks to this code in sparc if nothing else, been that you must have a
reference on mm_users *and that reference must have been obtained with
mmget()*, i.e., from a thread with a reference to mm_users that had used
the mm.
The introduction of mmget_not_zero() in commit d2005e3f41d4
("userfaultfd: don't pin the user memory in userfaultfd_file_create()")
allowed mm_count holders to aoperate on user mappings asynchronously
from the actual threads using the mm, but they were not to load those
mappings into their TLB (i.e., walking vmas and page tables is okay,
kthread_use_mm() is not).
io_uring 2b188cc1bb857 ("Add io_uring IO interface") added code which
does a kthread_use_mm() from a mmget_not_zero() refcount.
The problem with this is code which previously assumed mm == current->mm
and mm->mm_users == 1 implies the mm will remain single-threaded at
least until this thread creates another mm_users reference, has now
broken.
arch/sparc/kernel/smp_64.c:
if (atomic_read(&mm->mm_users) == 1) {
cpumask_copy(mm_cpumask(mm), cpumask_of(cpu));
goto local_flush_and_out;
}
vs fs/io_uring.c
if (unlikely(!(ctx->flags & IORING_SETUP_SQPOLL) ||
!mmget_not_zero(ctx->sqo_mm)))
return -EFAULT;
kthread_use_mm(ctx->sqo_mm);
mmget_not_zero() could come in right after the mm_users == 1 test, then
kthread_use_mm() which sets its CPU in the mm_cpumask. That update could
be lost if cpumask_copy() occurs afterward.
I propose we fix this by allowing mmget_not_zero() to be a first-class
reference, and not have this obscure undocumented and unchecked
restriction.
The basic fix for sparc64 is to remove its mm_cpumask clearing code. The
optimisation could be effectively restored by sending IPIs to mm_cpumask
members and having them remove themselves from mm_cpumask. This is more
tricky so I leave it as an exercise for someone with a sparc64 SMP.
powerpc has a (currently similarly broken) example.
Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
---
arch/sparc/kernel/smp_64.c | 65 ++++++++------------------------------
1 file changed, 14 insertions(+), 51 deletions(-)
@@ -1039,38 +1039,9 @@ void smp_fetch_global_pmu(void)*areflush_tlb_*()routines,andtheserunafterflush_cache_*()*whichperformstheflushw.*-*TheSMPTLBcoherencyschemeweuseworksasfollows:-*-*1)mm->cpu_vm_maskisabitmaskofwhichcpusanaddress-*spacehas(potentially)executedon,thisistheheuristic-*weusetoavoiddoingcrosscalls.-*-*Also,forflushingfromkswapdandalsoforclones,we-*usecpu_vm_maskasthelistofcpustomakeruntheTLB.-*-*2)TLBcontextnumbersaresharedgloballyacrossallprocessors-*inthesystem,thisallowsustoplayseveralgamestoavoid-*crosscalls.-*-*Oneinvariantisthatwhenacpuswitchestoaprocess,and-*thatprocessestsk->active_mm->cpu_vm_maskdoesnothavethe-*currentcpu'sbitset,thattlbcontextisflushedlocally.-*-*Iftheaddressspaceisnon-shared(ie.mm->count==1)weavoid-*crosscallswhenwewanttoflushthecurrentlyrunningprocess's-*tlbstate.Thisisdonebyclearingallcpubitsexceptthecurrent-*processor'sincurrent->mm->cpu_vm_maskandperformingthe-*flushlocallyonly.Thiswillforceanysubsequentcpuswhichrun-*thistasktoflushthecontextfromthelocaltlbiftheprocess-*migratestoanothercpu(again).-*-*3)Forsharedaddressspaces(threads)andswappingwebitethe-*bulletformostcasesandperformthecrosscall(butonlyto-*thecpuslistedincpu_vm_mask).-*-*Theperformancegainfrom"optimizing"awaythecrosscallforthreadsis-*questionable(intheorythebigwinforthreadsisthemassivesharingof-*addressspacestateacrossprocessors).+*mm->cpu_vm_maskisabitmaskofwhichcpusanaddress+*spacehas(potentially)executedon,thisistheheuristic+*weusetolimitcrosscalls.*//* This currently is only used by the hugetlb arch pre-fault
From: Nicholas Piggin <npiggin@gmail.com> Date: 2020-09-14 07:01:01
Excerpts from Nicholas Piggin's message of September 14, 2020 2:52 pm:
[...]
The basic fix for sparc64 is to remove its mm_cpumask clearing code. The
optimisation could be effectively restored by sending IPIs to mm_cpumask
members and having them remove themselves from mm_cpumask. This is more
tricky so I leave it as an exercise for someone with a sparc64 SMP.
powerpc has a (currently similarly broken) example.
So this compiles and boots on qemu, but qemu does not support any
sparc64 machines with SMP. Attempting some simple hacks doesn't get
me far because openbios isn't populating an SMP device tree, which
blows up everywhere.
The patch is _relatively_ simple, hopefully it shouldn't explode, so
it's probably ready for testing on real SMP hardware, if someone has
a few cycles.
Thanks,
Nick
@@ -1039,38 +1039,9 @@ void smp_fetch_global_pmu(void)*areflush_tlb_*()routines,andtheserunafterflush_cache_*()*whichperformstheflushw.*-*TheSMPTLBcoherencyschemeweuseworksasfollows:-*-*1)mm->cpu_vm_maskisabitmaskofwhichcpusanaddress-*spacehas(potentially)executedon,thisistheheuristic-*weusetoavoiddoingcrosscalls.-*-*Also,forflushingfromkswapdandalsoforclones,we-*usecpu_vm_maskasthelistofcpustomakeruntheTLB.-*-*2)TLBcontextnumbersaresharedgloballyacrossallprocessors-*inthesystem,thisallowsustoplayseveralgamestoavoid-*crosscalls.-*-*Oneinvariantisthatwhenacpuswitchestoaprocess,and-*thatprocessestsk->active_mm->cpu_vm_maskdoesnothavethe-*currentcpu'sbitset,thattlbcontextisflushedlocally.-*-*Iftheaddressspaceisnon-shared(ie.mm->count==1)weavoid-*crosscallswhenwewanttoflushthecurrentlyrunningprocess's-*tlbstate.Thisisdonebyclearingallcpubitsexceptthecurrent-*processor'sincurrent->mm->cpu_vm_maskandperformingthe-*flushlocallyonly.Thiswillforceanysubsequentcpuswhichrun-*thistasktoflushthecontextfromthelocaltlbiftheprocess-*migratestoanothercpu(again).-*-*3)Forsharedaddressspaces(threads)andswappingwebitethe-*bulletformostcasesandperformthecrosscall(butonlyto-*thecpuslistedincpu_vm_mask).-*-*Theperformancegainfrom"optimizing"awaythecrosscallforthreadsis-*questionable(intheorythebigwinforthreadsisthemassivesharingof-*addressspacestateacrossprocessors).+*mm->cpu_vm_maskisabitmaskofwhichcpusanaddress+*spacehas(potentially)executedon,thisistheheuristic+*weusetolimitcrosscalls.*//* This currently is only used by the hugetlb arch pre-fault
On Mon, Sep 14, 2020 at 10:00 AM Nicholas Piggin [off-list ref] wrote:
Excerpts from Nicholas Piggin's message of September 14, 2020 2:52 pm:
[...]
quoted
The basic fix for sparc64 is to remove its mm_cpumask clearing code. The
optimisation could be effectively restored by sending IPIs to mm_cpumask
members and having them remove themselves from mm_cpumask. This is more
tricky so I leave it as an exercise for someone with a sparc64 SMP.
powerpc has a (currently similarly broken) example.
So this compiles and boots on qemu, but qemu does not support any
sparc64 machines with SMP. Attempting some simple hacks doesn't get
me far because openbios isn't populating an SMP device tree, which
blows up everywhere.
The patch is _relatively_ simple, hopefully it shouldn't explode, so
it's probably ready for testing on real SMP hardware, if someone has
a few cycles.
Nick,
applied this patch to over 'v5.9-rc5' tag , used my test VM (ldom)
with 32 vcpus.
Machine boot, stress-ng test ( run as
"stress-ng --cpu 8 --io 8 --vm 8 --vm-bytes 2G --fork 8 --timeout 15m" )
finishes without errors.
On Mon, Sep 14, 2020 at 02:52:16PM +1000, Nicholas Piggin wrote:
Reading and modifying current->mm and current->active_mm and switching
mm should be done with irqs off, to prevent races seeing an intermediate
state.
This is similar to commit 38cf307c1f20 ("mm: fix kthread_use_mm() vs TLB
invalidate"). At exec-time when the new mm is activated, the old one
should usually be single-threaded and no longer used, unless something
else is holding an mm_users reference (which may be possible).
Absent other mm_users, there is also a race with preemption and lazy tlb
switching. Consider the kernel_execve case where the current thread is
using a lazy tlb active mm:
call_usermodehelper()
kernel_execve()
old_mm = current->mm;
active_mm = current->active_mm;
*** preempt *** --------------------> schedule()
prev->active_mm = NULL;
mmdrop(prev active_mm);
...
<-------------------- schedule()
current->mm = mm;
current->active_mm = mm;
if (!old_mm)
mmdrop(active_mm);
If we switch back to the kernel thread from a different mm, there is a
double free of the old active_mm, and a missing free of the new one.
Closing this race only requires interrupts to be disabled while ->mm
and ->active_mm are being switched, but the TLB problem requires also
holding interrupts off over activate_mm. Unfortunately not all archs
can do that yet, e.g., arm defers the switch if irqs are disabled and
expects finish_arch_post_lock_switch() to be called to complete the
flush; um takes a blocking lock in activate_mm().
So as a first step, disable interrupts across the mm/active_mm updates
to close the lazy tlb preempt race, and provide an arch option to
extend that to activate_mm which allows architectures doing IPI based
TLB shootdowns to close the second race.
This is a bit ugly, but in the interest of fixing the bug and backporting
before all architectures are converted this is a compromise.
Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org>
I'm thinking we want this selected on x86 as well. Andy?
The basic fix for sparc64 is to remove its mm_cpumask clearing code. The
optimisation could be effectively restored by sending IPIs to mm_cpumask
members and having them remove themselves from mm_cpumask. This is more
tricky so I leave it as an exercise for someone with a sparc64 SMP.
powerpc has a (currently similarly broken) example.
Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
Sad to see this optimization go away, but what can I do:
Acked-by: David S. Miller <davem@davemloft.net>
From: Nicholas Piggin <npiggin@gmail.com> Date: 2020-09-15 02:48:13
Excerpts from peterz@infradead.org's message of September 14, 2020 8:56 pm:
On Mon, Sep 14, 2020 at 02:52:16PM +1000, Nicholas Piggin wrote:
quoted
Reading and modifying current->mm and current->active_mm and switching
mm should be done with irqs off, to prevent races seeing an intermediate
state.
This is similar to commit 38cf307c1f20 ("mm: fix kthread_use_mm() vs TLB
invalidate"). At exec-time when the new mm is activated, the old one
should usually be single-threaded and no longer used, unless something
else is holding an mm_users reference (which may be possible).
Absent other mm_users, there is also a race with preemption and lazy tlb
switching. Consider the kernel_execve case where the current thread is
using a lazy tlb active mm:
call_usermodehelper()
kernel_execve()
old_mm = current->mm;
active_mm = current->active_mm;
*** preempt *** --------------------> schedule()
prev->active_mm = NULL;
mmdrop(prev active_mm);
...
<-------------------- schedule()
current->mm = mm;
current->active_mm = mm;
if (!old_mm)
mmdrop(active_mm);
If we switch back to the kernel thread from a different mm, there is a
double free of the old active_mm, and a missing free of the new one.
Closing this race only requires interrupts to be disabled while ->mm
and ->active_mm are being switched, but the TLB problem requires also
holding interrupts off over activate_mm. Unfortunately not all archs
can do that yet, e.g., arm defers the switch if irqs are disabled and
expects finish_arch_post_lock_switch() to be called to complete the
flush; um takes a blocking lock in activate_mm().
So as a first step, disable interrupts across the mm/active_mm updates
to close the lazy tlb preempt race, and provide an arch option to
extend that to activate_mm which allows architectures doing IPI based
TLB shootdowns to close the second race.
This is a bit ugly, but in the interest of fixing the bug and backporting
before all architectures are converted this is a compromise.
Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org>
I'm thinking we want this selected on x86 as well. Andy?
Thanks for the ack. The plan was to take it through the powerpc tree,
but if you'd want x86 to select it, maybe a topic branch? Although
Michael will be away during the next merge window so I don't want to
get too fancy. Would you mind doing it in a follow up merge after
powerpc, being that it's (I think) a small change?
I do think all archs should be selecting this, and we want to remove
the divergent code paths from here as soon as possible. I was planning
to send patches for the N+1 window at least for all the easy archs.
But the sooner the better really, we obviously want to share code
coverage with x86 :)
Thanks,
Nick
From: Nicholas Piggin <npiggin@gmail.com> Date: 2020-09-15 02:49:29
Excerpts from Anatoly Pugachev's message of September 14, 2020 8:23 pm:
On Mon, Sep 14, 2020 at 10:00 AM Nicholas Piggin [off-list ref] wrote:
quoted
Excerpts from Nicholas Piggin's message of September 14, 2020 2:52 pm:
[...]
quoted
The basic fix for sparc64 is to remove its mm_cpumask clearing code. The
optimisation could be effectively restored by sending IPIs to mm_cpumask
members and having them remove themselves from mm_cpumask. This is more
tricky so I leave it as an exercise for someone with a sparc64 SMP.
powerpc has a (currently similarly broken) example.
So this compiles and boots on qemu, but qemu does not support any
sparc64 machines with SMP. Attempting some simple hacks doesn't get
me far because openbios isn't populating an SMP device tree, which
blows up everywhere.
The patch is _relatively_ simple, hopefully it shouldn't explode, so
it's probably ready for testing on real SMP hardware, if someone has
a few cycles.
Nick,
applied this patch to over 'v5.9-rc5' tag , used my test VM (ldom)
with 32 vcpus.
Machine boot, stress-ng test ( run as
"stress-ng --cpu 8 --io 8 --vm 8 --vm-bytes 2G --fork 8 --timeout 15m" )
finishes without errors.
The basic fix for sparc64 is to remove its mm_cpumask clearing code. The
optimisation could be effectively restored by sending IPIs to mm_cpumask
members and having them remove themselves from mm_cpumask. This is more
tricky so I leave it as an exercise for someone with a sparc64 SMP.
powerpc has a (currently similarly broken) example.
Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
Sad to see this optimization go away, but what can I do:
Acked-by: David S. Miller <davem@davemloft.net>
Thanks Dave, any objection if we merge this via the powerpc tree
to keep the commits together?
Thanks,
Nick
The basic fix for sparc64 is to remove its mm_cpumask clearing code. The
optimisation could be effectively restored by sending IPIs to mm_cpumask
members and having them remove themselves from mm_cpumask. This is more
tricky so I leave it as an exercise for someone with a sparc64 SMP.
powerpc has a (currently similarly broken) example.
Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
Sad to see this optimization go away, but what can I do:
Acked-by: David S. Miller <davem@davemloft.net>
Thanks Dave, any objection if we merge this via the powerpc tree
to keep the commits together?
From: Michael Ellerman <mpe@ellerman.id.au> Date: 2020-09-16 00:52:07
Nicholas Piggin [off-list ref] writes:
Excerpts from peterz@infradead.org's message of September 14, 2020 8:56 pm:
quoted
On Mon, Sep 14, 2020 at 02:52:16PM +1000, Nicholas Piggin wrote:
quoted
Reading and modifying current->mm and current->active_mm and switching
mm should be done with irqs off, to prevent races seeing an intermediate
state.
...
quoted
quoted
Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org>
I'm thinking we want this selected on x86 as well. Andy?
Thanks for the ack. The plan was to take it through the powerpc tree,
but if you'd want x86 to select it, maybe a topic branch? Although
Michael will be away during the next merge window so I don't want to
get too fancy. Would you mind doing it in a follow up merge after
powerpc, being that it's (I think) a small change?
Or get akpm to take the series, including the x86 change.
cheers
From: Michael Ellerman <mpe@ellerman.id.au> Date: 2020-09-18 12:18:52
Nicholas Piggin [off-list ref] writes:
Excerpts from peterz@infradead.org's message of September 14, 2020 8:56 pm:
quoted
On Mon, Sep 14, 2020 at 02:52:16PM +1000, Nicholas Piggin wrote:
quoted
Reading and modifying current->mm and current->active_mm and switching
mm should be done with irqs off, to prevent races seeing an intermediate
state.
...
quoted
quoted
This is a bit ugly, but in the interest of fixing the bug and backporting
before all architectures are converted this is a compromise.
Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org>
I'm thinking we want this selected on x86 as well. Andy?
Thanks for the ack. The plan was to take it through the powerpc tree,
but if you'd want x86 to select it, maybe a topic branch?
From: Michael Ellerman <hidden> Date: 2020-09-24 12:28:16
On Mon, 14 Sep 2020 14:52:15 +1000, Nicholas Piggin wrote:
This is an attempt to fix a few different related issues around
switching mm, TLB flushing, and lazy tlb mm handling.
This will require all architectures to eventually move to disabling
irqs over activate_mm, but it's possible we could add another arch
call after irqs are re-enabled for those few which can't do their
entire activation with irqs disabled.
[...]