powerpc/mm: Improve readability of update_mmu_cache()
authorGavin Shan <gwshan@linux.vnet.ibm.com>
Fri, 26 Feb 2016 00:26:26 +0000 (11:26 +1100)
committerMichael Ellerman <mpe@ellerman.id.au>
Wed, 11 May 2016 11:54:09 +0000 (21:54 +1000)
commit171cb719dacd0f102b39bd5ab5eea0ce11813853
treea0ad3e76e4e750485157b75a458502995e48da1d
parentdd0b52c47a2d71b7960c9a5ce7d51f17ed03d9f5
powerpc/mm: Improve readability of update_mmu_cache()

The function is used to update the MMU with software PTE. It can
be called by data access exception handler (0x300) or instruction
access exception handler (0x400). If the function is called by
0x400 handler, the local variable @access is set to _PAGE_EXEC
to indicate the software PTE should have that flag set. When the
function is called by 0x300 handler, @access is set to zero.

This improves the readability of the function by replacing if
statements with switch. No logical changes introduced.

Signed-off-by: Gavin Shan <gwshan@linux.vnet.ibm.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
arch/powerpc/mm/mem.c