mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-02 17:36:43 +07:00
powerpc/mm: Use PAGE_FACTOR
PAGE_FACTOR was defined to reflect the difference between configured page size and fixed 4KB page size. Replace (PAGE_SHIFT - HW_PAGE_SHIFT) with PAGE_FACTOR. Signed-off-by: Gavin Shan <gwshan@linux.vnet.ibm.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
This commit is contained in:
parent
cd32e2dcc9
commit
d1d5304fcb
@ -514,7 +514,7 @@ htab_insert_pte:
|
||||
andis. r0,r31,_PAGE_4K_PFN@h
|
||||
srdi r5,r31,PTE_RPN_SHIFT
|
||||
bne- htab_special_pfn
|
||||
sldi r5,r5,PAGE_SHIFT-HW_PAGE_SHIFT
|
||||
sldi r5,r5,PAGE_FACTOR
|
||||
add r5,r5,r25
|
||||
htab_special_pfn:
|
||||
sldi r5,r5,HW_PAGE_SHIFT
|
||||
@ -544,7 +544,7 @@ htab_call_hpte_insert1:
|
||||
andis. r0,r31,_PAGE_4K_PFN@h
|
||||
srdi r5,r31,PTE_RPN_SHIFT
|
||||
bne- 3f
|
||||
sldi r5,r5,PAGE_SHIFT-HW_PAGE_SHIFT
|
||||
sldi r5,r5,PAGE_FACTOR
|
||||
add r5,r5,r25
|
||||
3: sldi r5,r5,HW_PAGE_SHIFT
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user