浏览代码

powerpc/mpic: Remove WHOAMI readback after EOI

After previous discussions regarding the subject [1][2], there's no clear
explanation or reason why the call was needed in the first place. The sensible
argument is some sort of synchronization between the CPU and the MPIC, which
hasn't been pointed out precisely and is no longer required (at least on BookE
platforms).

The benefit of this change is saving a MMIO trap per interrupt when running in a
KVM guest.

[1] https://patchwork.ozlabs.org/patch/429098/
[2] https://patchwork.ozlabs.org/patch/433557/

Signed-off-by: Bogdan Purcareata <bogdan.purcareata@freescale.com>
Signed-off-by: Scott Wood <scottwood@freescale.com>
Bogdan Purcareata 10 年之前
父节点
当前提交
56302c53d3
共有 1 个文件被更改,包括 0 次插入1 次删除
  1. 0 1
      arch/powerpc/sysdev/mpic.c

+ 0 - 1
arch/powerpc/sysdev/mpic.c

@@ -655,7 +655,6 @@ static inline struct mpic * mpic_from_irq_data(struct irq_data *d)
 static inline void mpic_eoi(struct mpic *mpic)
 static inline void mpic_eoi(struct mpic *mpic)
 {
 {
 	mpic_cpu_write(MPIC_INFO(CPU_EOI), 0);
 	mpic_cpu_write(MPIC_INFO(CPU_EOI), 0);
-	(void)mpic_cpu_read(MPIC_INFO(CPU_WHOAMI));
 }
 }
 
 
 /*
 /*