提交 97a011e6 编写于 作者: C Christophe Leroy 提交者: Michael Ellerman

powerpc/mm: Remove a redundant test in do_page_fault()

The result of (trap == 0x400) is already in is_exec.
Signed-off-by: NChristophe Leroy <christophe.leroy@c-s.fr>
Signed-off-by: NMichael Ellerman <mpe@ellerman.id.au>
上级 e8de85ca
...@@ -216,7 +216,7 @@ int do_page_fault(struct pt_regs *regs, unsigned long address, ...@@ -216,7 +216,7 @@ int do_page_fault(struct pt_regs *regs, unsigned long address,
* bits we are interested in. But there are some bits which * bits we are interested in. But there are some bits which
* indicate errors in DSISR but can validly be set in SRR1. * indicate errors in DSISR but can validly be set in SRR1.
*/ */
if (trap == 0x400) if (is_exec)
error_code &= 0x48200000; error_code &= 0x48200000;
else else
is_write = error_code & DSISR_ISSTORE; is_write = error_code & DSISR_ISSTORE;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册