openrisc: fix SMP tlb flush NULL pointer dereference
authorStafford Horne <shorne@gmail.com>
Wed, 3 Nov 2021 11:19:33 +0000 (20:19 +0900)
committerStafford Horne <shorne@gmail.com>
Wed, 3 Nov 2021 11:48:29 +0000 (20:48 +0900)
commit27dff9a9c247d4e38d82c2e7234914cfe8499294
tree25dc698f51b2c05aab8f0666996035994ec83878
parent210893cad279e4b33d707beebeacd81c36020da2
openrisc: fix SMP tlb flush NULL pointer dereference

Throughout the OpenRISC kernel port VMA is passed as NULL when flushing
kernel tlb entries.  Somehow this was missed when I was testing
c28b27416da9 ("openrisc: Implement proper SMP tlb flushing") and now the
SMP kernel fails to completely boot.

In OpenRISC VMA is used only to determine which cores need to have their
TLB entries flushed.

This patch updates the logic to flush tlbs on all cores when the VMA is
passed as NULL.  Also, we update places VMA is passed as NULL to use
flush_tlb_kernel_range instead.  Now, the only place VMA is passed as
NULL is in the implementation of flush_tlb_kernel_range.

Fixes: c28b27416da9 ("openrisc: Implement proper SMP tlb flushing")
Reported-by: Jan Henrik Weinstock <jan.weinstock@rwth-aachen.de>
Signed-off-by: Stafford Horne <shorne@gmail.com>
arch/openrisc/kernel/dma.c
arch/openrisc/kernel/smp.c