From: "Rafael J. Wysocki" <rjw@sisk.pl>
To: david@lang.hm
Cc: Jeremy Fitzhardinge <jeremy@goop.org>,
Andrew Morton <akpm@linux-foundation.org>,
"Huang, Ying" <ying.huang@intel.com>, Pavel Machek <pavel@ucw.cz>,
nigel@nigel.suspend2.net, Jeremy Maitin-Shepard <jbms@cmu.edu>,
linux-kernel@vger.kernel.org,
linux-pm@lists.linux-foundation.org
Subject: Re: [PATCH 0/2] Kexec jump: The first step to kexec base hibernation
Date: Thu, 12 Jul 2007 14:46:13 +0200 [thread overview]
Message-ID: <200707121446.14170.rjw@sisk.pl> (raw)
In-Reply-To: <Pine.LNX.4.64.0707112319550.28090@asgard.lang.hm>
On Thursday, 12 July 2007 08:43, david@lang.hm wrote:
> On Wed, 11 Jul 2007, Jeremy Fitzhardinge wrote:
>
> > Andrew Morton wrote:
> >> On Wed, 11 Jul 2007 15:30:31 +0000
> >> "Huang, Ying" <ying.huang@intel.com> wrote:
> >>
> >> > 1. Boot a kernel A
> >> > 2. Work under kernel A
> >> > 3. Kexec another kernel B in kernel A
> >> > 4. Work under kernel B
> >> > 5. Jump from kernel B to kernel A
> >> > 6. Continue work under kernel A
> >> >
> >> > This is the first step to implement kexec based hibernation. If the
> >> > memory image of kernel A is written to or read from a permanent media
> >> > in step 4, a preliminary version of kexec based hibernation can be
> >> > implemented.
> >> >
> >> > The kernel B is run as a crashdump kernel in reserved memory
> >> > region. This is the biggest constrains of the patch. It is planed to
> >> > be eliminated in the next version. That is, instead of reserving memory
> >> > region previously, the needed memory region is backuped before kexec
> >> > and restored after jumping back.
> >> >
> >> > Another constrains of the patch is that the CONFIG_ACPI must be turned
> >> > off to make kexec jump work. Because ACPI will put devices into low
> >> > power state, the kexeced kernel can not be booted properly under
> >> > it. This constrains can be eliminated by separating the suspend method
> >> > and hibernation method of the devices as proposed earlier in the LKML.
> >> >
> >> > The kexec jump is implemented in the framework of software suspend. In
> >> > fact, the kexec based hibernation can be seen as just implementing the
> >> > image writing and reading method of software suspend with a kexeced
> >> > Linux kernel.
> >> >
> >
> > I guess I'm (still) confused by the terminology here. Do you mean that it
> > fits into suspend-to-disk as a disk-writing mechanism, or in suspend-to-ram
> > as a way of going to sleep?
>
> Suspend-to-ram involves stopping the system and shutting down devices to
> go into low-power mode, then on wakeup restarting devices and resuming
> operation
>
> so the steps would be.
>
> 1. stop userspace
>
> 2. walk the system device tree and put devices to sleep
>
> 3. go into the lowest power mode available and wait for a wakeup signal
>
> later
>
> 4. walk the system device tree and wake up devices
>
> 5. resume userspace scheduling.
Note that we are going to phase out steps 1 and 5.
> note that what devices get put to sleep could be configurable, potentially
> to the extreme of things like the OLPC (that have hardware designed for
> cheap sleeping) going into a light suspend-to-ram state between keystrokes
> if nothing else has a timer event scheduled before that.
>
> Suspend-do-disk (Hibernate) involves stopping the system, makeing a
> snapshot of ram, writing the snapshot to somewhere and powering off the
> box. on wakeup (power-on) a helper kernel boots, loads the snapshot into
> ram and jumps to the kernel in the snapshot to resume operation.
>
> as I understand the proposal the thought is to do the following
>
> 1. system kernel does suspend-to-ram to put the devices into a known safe
> state.
Not necessarily suspend-to-RAM. I'd much prefer it if devices were not put
into low power states but quiesced (ie. no DMA, no interrupts).
> 2. system kernel uses kexec to start hibernate kernel
>
> 3. hibernate kernel wakes up devices it needs as if it was doing a
> resume-from-ram
I think that the devices should be initialized from scratch in this step.
> 4. hibernate kernel copies ram image somewhere
In this step some userland may be involved (started from the "hibernate"
kernel).
> 5. hibernate kernel shuts down the box
>
> later
>
> 6. hibernate kernel boots
>
> 7. hibernate kernel copies ram image from somewhere
>
> 8. hibernate kernel does syspend-to-ram to put the devices into a known
> safe state.
Again, the devices should be quiesced rather then suspended in this step.
> 9. hibernate kernel uses kexec to start system kernel
>
> 10. system kernel wakes up devices it needs as if it was doing a
> resume-from-ram.
I think it should reconfigure devices from scratch (ie. reprobe).
> >> > Now, only the i386 architecture is supported. The patch is based on
> >> > Linux kernel 2.6.22, and has been tested on my IBM T42.
> >> >
> >>
> >> This sounds awesome. Am I correct in expecting that ultimately the
> >> existing hibernation implementation just goes away and we reuse (and hence
> >> strengthen) the existing kexec (and kdump?) infrastructure?
> >>
> >> And that we get hibernation support almost for free on all kexec (and
> >> relocatable-kernel?) capable architectures?
> >>
> >> And that all the management of hibernation and resume happens in
> >> userspace?
>
> this is the thought.
>
> >> I didn't understand the ACPI problem. Does this mean that CONFIG_ACPI
> >> must
> >> be disabled in the to-be-hibernated kernel, or in the little transient
> >> kexec kernel?
> >>
> >
> > I think the point is that if kernel A says "I'm suspending" and calls the
> > suspend method on all its devices, then kernel B finds that it has no powered
> > on devices to work with. But then couldn't it turn on the ones it wants
> > anyway? And don't you want to suspend them, to make sure they're not still
> > DMAing memory while B is trying to shuffle everything off to disk?
>
> I don't understand the ACPI problem so I can't try to clarify it.
>
> > It does sound pretty cool.
>
> re-useing existing components in new ways, making it so that particular
> problems only have to be solved once and that solution is used repeatedly.
> there's a lot to like about this approach.
>
> very cool.
Well, I'm not a big fan of it right now, but well, it looks doable in general.
Greetings,
Rafael
--
"Premature optimization is the root of all evil." - Donald Knuth
next prev parent reply other threads:[~2007-07-12 12:38 UTC|newest]
Thread overview: 125+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-07-11 15:30 Huang, Ying
2007-07-11 11:13 ` Pavel Machek
2007-07-12 16:28 ` Huang, Ying
2007-07-12 8:54 ` Pavel Machek
2007-07-13 23:18 ` Huang, Ying
2007-07-12 0:22 ` Andrew Morton
2007-07-12 5:48 ` Jeremy Fitzhardinge
2007-07-12 6:43 ` david
2007-07-12 12:46 ` Rafael J. Wysocki [this message]
2007-07-12 13:51 ` Mark Lord
2007-07-12 14:49 ` Pavel Machek
2007-07-12 15:35 ` Rafael J. Wysocki
2007-07-12 16:03 ` Mark Lord
2007-07-12 16:35 ` Mark Lord
2007-07-12 20:05 ` Jeremy Maitin-Shepard
2007-07-13 2:38 ` Mark Lord
2007-07-12 16:09 ` [linux-pm] " Alan Stern
2007-07-12 18:49 ` david
2007-07-12 18:42 ` david
2007-07-12 19:20 ` Rafael J. Wysocki
2007-07-12 19:14 ` david
2007-07-12 19:45 ` Rafael J. Wysocki
2007-07-12 17:09 ` Huang, Ying
2007-07-12 12:47 ` Rafael J. Wysocki
2007-07-12 12:38 ` Rafael J. Wysocki
2007-07-12 14:43 ` Huang, Ying
2007-07-12 7:03 ` david
2007-07-12 17:18 ` Huang, Ying
2007-07-12 10:10 ` david
2007-07-12 13:01 ` Rafael J. Wysocki
2007-07-12 13:22 ` jimmy bahuleyan
2007-07-12 19:03 ` david
2007-07-12 13:55 ` Mark Lord
2007-07-12 19:05 ` david
2007-07-12 14:06 ` Pavel Machek
2007-07-12 12:53 ` Rafael J. Wysocki
2007-07-12 18:57 ` david
2007-07-12 19:34 ` Rafael J. Wysocki
2007-07-12 19:55 ` Jeremy Maitin-Shepard
2007-07-12 20:45 ` Rafael J. Wysocki
2007-07-13 3:12 ` david
2007-07-13 9:17 ` Rafael J. Wysocki
2007-07-13 9:25 ` david
2007-07-13 11:41 ` Rafael J. Wysocki
2007-07-14 7:51 ` david
2007-07-14 8:33 ` david
2007-07-14 9:24 ` Rafael J. Wysocki
2007-07-14 20:00 ` Rafael J. Wysocki
2007-07-14 20:34 ` david
2007-07-14 21:06 ` Rafael J. Wysocki
2007-07-14 21:13 ` david
2007-07-15 10:31 ` Rafael J. Wysocki
2007-07-15 19:23 ` david
2007-07-15 22:59 ` Rafael J. Wysocki
2007-07-15 23:22 ` david
2007-07-16 12:17 ` Rafael J. Wysocki
2007-07-16 14:42 ` Huang, Ying
2007-07-16 15:40 ` Rafael J. Wysocki
2007-07-17 4:18 ` david
2007-07-17 11:46 ` Rafael J. Wysocki
2007-07-14 21:34 ` david
2007-07-15 10:39 ` Rafael J. Wysocki
2007-07-15 19:33 ` david
2007-07-15 23:11 ` Rafael J. Wysocki
2007-07-15 23:33 ` david
2007-07-13 3:06 ` david
2007-07-13 5:42 ` Hibernating To Swap Considered Harmful Joseph Fannin
2007-07-13 5:57 ` david
2007-07-13 6:20 ` Joseph Fannin
2007-07-13 6:27 ` david
2007-07-13 7:15 ` Joseph Fannin
2007-07-13 14:35 ` Jeremy Maitin-Shepard
2007-07-17 0:12 ` Joseph Fannin
2007-07-17 5:44 ` Oliver Neukum
2007-07-17 6:28 ` Joseph Fannin
2007-07-17 6:42 ` david
2007-07-17 7:26 ` Joseph Fannin
2007-07-17 7:34 ` david
2007-07-17 11:54 ` Rafael J. Wysocki
2007-07-17 11:52 ` Rafael J. Wysocki
2007-07-17 7:10 ` Oliver Neukum
2007-07-13 9:30 ` Rafael J. Wysocki
2007-07-14 0:45 ` Joseph Fannin
2007-07-14 9:48 ` Rafael J. Wysocki
2007-07-16 5:37 ` Joseph Fannin
2007-07-13 9:29 ` [PATCH 0/2] Kexec jump: The first step to kexec base hibernation Rafael J. Wysocki
2007-07-13 9:38 ` david
2007-07-13 11:59 ` Rafael J. Wysocki
2007-07-13 14:37 ` [linux-pm] " Alan Stern
2007-07-13 15:31 ` Rafael J. Wysocki
2007-07-14 7:13 ` david
2007-07-13 15:12 ` Jeremy Maitin-Shepard
2007-07-13 15:45 ` Rafael J. Wysocki
2007-07-13 15:50 ` Alan Stern
2007-07-13 16:54 ` Eric W. Biederman
2007-07-13 18:15 ` Alan Stern
2007-07-13 21:08 ` Rafael J. Wysocki
2007-07-13 20:55 ` Rafael J. Wysocki
2007-07-13 16:48 ` Jeremy Maitin-Shepard
2007-07-13 21:23 ` Rafael J. Wysocki
2007-07-14 7:12 ` david
2007-07-13 17:32 ` Huang, Ying
2007-07-13 12:01 ` Rafael J. Wysocki
2007-07-12 16:32 ` Eric W. Biederman
2007-07-12 19:09 ` david
2007-07-12 19:49 ` Eric W. Biederman
2007-07-13 23:15 ` Huang, Ying
2007-07-13 16:43 ` Eric W. Biederman
2007-07-14 5:48 ` Huang, Ying
2007-07-14 9:59 ` Rafael J. Wysocki
2007-07-14 10:55 ` Huang, Ying
2007-07-14 19:16 ` Rafael J. Wysocki
2007-07-15 9:30 ` Huang, Ying
2007-07-15 10:49 ` Rafael J. Wysocki
2007-07-24 14:00 ` Huang, Ying
2007-07-24 15:27 ` Rafael J. Wysocki
2007-07-17 8:13 ` david
2007-07-17 11:59 ` Rafael J. Wysocki
2007-07-17 12:48 ` Huang, Ying
2007-07-17 14:22 ` Rafael J. Wysocki
2007-07-18 0:25 ` david
2007-07-13 5:08 [PATCH 0/2] Kexec jump: The first step to kexec base Al Boldi
2007-07-13 15:28 ` [PATCH 0/2] Kexec jump: The first step to kexec base hibernation Al Boldi
2007-07-13 15:50 ` Rafael J. Wysocki
2007-07-14 6:07 ` Al Boldi
2007-07-13 15:28 ` Al Boldi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200707121446.14170.rjw@sisk.pl \
--to=rjw@sisk.pl \
--cc=akpm@linux-foundation.org \
--cc=david@lang.hm \
--cc=jbms@cmu.edu \
--cc=jeremy@goop.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@lists.linux-foundation.org \
--cc=nigel@nigel.suspend2.net \
--cc=pavel@ucw.cz \
--cc=ying.huang@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome