Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755990Ab1BIXXO (ORCPT ); Wed, 9 Feb 2011 18:23:14 -0500 Received: from zakopane.cs.ubc.ca ([198.162.52.68]:52468 "EHLO mail.quuxuum.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755913Ab1BIXXJ (ORCPT ); Wed, 9 Feb 2011 18:23:09 -0500 X-Greylist: delayed 369 seconds by postgrey-1.27 at vger.kernel.org; Wed, 09 Feb 2011 18:23:09 EST Date: Wed, 9 Feb 2011 15:16:59 -0800 From: Brendan Cully To: Ian Campbell Cc: Alan Stern , "Rafael J. Wysocki" , linux-pm@lists.linux-foundation.org, xen-devel@lists.xensource.com, "SUZUKI, Kazuhiro" , LKML Subject: Re: [linux-pm] [PATCH 0/2] Fix hangup after creating checkpoint on Xen. Message-ID: <20110209231659.GB249@zanzibar.kublai.com> Mail-Followup-To: Ian Campbell , Alan Stern , "Rafael J. Wysocki" , linux-pm@lists.linux-foundation.org, xen-devel@lists.xensource.com, "SUZUKI, Kazuhiro" , LKML References: <1297186554.9388.248.camel@zakaz.uk.xensource.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1297186554.9388.248.camel@zakaz.uk.xensource.com> X-Operating-System: Darwin 10.6.0 i386 User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3144 Lines: 65 On Tuesday, 08 February 2011 at 17:35, Ian Campbell wrote: > On Tue, 2011-02-08 at 11:46 -0500, Alan Stern wrote: > > On Tue, 8 Feb 2011, Ian Campbell wrote: > > > > > The problem is that currently we have: > > > > > > dpm_suspend_start(PMSG_SUSPEND); > > > > > > dpm_suspend_noirq(PMSG_SUSPEND); > > > > > > sysdev_suspend(PMSG_SUSPEND); > > > /* suspend hypercall */ > > > sysdev_resume(); > > > > > > dpm_resume_noirq(PMSG_RESUME); > > > > > > dpm_resume_end(PMSG_RESUME); > > > > > > However the suspend hypercall can return a value indicating that the > > > suspend didn't actually happen (e.g. was cancelled). This is used e.g. > > > when checkpointing guests, because in that case you want the original > > > guest to continue. When the suspend didn't happen the drivers need to > > > recover differently from if it did. > > > > That is odd, and it is quite different from the intended design of the > > PM core. Drivers are supposed to put their devices into a known > > suspended state; then afterwards they put the devices back into an > > operational state. What happens while the devices are in the suspended > > state isn't supposed to matter -- the system transition can fail, but > > devices get treated exactly the same way as if it succeeded. > > > > Why do your drivers need to recover differently based on the success of > > the hypercall? > > checkpointing isn't really my area but AIUI you don't want to do a full > device teardown and reconnect like you would with a proper suspend > because of the time that takes which prevents you from doing continuous > rolling checkpoints at granularity which people want to implement > various disaster recovery schemes. > > Hopefully one of the Xen checkpointing folks will chime in and explain > why this is not possible to achieve at the individual driver level (or, > even better, with a patch which does it that way ;-)). As Ian says, Xen has suspend_cancel because while the normal full suspend/resume path works, it is much slower, and the work done during resume is redundant. I don't remember the numbers offhand, but when we added suspend_cancel I think we could do full suspend/resume in under 100us, which was maybe a couple of orders of magnitude faster than full resume (largely due to slow xenstore handshaking on resume, IIRC). It made a big difference for our Remus HA project, which was checkpointing tens of times per second. I'd like to keep the fast resume option, and expect that it can be contained entirely in Xen-specific code. I'll try to get someone to look into it here. I think fast resume is somewhat orthogonal to the problem of hanging on resume, which just sounds like a xen-specific bug in the slow path. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/