提交 cf39cc3b 编写于 作者: K Kyle McMartin 提交者: Linus Torvalds

[PARISC] fix signal trampoline cache flushing

The signal trampolines were accidently flushing the kernel I$ instead of
the users.  Fix that up, and also add a missing user D$ flush while
we're at it.
Signed-off-by: NKyle McMartin <kyle@mcmartin.ca>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 093a07e2
...@@ -534,7 +534,8 @@ insert_restart_trampoline(struct pt_regs *regs) ...@@ -534,7 +534,8 @@ insert_restart_trampoline(struct pt_regs *regs)
* Flushing one cacheline is cheap. * Flushing one cacheline is cheap.
* "sync" on bigger (> 4 way) boxes is not. * "sync" on bigger (> 4 way) boxes is not.
*/ */
flush_icache_range(regs->gr[30], regs->gr[30] + 4); flush_user_dcache_range(regs->gr[30], regs->gr[30] + 4);
flush_user_icache_range(regs->gr[30], regs->gr[30] + 4);
regs->gr[31] = regs->gr[30] + 8; regs->gr[31] = regs->gr[30] + 8;
/* Preserve original r28. */ /* Preserve original r28. */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册