Re: [linux-pm] [PATCH] hibernation should work ok with memoryhotplug

From: KAMEZAWA Hiroyuki
Date: Wed Nov 05 2008 - 19:15:30 EST


On Wed, 5 Nov 2008 12:08:25 +0100
"Rafael J. Wysocki" <rjw@xxxxxxx> wrote:

> On Wednesday, 5 of November 2008, KAMEZAWA Hiroyuki wrote:
> > On Tue, 04 Nov 2008 08:59:05 -0800
> > Dave Hansen <dave@xxxxxxxxxxxxxxxxxx> wrote:
> >
> > > On Tue, 2008-11-04 at 17:34 +0100, Rafael J. Wysocki wrote:
> > > > Now, I need to do one more thing, which is to check how much memory has to be
> > > > freed before creating the image. For this purpose I need to lock memory
> > > > hotplug temporarily, count pages to free and unlock it. What interface should
> > > > I use for this purpose?
> > > >
> > > > [I'll also need to lock memory hotplug temporarily during resume.]
> > >
> > > We currently don't have any big switch to disable memory hotplug, like
> > > lock_memory_hotplug() or something. :)
> > >
> > > If you are simply scanning and counting pages, I think the best thing to
> > > use would be the zone_span_seq*() seqlock stuff. Do your count inside
> > > the seqlock's while loop. That covers detecting a zone changing while
> > > it is being scanned.
> > >
> > > The other case to detect is when a new zone gets added. These are
> > > really rare. Rare enough that we actually use a stop_machine() call in
> > > build_all_zonelists() to do it. All you would have to do is detect when
> > > one of these calls gets made. I think that's a good application for a
> > > new seq_lock.
> > >
> > > I've attached an utterly untested patch that should do the trick.
> > > Yasunori and KAME should probably take a look at it since the node
> > > addition code is theirs.
> > >
> >
> > Hmm ? I think there is no real requirement for doing hibernation while
> > memory is under hotplug.
> >
> > Assume following.
> > - memory hotplug can be triggerred by
> > 1. interrupt from system.
> > 2. "probe" interface in sysfs.
> > - ONLINE/OFFLINE is only trigerred by sysfs interface.
> >
> > I believe we can't block "1", but "1" cannot be raised while hibernation.
> > (If it happens, it's mistake of the firmware.)
> >
> > "probe" interface can be triggered from userland. Then it may be worth to be
> > blocked. How about to add device_pm_lock() to following place ?
>
> This is not necessary as long as we freeze the userland before hibernation.
> Still, this is one thing to remeber that the freezing is needed for. :-)
>
> 1. seems to be problematic, though, since we rely on zones remaining
> unchanged while we're counting memory pages to free before hibernation
> and this happens before the calling ->suspend() methods of device drivers.
> Of course we can count free pages in a different way, but that will be a
> substantial modification (I think).
>
> How's the firmware supposed to be notified that hibernation is going to happen?
>

Ok, please consider "when memory hotplug happens."

In general, it happens when
1. memory is inserted to slot.
2. the firmware notifes the system to enable already inserted memory.

To trigger "1", you have to open cover of server/pc. Do you open pc while the system
starts hibernation ? for usual people, no.

To trigger "2", the user have special console to tell firmware "enable this memory".
Such firmware console or users have to know "the system works well." And, more important,
when the system is suspended, the firmware can't do hotplug because the kernel is sleeping.
So, such firmware console or operator have to know the system status.

Am I missing some ? Current linux can know PCI/USB hotplug while the system is suspended ?


Thanks,
-Kame







--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/