[SPARC64]: Fix _PAGE_EXEC_4U check in sun4u I-TLB miss handler.
It was using an immediate _PAGE_EXEC_4U value in an 'and' instruction to perform the test. This doesn't work because the immediate field is signed 13-bit, this the mask being tested against the PTE was 0x1000 sign-extended to 32-bits instead of just plain 0x1000. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
b00ccd0f0b
commit
679292993c
@ -11,12 +11,12 @@
|
|||||||
/* ITLB ** ICACHE line 2: TSB compare and TLB load */
|
/* ITLB ** ICACHE line 2: TSB compare and TLB load */
|
||||||
bne,pn %xcc, tsb_miss_itlb ! Miss
|
bne,pn %xcc, tsb_miss_itlb ! Miss
|
||||||
mov FAULT_CODE_ITLB, %g3
|
mov FAULT_CODE_ITLB, %g3
|
||||||
andcc %g5, _PAGE_EXEC_4U, %g0 ! Executable?
|
sethi %hi(_PAGE_EXEC_4U), %g4
|
||||||
|
andcc %g5, %g4, %g0 ! Executable?
|
||||||
be,pn %xcc, tsb_do_fault
|
be,pn %xcc, tsb_do_fault
|
||||||
nop ! Delay slot, fill me
|
nop ! Delay slot, fill me
|
||||||
stxa %g5, [%g0] ASI_ITLB_DATA_IN ! Load TLB
|
stxa %g5, [%g0] ASI_ITLB_DATA_IN ! Load TLB
|
||||||
retry ! Trap done
|
retry ! Trap done
|
||||||
nop
|
|
||||||
|
|
||||||
/* ITLB ** ICACHE line 3: */
|
/* ITLB ** ICACHE line 3: */
|
||||||
nop
|
nop
|
||||||
|
Loading…
x
Reference in New Issue
Block a user