From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Cooper Subject: Re: [PATCH v3] xen: fix reboot/shutdown with running HVM guests Date: Thu, 5 Jun 2014 16:46:37 +0100 Message-ID: <539090DD.2040700@citrix.com> References: <1401980484-47815-1-git-send-email-roger.pau@citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail6.bemta3.messagelabs.com ([195.245.230.39]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1WsZvR-0005TL-ME for xen-devel@lists.xenproject.org; Thu, 05 Jun 2014 15:49:57 +0000 In-Reply-To: <1401980484-47815-1-git-send-email-roger.pau@citrix.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Roger Pau Monne Cc: Kevin Tian , Keir Fraser , Suravee Suthikulpanit , Eddie Dong , Jan Beulich , Aravind Gopalakrishnan , Jun Nakajima , xen-devel@lists.xenproject.org, Boris Ostrovsky List-Id: xen-devel@lists.xenproject.org On 05/06/14 16:01, Roger Pau Monne wrote: > If there's a guest using VMX/SVM when the hypervisor shuts down, it > can lead to the following crash due to VMX/SVM functions being called > after hvm_cpu_down has been called. In order to prevent that, check in > {svm/vmx}_ctxt_switch_from that the cpu virtualization extensions are > still enabled. > > I feel that this is still trying to fix the problem from the wrong end. It is incorrect to be in a context switch at the point identified in the stack trace. How about having the hvm_cpu_down functions look at current, and optionally run sync_exec_state() ? ~Andrew