Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756321AbdIHRJZ (ORCPT ); Fri, 8 Sep 2017 13:09:25 -0400 Received: from Galois.linutronix.de ([146.0.238.70]:56305 "EHLO Galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752132AbdIHRJX (ORCPT ); Fri, 8 Sep 2017 13:09:23 -0400 Date: Fri, 8 Sep 2017 19:09:18 +0200 (CEST) From: Thomas Gleixner To: Stephen Hemminger cc: LKML , Stephen Hemminger , Simon Xiao , KY Srinivasan , Haiyang Zhang , Steven Rostedt , Peter Zijlstra , Linus Torvalds , Josh Poimboeuf , "H. Peter Anvin" , Denys Vlasenko , Brian Gerst , Borislav Petkov , Andy Lutomirski Subject: Re: [PATCH] x86/idt: Unbreak MS HyperV hypercall vector install In-Reply-To: <20170908095726.35b82463@xeon-e3> Message-ID: References: <20170908095726.35b82463@xeon-e3> User-Agent: Alpine 2.20 (DEB 67 2015-01-07) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1105 Lines: 31 On Fri, 8 Sep 2017, Stephen Hemminger wrote: > On Fri, 8 Sep 2017 01:19:52 -0700 > "Thomas Gleixner" wrote: > > > The rework of the IDT setup changed the way how unused system gates are > > accounted. At the end of the gate initialization all unused gates in the > > system vector area are set to the spurios handler and marked as used for > > consistency reasons. > > > > Marking them as used breaks MS HyperV because it installs its hypercall > > vector after that point and the installation is guarded by the bit in the > > used_vectors map. So the hyperv vector stays directed to the spurious > > interrupt handler. > > > > Leave them marked as unused again and unbreak HyperV that way. > > > > Fixes: dc20b2d52653 ("x86/idt: Move interrupt gate initialization to IDT > > code") > > Reported-by: Stephen Hemminger > > Signed-off-by: Thomas Gleixner > > This fixes it, thanks. > > Tested-by: Stephen Hemminger What's the reason that the vector is not set up early in the boot process? Thanks, tglx