]> git.baikalelectronics.ru Git - kernel.git/commit
sparc32: fix page table traversal in srmmu_nocache_init()
authorMike Rapoport <rppt@linux.ibm.com>
Sat, 23 May 2020 19:57:18 +0000 (22:57 +0300)
committerLinus Torvalds <torvalds@linux-foundation.org>
Sat, 23 May 2020 20:59:12 +0000 (13:59 -0700)
commitd576375c4f8e48986e922d4649ba1c61c3800e80
tree68b7293e8da1f1cdee1f5fb98d44f7ff9453b1c6
parentb0e47564bf6763da80b2245ab61fde83acaa356c
sparc32: fix page table traversal in srmmu_nocache_init()

The srmmu_nocache_init() uses __nocache_fix() macro to add an offset to
page table entry to access srmmu_nocache_pool.

But since sparc32 has only three actual page table levels, pgd, p4d and
pud are essentially the same thing and pgd_offset() and p4d_offset() are
no-ops, the __nocache_fix() should be done only at PUD level.

Remove __nocache_fix() for p4d_offset() and pud_offset() and keep it
only for PUD and lower levels.

Fixes: 5f6c4ea1794a ("sparc32: use PUD rather than PGD to get PMD in srmmu_nocache_init()")
Signed-off-by: Mike Rapoport <rppt@linux.ibm.com>
Cc: David S. Miller <davem@davemloft.net>
Cc: Anatoly Pugachev <matorola@gmail.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
arch/sparc/mm/srmmu.c