From: K. Y. Srinivasan Date: Sat, 27 Aug 2011 18:31:37 +0000 (-0700) Subject: Staging: hv: vmbus: Do not enable auto eoi X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=93511baa06437785758be98ee7a7149c49c8e9c5;p=mv-sheeva.git Staging: hv: vmbus: Do not enable auto eoi Linux interrupt handling code generates the eoi; don't enable auto eoi. Signed-off-by: K. Y. Srinivasan Signed-off-by: Haiyang Zhang Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/hv/hv.c b/drivers/staging/hv/hv.c index 736794ef787..06f1e158c27 100644 --- a/drivers/staging/hv/hv.c +++ b/drivers/staging/hv/hv.c @@ -369,7 +369,7 @@ void hv_synic_init(void *irqarg) shared_sint.as_uint64 = 0; shared_sint.vector = irq_vector; /* HV_SHARED_SINT_IDT_VECTOR + 0x20; */ shared_sint.masked = false; - shared_sint.auto_eoi = true; + shared_sint.auto_eoi = false; wrmsrl(HV_X64_MSR_SINT0 + VMBUS_MESSAGE_SINT, shared_sint.as_uint64);