]> git.baikalelectronics.ru Git - kernel.git/commit
parisc: Fix non-access data TLB cache flush faults
authorJohn David Anglin <dave.anglin@bell.net>
Fri, 11 Mar 2022 17:22:54 +0000 (17:22 +0000)
committerHelge Deller <deller@gmx.de>
Fri, 11 Mar 2022 18:48:06 +0000 (19:48 +0100)
commitff0f7c7603ef587fe8579d784409ceac5510277d
tree0dc2ddb873e15f5af1ea81b74e992d8ef3fab8c8
parent3736f21af07c26497f15a383d04eb9f7ef73695f
parisc: Fix non-access data TLB cache flush faults

When a page is not present, we get non-access data TLB faults from
the fdc and fic instructions in flush_user_dcache_range_asm and
flush_user_icache_range_asm. When these occur, the cache line is
not invalidated and potentially we get memory corruption. The
problem was hidden by the nullification of the flush instructions.

These faults also affect performance. With pa8800/pa8900 processors,
there will be 32 faults per 4 KB page since the cache line is 128
bytes.  There will be more faults with earlier processors.

The problem is fixed by using flush_cache_pages(). It does the flush
using a tmp alias mapping.

The flush_cache_pages() call in flush_cache_range() flushed too
large a range.

V2: Remove unnecessary preempt_disable() and preempt_enable() calls.

Signed-off-by: John David Anglin <dave.anglin@bell.net>
Signed-off-by: Helge Deller <deller@gmx.de>
arch/parisc/kernel/cache.c