]> git.baikalelectronics.ru Git - kernel.git/commit
parisc: Flush kernel data mapping in set_pte_at() when installing pte for user page
authorJohn David Anglin <dave.anglin@bell.net>
Mon, 8 Nov 2021 21:48:16 +0000 (16:48 -0500)
committerHelge Deller <deller@gmx.de>
Sat, 13 Nov 2021 21:10:56 +0000 (22:10 +0100)
commitee65bed3cc8fdaa3e06d0b7e81b207ce9df8f077
tree121428c7e59fe17646c82b4fcd3196cf83b9ed68
parentb6ef7cb2297d28f5ba12969c6589b14d44cd27d8
parisc: Flush kernel data mapping in set_pte_at() when installing pte for user page

For years, there have been random segmentation faults in userspace on
SMP PA-RISC machines.  It occurred to me that this might be a problem in
set_pte_at().  MIPS and some other architectures do cache flushes when
installing PTEs with the present bit set.

Here I have adapted the code in update_mmu_cache() to flush the kernel
mapping when the kernel flush is deferred, or when the kernel mapping
may alias with the user mapping.  This simplifies calls to
update_mmu_cache().

I also changed the barrier in set_pte() from a compiler barrier to a
full memory barrier.  I know this change is not sufficient to fix the
problem.  It might not be needed.

I have had a few days of operation with 5.14.16 to 5.15.1 and haven't
seen any random segmentation faults on rp3440 or c8000 so far.

Signed-off-by: John David Anglin <dave.anglin@bell.net>
Signed-off-by: Helge Deller <deller@gmx.de>
Cc: stable@kernel.org # 5.12+
arch/parisc/include/asm/pgtable.h
arch/parisc/kernel/cache.c